如何用布局夸大一个视图
我有一个用XML定义的布局。 它还包含:
<RelativeLayout
android:id="@+id/item"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
我想膨胀这个RelativeView与其他XML布局文件。 根据情况我可能会使用不同的布局。 我应该怎么做? 我正在尝试不同的变体
RelativeLayout item = (RelativeLayout) findViewById(R.id.item);
item.inflate(...)
但他们没有一个很好。
我不确定我是否已经关注了您的问题 - 您是否试图将子视图附加到RelativeLayout? 如果是这样,你想按照以下方式做一些事情:
RelativeLayout item = (RelativeLayout)findViewById(R.id.item);
View child = getLayoutInflater().inflate(R.layout.child, null);
item.addView(child);
您膨胀一个XML资源。 请参阅LayoutInflater文档。
如果您的布局位于mylayout.xml中,则可以执行以下操作:
View view;
LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = inflater.inflate(R.layout.mylayout, null);
RelativeLayout item = (RelativeLayout) view.findViewById(R.id.item);
虽然迟到了,但想补充说明一个办法
LayoutInflater layoutInflater = (LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = layoutInflater.inflate(R.layout.mylayout, item );
其中item
是要添加子布局的父布局。
上一篇: How to inflate one view with a layout
下一篇: Android project won't build when editing a resource file