我<include>
在与 结合使用时遇到问题<merge>
。我正在使用最新的 Android SDK (4.3) 在 Eclipse 上进行开发。这是我的示例代码:
test_merge.xml
<merge xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<View
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#FFFF0000" >
</View>
</merge>
test_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<include layout="@layout/test_merge"
android:layout_width="100dp"
android:layout_height="100dp"/>
</LinearLayout>
我的活动.java
public class MyActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.test_main);
}
}
问题是我应该在左上角看到一个红色方块,100x100dp。相反,整个屏幕都是红色的。因此,由于某种原因,android:layout_width
和android:layout_height
中的属性<include>
不起作用。
我已经阅读了文档,它说为了通过<include>
标签覆盖属性,我必须覆盖android:layout_width
and android:layout_height
,我已经这样做了。
我究竟做错了什么?