LayoutInflater和inflate的用法

一、概述

有時候在咱們的Activity中用到別的layout,而且要對其組件進行操做,好比:php

A.acyivity是獲取網絡數據的,對應佈局文件爲A.xml,而後須要把這個數據設置到B.xml的組件上,咋辦?這時候你就須要使用inflate()方法了html

二、LayoutInflater和inflate的用法

2.一、LayoutInflater

【LayoutInflater】實際上是在res/layout/下找到xml佈局文件,而且將其實例化,對於一個沒有被載入或者想要動態載入的界面,都須要使用LayoutInflater.inflate()來載入;android

【findViewById】是找出xml佈局文件下的具體widget控件(如Button、TextView等)一般是對於一個已經載入的界面,就可使用Activiyt.findViewById()方法來得到其中的界面元素。

在獲取佈局以前首先要對LayoutInflater進行實例化,一般有如下三種方式網絡

【1】 LayoutInflater inflater = getLayoutInflater();//調用Activity的getLayoutInflater()
【2】LayoutInflater inflater = LayoutInflater.from(context);
【3】 LayoutInflater inflater = (LayoutInflater)context.getSystemService (Context.LAYOUT_INFLATER_SERVICE);ide

其實這三種方式的本質都是相同的,getLayoutInflater()——>調用LayoutInflater.from(context)——>調用context.getSystemService(),最終仍是調用底層service服務佈局

2.二、inflate

inflate就至關於將一個xml中定義的佈局找出來,經常使用方法this

【1】inflate(int resource,null)spa

【2】inflate(int resource, ViewGroup root, boolean attachToRoot)方法三個參數的含義線程

參數一 resource:須要加載佈局文件的id,意思是須要將這個佈局文件中加載到Activity中來操做。

參數二 root:須要附加到resource資源文件的根控件,什麼意思呢,就是inflate()會返回一個View對象,若是第三個參數attachToRoot爲true,就將這個root做爲根對象返回,不然僅僅將這個root對象的LayoutParams屬性附加到resource對象的根佈局對象上,也就是佈局文件resource的最外層的View上,好比是一個LinearLayout或者其它的Layout對象。

參數三 attachToRoot:是否將root附加到佈局文件的根視圖上,要是設置爲true的話必須是前面倆個佈局類型一致,好比同爲線程佈局或者同爲相對佈局。不然會報錯code

 

三、實例

經過button加載另一個A佈局文件到主佈局上,而且經過inlfate對A佈局控件作了設置,下圖所示:

height=738

你的生肖是窮苦命,仍是富貴命!

【點擊進入】

你的生肖決定你是窮苦命,仍是富貴命, 12生肖本命佛【鎮宅化煞】招財轉運

查 看

height=737

你的生肖是窮苦命,仍是富貴命!

【點擊進入】

你的生肖決定你是窮苦命,仍是富貴命, 12生肖本命佛【鎮宅化煞】招財轉運

查 看

 

主佈局文件,注意這裏是相對佈局,很簡單一個button

 

?

1

<relativelayout android:id="@+id/main" android:layout_height="match_parent" android:layout_width="match_parent" android:orientation="vertical" tools:context=".MainActivity" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"><button android:id="@+id/btn" android:layout_alignparentbottom="true" android:layout_centerhorizontal="true" android:layout_gravity="center_horizontal" android:layout_height="wrap_content" android:layout_width="wrap_content" android:text="加載Titlebar"></button></relativelayout>


titleBar佈局,使用了一個自定義圓形圖片控件,加了一些效果,這裏圖片和文字內容都是默認,並非上圖顯示的內容

 

 

?

1

2

3

4

5

6

7

8

9

10

11

<!--?xml version=1.0 encoding=utf-8?-->

<linearlayout android:background="@color/lightblue" android:id="@+id/Titlebar" android:layout_height="wrap_content" android:layout_width="match_parent" xmlns:android="http://schemas.android.com/apk/res/android">

    <!--使用自定義圓形控件-->

    <com.elvis.layoutinflatedemo.circleimageview android:id="@+id/pic" android:layout_gravity="center_vertical" android:layout_height="wrap_content" android:layout_marginleft="10dp" android:layout_marginright="4dp" android:layout_width="wrap_content" android:src="@drawable/ic_launcher">

    <!--分割線效果-->

    <imageview android:layout_gravity="center_vertical" android:layout_height="wrap_content" android:layout_marginleft="6dp" android:layout_marginright="6dp" android:layout_width="wrap_content" android:src="@drawable/bar_divider">

    <!--Title文本-->

    <textview android:id="@+id/mytitle" android:layout_gravity="center_vertical" android:layout_height="wrap_content" android:layout_marginleft="6dp" android:layout_weight="1" android:layout_width="0dp" android:text="模擬顯示Title" android:textsize="20sp" android:textstyle="bold">

 

 

</textview></imageview></com.elvis.layoutinflatedemo.circleimageview></linearlayout>


MainActivty,動態設置了圖片和標題內容並將其添加到主佈局中

 

 

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

public class MainActivity extends AppCompatActivity {

    private LayoutInflater mLayoutInflater;

    private RelativeLayout mainLayout;

    private Button mBtn;

 

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

        initViews();

        initEvents();

 

    }

 

    private void initEvents() {

        mBtn.setOnClickListener(new View.OnClickListener() {

            @Override

            public void onClick(View v) {

                //點擊動態加載佈局

                LinearLayout mlayout = (LinearLayout) mLayoutInflater.inflate(R.layout.titlebar, mainLayout, false);

                //LinearLayout mlayout = (LinearLayout) mLayoutInflater.inflate(R.layout.titlebar, null);

                //獲取對應titleBar下的CircleImageView控件

                CircleImageView myPic = (CircleImageView) mlayout.findViewById(R.id.pic);

                CircleImageView myPic1 = (CircleImageView) findViewById(R.id.pic);

                myPic.setImageResource(R.drawable.pic);

                //獲取對應titlebar下的TextView控件

                TextView tx = (TextView) mlayout.findViewById(R.id.mytitle);

                tx.setText(xsfelvis CSDN 博客);

 

                mainLayout.addView(mlayout);

            }

        });

    }

 

    private void initViews() {

        mBtn = (Button) findViewById(R.id.btn);

        mainLayout = (RelativeLayout) findViewById(R.id.main);

        mLayoutInflater = LayoutInflater.from(this);

 

    }

 

}


若是你把

 

LinearLayout mlayout = (LinearLayout) mLayoutInflater.inflate(R.layout.titlebar, mainLayout, false);中fasle改成true就會報錯,這也印證了開篇所說的內容,使用的時候留點心吧!

height=89

相關文章
相關標籤/搜索