include标签布局以及自定义标题

在Android的性能优化是,可以使用抽象布局标签(include,ViewStub,merge),去除不必要的嵌套和View节点,减少不必要的inflate以及其他Layout。

include标签常用于将布局中的公共部分提取出来供其他layout公用,以实现布局模块化,这在布局编写方便提供了便利。

示例代码:

activity_main.xml

android:layout_width="match_parent"

android:layout_height="0dp"

android:layout_weight="1"/>

foot.xml

android:layout_width="match_parent"

android:layotu_height="match_parent">

android:id="!id/buton"

android:layout_width="match_parent"

android:layout_height="40dp"

android:layout_above="@+id/text"

android:text="Button"/>

android:id="@id/text"

android:layout_width="match_parent"

android:layout_height="40dp"

android:layout_alignParentButtom="true"

android:text="@string/app_name"/>

标签唯一需要的属性是layout属性,指定的需要包含的布局文件。可以定义android:id和android:layout_*属性来覆盖被引入布局根节点的对应属性值


merge标签可用于两种典型情况

标签在UI的结构优化中骑着非常重要的作用,他可以删减多余的层级,优化UI。

多用于替换FrameLayout或者当一个布局包含另一个是,标签消除视图层次结构中多余的视图组。例如你的主布局文件是相对布局,引入了一个相对布局的include,这时如果include布局使用的RelativeLayout就没意义了,使用的话反而减慢你的UI表现。这时可以使标签优化。


在使用merge后,视图层被简化了成了两层


标签

viewstub标签同include标签一样可以用来引入一个外部布局,不同的是,viewstub引入的布局默认不会扩张,即既不会占用显示也不会占用位置,从而在解析layout时节省cpu和内存。viewstub常用来引入那些默认不会显示,只在特殊情况下显示的布局,如进度布局、网络失败显示的刷新布局、信息出错出现的提示布局等
footlayout.xml文件:

xml version="1.0" encoding="utf-8"?>
xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="match_parent" >
    
11activity_main布局

xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.baozilichao.android2lesson_07_inerfacelayout.MainActivity">
    
1MainActivity.java

public class MainActivity extends AppCompatActivity {
    private Button button1;
    View view1;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
//        引入的布局文件中的控件一样可以通过id直接获取到
        button= (Button) findViewById(R.id.button);
        button1= (Button) findViewById(R.id.button1);
        tv= (TextView) findViewById(R.id.text);
//         根据id拿到viewStub之后,调用inflate()就会将视图显示出来,并且作为返回值返回
        view1=((ViewStub)findViewById(R.id.viewStub)).inflate();
        view1.setVisibility(View.INVISIBLE);
        button1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
//                tv.setText("红黑联盟");
                if(view1.getVisibility() == View.VISIBLE){
                    view1.setVisibility(View.INVISIBLE);
                }else{
                   view1.setVisibility(View.VISIBLE);
                }
            }
        });

    }
}
在开发时 ,系统为我们提供的标题栏往往不能满足我们的需求,这时候,就需要用到自定义标题栏。

使用自定义标题栏遵循以下步骤:

一、自定义标题栏布局(必须保证跟标签是RelativeLayout)

二、在Activity中使用该布局


三、调整style使该布局和标题栏契合


四、让Activity使用该样式

1

1style.xml


    
    
    
    
1title_layout.xml标题栏

AndroidManifest.xml

xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.baozilichao.android2lesson_07_mytitlebar">
            android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        android:name=".MainActivity"
            android:theme="@style/myTitleBar">
            
android :name= "android.intent.action.MAIN" /> android :name= "android.intent.category.LAUNCHER" /> 1

public class MainActivity extends Activity {
//    自定义标题栏步骤
//    1.自定义标题栏布局文件
//    2.在对应的Activity当中指定使用自定义的标题栏
//    将自定义标题和主题进行融合,创建一个自己的主题
//    配置清单文件,设置使用自定义主题
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
//        这行代码必须加载到setContentView之前
        requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
        setContentView(R.layout.activity_main);
//        设置当前Activity使用自定义标题栏,指定使用的自定义标题栏为刚才创建的布局文件
        getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.title_layout);
    }




1111

你可能感兴趣的:(Android基础)