3

<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_widthandroid:layout_height中的属性<include>不起作用。

我已经阅读了文档,它说为了通过<include>标签覆盖属性,我必须覆盖android:layout_widthand android:layout_height,我已经这样做了。

我究竟做错了什么?

4

2 回答 2

3

使用 时merge,没有可应用100dps 的父级。尝试切换到FrameLayout而不是merge或(甚至更好)在这种情况下,您可能只是删除mergeView成为根。

编辑:

将 test_merge.xml 更改为:

<View xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#FFFF0000" >
</View>
于 2013-08-05T19:18:13.053 回答
0

尝试将这些属性设置为包含layout

<merge xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="0dp"
    android:layout_height="0dp" >

    <View
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="#FFFF0000" >
    </View>

</merge>
于 2013-08-05T19:17:32.923 回答