LayoutInflater.from(this)的用法--inflate就相当于将一个xml中定义的布局找出来.

来源:互联网 发布:行星和恒星的区别知乎 编辑:程序博客网 时间:2024/06/05 10:46

通俗的说,inflate就相当于将一个xml中定义的布局找出来.
因为在一个Activity里如果直接用findViewById()的话,对应的是setConentView()的那个layout里的组件.

因此如果你的Activity里如果用到别的layout,比如对话框上的layout,你还要设置对话框上的layout里的组件(像图片ImageView,文字TextView)上的内容,你就必须用inflate()先将对话框上的layout找出来,然后再用这个layout对象去找到它上面的组件,如: 

Toast toast = new Toast(ToastTest.this);
LayoutInflater inflater = LayoutInflater.from(ToastTest.this);
View view = inflater.inflate(R.layout.toast, null);
LinearLayout ll = (LinearLayout)view.findViewById(R.id.ll);
toast.setView(ll);
toast.setDuration(Toast.LENGTH_LONG);
toast.show();



如果组件R.id.dialog_tv是对话框上的组件,而你直接用this.findViewById(R.id.dialog_tv)肯定会报错.

 

0 0
原创粉丝点击