码迷,mamicode.com
首页 > 其他好文 > 详细

统一样式的View应该用style修饰

时间:2015-01-27 14:44:23      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

我们的应用中,常常有一些统一的组件,这时候应该用style来修饰。这样的话,修改起来也方便,代码也更简洁

比如,下面的代码,没有用style修饰

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView

        android:textColor="@color/white"
        android:layout_height="36dp"
        android:layout_width="match_parent"
        android:gravity="center_vertical" />
    <TextView 
        android:id="@+id/tv_1"        
        android:textColor="@color/white"
        android:layout_height="36dp"
        android:layout_width="match_parent"
        android:gravity="center_vertical"
        />
    <TextView
        android:id="@+id/tv_3"        
        android:textColor="@color/white"
        android:layout_height="36dp"
        android:layout_width="match_parent"
        android:gravity="center_vertical" />
    <TextView
        android:id="@+id/tv_2"
       android:textColor="@color/white"
        android:layout_height="36dp"
        android:layout_width="match_parent"
        android:gravity="center_vertical" />

</LinearLayout>

 

下面的代码使用了style,更加简洁,也好维护

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/tv_0"
        style="@style/text_style" />
    <TextView 
        android:id="@+id/tv_1"        
        style="@style/text_style"
        />
    <TextView
        android:id="@+id/tv_2"        
        style="@style/text_style"/>
    <TextView
        android:id="@+id/tv_3"
        style="@style/text_style" />
</LinearLayout>

<!--styles.xml-->
<style name="text_style">
        <item name="android:textColor">@color/white</item>
        <item name="android:layout_height">36dp</item>
        <item name="android:layout_width">match_parent</item>
        <item name="android:gravity">center_vertical</item>
</style>

统一样式的View应该用style修饰

标签:

原文地址:http://www.cnblogs.com/baron89/p/4252731.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!