LayoutInflater做用及使用

做用:
一、對於一個沒有被載入或者想要動態載入的界面, 都須要使用inflate來載入.

二、對於一個已經載入的Activity, 就可使用實現了這個Activiyt的的findViewById方法來得到其中的界面元素.

方法:
Android裏面想要建立一個畫面的時候, 初學通常都是新建一個類, 繼承Activity基類, 而後在onCreate裏面使用setContentView方法來載入一個在xml裏定義好的界面.

其實在Activity裏面就使用了LayoutInflater來載入界面, 經過getSystemService(Context.LAYOUT_INFLATER_SERVICE)方法能夠得到一個 LayoutInflater, 也能夠經過LayoutInflater inflater = getLayoutInflater();來得到.而後使用inflate方法來載入layout的xml,
html


下面是一個簡單的例子:

首先咱們要知道,什麼是已經被載入的layout,什麼是尚未載入的.咱們啓動一個應用,與入口Activity相關的layout{常見的是main.xml}就是被載入的,即在Oncreate()中的.而其餘的layout是沒有被載入的.就要動態載入了或經過另外一個activity.

在實際開發種LayoutInflater這個類仍是很是有用的,它的做用相似於 findViewById(),
不一樣點是LayoutInflater是用來找layout下xml佈局文件,而且實例化!而findViewById()是找具體xml下的具體 widget控件.
爲了讓你們容易理解我[轉]作了一個簡單的Demo,主佈局main.xml裏有一個TextView和一個Button,當點擊Button,出現 Dialog,而這個Dialog的佈局方式是咱們在layout目錄下定義的custom_dialog.xml文件(裏面左右分佈,左邊 ImageView,右邊TextView)。
LayoutInflater做用及使用

代碼以下:
package com.bivin;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
public class MainActivity extends Activity implements OnClickListener {
private Button button;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
button = (Button) findViewById(R.id.button);
button.setOnClickListener(this);
}
@Override
public void onClick(View v) {
showCustomDialog();
}
public void showCustomDialog() {
AlertDialog.Builder builder;
AlertDialog alertDialog;
Context mContext = MainActivity.this;
LayoutInflater inflater = (LayoutInflater) mContext
.getSystemService(LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.custom_dialog, null);
TextView text = (TextView) layout.findViewById(R.id.text);
text.setText("Hello, Welcome to Mr Wei's blog!");
ImageView p_w_picpath = (ImageView) layout.findViewById(R.id.p_w_picpath);
p_w_picpath.setImageResource(R.drawable.icon);
builder = new AlertDialog.Builder(mContext);
builder.setView(layout);
alertDialog = builder.create();
alertDialog.show();
}
}
相關文章
相關標籤/搜索