android中的xml布局文件如何引用另一个xml布局文件
4个回答
展开全部
在一个xml文件中用include引入,例如textview中的include用法
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<include layout="@layout/include1"/>
<include layout="@layout/include2"/>
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<include layout="@layout/include1"/>
<include layout="@layout/include2"/>
</LinearLayout>
展开全部
用include或者用一个View类加载要引用的xml,然后在使用的布局中引用View类
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
fragment也可以实现
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
看你要引用哪里的的xml文件,要引用得到什么效果
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |