基于Android LayoutInflater的使用介绍

时间:2023-12-22 23:50:03 

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

下面通过一个例子进行详细说明:

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


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >

<ImageView
android:id="@+id/diaimage"
android:layout_width="wrap_content"
android:layout_height="fill_parent" >
</ImageView>

<TextView
android:id="@+id/diatv"
android:layout_width="wrap_content"
android:layout_height="fill_parent" />

</LinearLayout>

2、在main.xml文件中添加一个按钮,此按钮用于实现点击显示一个Dialog


<Button
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);// <--important,设置对话框内容的View
    dialog = builder.create();
    dialog.show();
   }
  });

运行程序,点击按钮,将实现如下效果!

基于Android LayoutInflater的使用介绍

标签:android,layout
0
投稿

猜你喜欢

  • 测试springboot项目出现Test Ignored的解决

    2022-06-25 08:37:02
  • 基于C#实现屏幕取色器的示例详解

    2021-06-26 08:58:05
  • Mybatis 逆向工程的三种方法详解

    2023-08-10 22:27:20
  • java如何将int数组转化为Integer数组

    2021-07-19 04:22:37
  • C#根据http和ftp图片地址获取对应图片

    2023-06-06 02:00:23
  • 简单了解Android性能优化方向及相关工具

    2022-10-15 19:10:54
  • SpringBoot JSON全局日期格式转换器实现方式

    2021-10-03 10:07:28
  • Android Glide图片加载(加载监听、加载动画)

    2022-08-27 08:31:24
  • Android 防止多次重复点击的三种方法的示例

    2022-02-04 17:48:42
  • MyBatis-Plus中的逻辑删除使用详解

    2022-12-29 15:07:40
  • Java设计模式之代理模式_动力节点Java学院整理

    2021-08-24 05:55:18
  • java之使用多线程代替for循环(解决主线程提前结束问题)

    2021-11-21 01:23:55
  • java算法之Math.random()随机概率玩法实例演示

    2023-11-28 23:32:17
  • Java语言中4种内部类的超详细讲解

    2022-02-23 18:08:10
  • Android超详细讲解组件LinearLayout的使用

    2023-11-01 01:04:27
  • 对C#中public、private、protect的区别说明

    2021-05-30 22:11:21
  • BeanUtils.copyProperties使用总结以及注意事项说明

    2023-06-27 18:06:18
  • 详解Android中Runtime解决屏幕旋转问题(推荐)

    2022-04-03 03:12:02
  • Linux系统中C语言编程创建函数fork()执行解析

    2023-06-21 01:10:03
  • Spring Security认证机制源码层探究

    2022-07-27 19:05:26
  • asp之家 软件编程 m.aspxhome.com