Android怎么调用外部xml布局

avatar
作者
筋斗云
阅读量:1

要调用外部的xml布局,可以使用LayoutInflater来动态加载布局文件。具体步骤如下:

  1. 在你想要调用外部xml布局的Activity或Fragment中,创建一个LayoutInflater对象:
LayoutInflater inflater = LayoutInflater.from(context); 
  1. 使用LayoutInflater的inflate()方法来加载外部xml布局:
View view = inflater.inflate(R.layout.external_layout, null); 

其中,R.layout.external_layout是你想要调用的外部xml布局的资源ID。

  1. 将加载的布局添加到当前的布局中:
ViewGroup rootView = (ViewGroup) findViewById(R.id.root_layout); rootView.addView(view); 

其中,R.id.root_layout是当前布局中的一个容器,你可以根据你的实际情况来替换它。

通过上述步骤,你就可以成功调用外部的xml布局了。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!