zoukankan      html  css  js  c++  java
  • 减少XML文件数

          在android开发中,做出漂亮的ui的应用,往往有数量庞大的xml文件。比如,我们要给一个Button加上一个selector,如果背景不是图片,就得写三个xml文件,分别是:
    edit_focused.xml

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android" >
    
        <corners android:radius="3dip" />
        <gradient
            android:angle="90"
            android:endColor="#ffffff"
            android:startColor="#000000"
            android:type="linear" />
    </shape>

    edit_normal.xml

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android" >
    
        <corners android:radius="5dip" />
        <gradient
            android:angle="0"
            android:endColor="#000000"
            android:startColor="#ffffff"
            android:type="linear" />
    </shape>

    selector_edit.xml

    <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android">
    
        <item android:drawable="@drawable/edit_focus" android:state_pressed="true"></item>
        <item android:drawable="@drawable/edit_normal"></item>
    </selector>

          一个按钮的selector就得三个xml,这样算来,xml文件的数量想少都太难了,其实我们可以把这三个文件合并成一个,写到一起,这样就能很大程序上减少让人眼花缭乱xml文件数。如下:
    selector_edit.xml

    <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android">
    
        <item android:state_pressed="true">
            <shape>
                <corners android:radius="3dip" />
                <gradient android:angle="90"
                          android:endColor="#ffffff"
                          android:startColor="#000000"
                          android:type="linear" />
            </shape>
        </item>
        <item>
            <shape>
                <corners android:radius="5dip" />
    
                <gradient android:angle="0"
                          android:endColor="#000000" 
                          android:startColor="#ffffff" 
                          android:type="linear" />
            </shape>
        </item>
    </selector>

          使用的时候和上面完全一样。但是xml文件的数量减少很多。

    <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:background="@drawable/selector_anotate_icon"
            android:text="@string/btn_text" />
  • 相关阅读:
    Python使用QRCode模块生成二维码
    C++ STL中允许重复key的multimap
    C++ STL中Map的按Value排序
    C++ STL中Map的按Key排序
    C++ String和其他类型互换
    android studio
    加快android studio 编译速度(已更新至Android Studio 3.3.1)
    解决Installation failed with message Failed to finalize session : INSTALL_FAILED_INVALID_APK的问题
    Android 自定义Dialog 去除阴影
    FFmpeg(14)-使用NDK、C++完成EGL,display, surface, context的配置和初始化
  • 原文地址:https://www.cnblogs.com/magics/p/4187100.html
Copyright © 2011-2022 走看看