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


    我们的应用中,常常有一些统一的组件,这时候应该用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>
  • 相关阅读:
    我的第二个裸板程序之链接地址与存储地址
    ARM你必须知道的事儿——为啥“PC = PC + 8”?
    typedef你真的理解么?
    centos使用--vsftpd配置
    centos使用--zsh
    laravel5.2总结--序列化
    laravel5.2总结--csrf保护
    laravel5.2总结--任务调度
    laravel5.2总结--本地化以及常量的使用
    laravel5.2总结--文件上传
  • 原文地址:https://www.cnblogs.com/baron89/p/4252731.html
Copyright © 2020-2023  润新知