如何在非Activity中获得RelativeLayout对象
2个回答
2015-03-30
展开全部
方法一
final View view = LayoutInflater.from(context).inflate(R.layout.test, null);
方法二
LayoutInflater li = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = li.inflate(R.layout.test,null);
我的test.xml文件中有一个
<RelativeLayout android:id="@+id/cc_container"
android:layout_width="fill_parent" android:layout_height="wrap_content">
我想在cc_container中加入一个view
final View view = LayoutInflater.from(context).inflate(R.layout.test, null);
方法二
LayoutInflater li = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = li.inflate(R.layout.test,null);
我的test.xml文件中有一个
<RelativeLayout android:id="@+id/cc_container"
android:layout_width="fill_parent" android:layout_height="wrap_content">
我想在cc_container中加入一个view
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2015-03-30
展开全部
可以啊,你自己写一个布局文件,假设是ooo.xml,
在oncreate里面
把setContentView(R.layout.main);
修改成
setContentView(R.layout.ooo); 就ok了
在oncreate里面
把setContentView(R.layout.main);
修改成
setContentView(R.layout.ooo); 就ok了
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询