当前位置:网站首页>在Activity中获取另一个XML文件的控件
在Activity中获取另一个XML文件的控件
2022-08-04 01:06:00 【是小A】
最近,我在项目开发中时常遇到一个问题,那就是如何在一个Activity或者Fragment中获取到其他的XML文件呢?
很多时候,我们都需要在一个Activity中去调用另一个xml布局文件,即非当前Activity所绑定的xml布局文件中的控件,这时候我们就不能直接使用
findViewById(),不然会报错,指向空对象
下面为大家总结了一个方案:
LayoutInflater inflater = LayoutInflater.from (当前类);
View view = inflater.inflate(R.layout.需要引用的XML文件名,null);
Button button = (Button)view.finndViewById(R.id.需要引用的ID名);
如果一行代码写完的话:
Button button = (Button) LayoutInflater.from(当前类).inflate(R.layout.需要获取的xml文件名,null).findViewById(R.id.控件ID);
以上就是关于Activity或者Fragment引用非此类XML文件的内容了,希望能帮助到您!
边栏推荐
- outputBufferIndex = mDecode.dequeueOutputBuffer(bufferInfo, 0) 一直返回为-1
- 教你如何定位不合理的SQL?并优化之
- 无代码7月热讯 | 微软首推数字联络中心平台;全球黑客马拉松...
- 多渠道打包
- Mvc、Mvp和Mvvm
- VR全景拍摄线上展馆,3D全景带你沉浸体验
- LDO investigation
- ML18-自然语言处理
- Electronics manufacturing enterprise deployment WMS what are the benefits of warehouse management system
- thinkphp 常用技巧
猜你喜欢
typescript54 - generic constraints
Getting started with MATLAB 3D drawing command plot3
Installation and configuration of nodejs+npm
typescript50 - type specification between cross types and interfaces
【超详细教程】LVS+KeepAlived高可用部署实战应用
数据库扩容也可以如此丝滑,MySQL千亿级数据生产环境扩容实战
typescript48 - type compatibility between functions
【性能优化】MySQL常用慢查询分析工具
动态内存二
静态文件快速建站
随机推荐
typescript48-函数之间的类型兼容性
Mvc、Mvp和Mvvm
一文参透分布式存储系统Ceph的架构设计、集群搭建(手把手)
【正则表达式】笔记
nodejs切换版本使用(不需要卸载重装)
【无标题】
LeetCode第三题(Longest Substring Without Repeating Characters)三部曲之三:两次优化
C 学生管理系统 显示链表信息、删除链表
Google Earth Engine ——利用公开的河流数据计算河流的有效宽度
[store mall project 01] environment preparation and testing
typescript50 - type specification between cross types and interfaces
C# WPF设备监控软件(经典)-下篇
分析:Nomad Bridge黑客攻击的独特之处
Electronics manufacturing enterprise deployment WMS what are the benefits of warehouse management system
Array_Sliding window | leecode brushing notes
ML18-自然语言处理
typescript53-泛型约束
XSS - Bypass for loop filtering
How to copy baby from Taobao (or Tmall store) through API interface to Pinduoduo interface code docking tutorial
通用的测试用例编写大全(登录测试/web测试等)