国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android LayoutInflater的使用詳細解析

2020-02-21 17:37:14
字體:
來源:轉載
供稿:網友

  今天小編跟大家分享一篇關于Android LayoutInflater的使用詳細解析,感興趣的朋友跟小編一起來了解一下吧!

  在android中,LayoutInflater有點類似于Activity的findViewById(id),不同的是LayoutInflater是用來找layout下的xml布局文件,并且實例化!而findViewById()是找具體xml下的具體 widget控件(如:Button,TextView等)。

  下面通過一個例子進行詳細說明:

  1、在res/layout文件夾下,添加一個xml文件dialog.xml

  復制代碼 代碼如下:

  

  android:layout_width="match_parent"

  android:layout_height="match_parent"

  android:orientation="horizontal" >

  

  android:id="@+id/diaimage"

  android:layout_width="wrap_content"

  android:layout_height="fill_parent" >

  

  

  android:id="@+id/diatv"

  android:layout_width="wrap_content"

  android:layout_height="fill_parent" />

  

  2、在main.xml文件中添加一個按鈕,此按鈕用于實現點擊顯示一個Dialog

  復制代碼 代碼如下:

  

  android:id="@+id/btnshowdialog"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="Show Dialog" />

  3、在MainActivity的onCreate方法中添加如下代碼,實現具體功能操作

  復制代碼 代碼如下:

  Button showdialog = (Button) findViewById(R.id.btnshowdialog);

  showdialog.setOnClickListener(new OnClickListener() {

  @Override

  public void onClick(View v) {

  AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);

  AlertDialog dialog;

  LayoutInflater inflater = getLayoutInflater();

  View layout = inflater.inflate(R.layout.dialog, null);

  TextView diatv = (TextView) layout.findViewById(R.id.diatv);

  diatv.setText("Welcome to LayoutInflater study");

  ImageView image = (ImageView) layout.findViewById(R.id.diaimage);

  image.setImageResource(R.drawable.ic_launcher);

  builder.setView(layout);//

  dialog = builder.create();

  dialog.show();

  }

  });

  運行程序,點擊按鈕,將實現如下效果!

  以上就是Android LayoutInflater的使用詳細解析了,更多相關內容請繼續關注武林技術頻道。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 泗洪县| 曲松县| 普兰县| 衡山县| 盐山县| 彭泽县| 徐闻县| 河东区| 通许县| 芷江| 黄浦区| 永清县| 五原县| 中卫市| 五常市| 桃园县| 临夏市| 土默特右旗| 宁强县| 梁平县| 商丘市| 玉山县| 永清县| 株洲市| 乌海市| 吉木乃县| 莲花县| 安丘市| 兰西县| 搜索| 柳林县| 广水市| 乌兰浩特市| 伊吾县| 嘉定区| 枣强县| 慈溪市| 原阳县| 竹溪县| 响水县| 海晏县|