在我的Android布局文件中使用<include>时,我无法覆盖属性。当我搜索错误时,发现拒绝的问题2863:
“ include标记已损坏(覆盖的布局参数永远无效)”
由于Romain指出这在测试套件及其示例中有效,因此我一定做错了。
我的项目是这样组织的:
res/layout
buttons.xml
res/layout-land
receipt.xml
res/layout-port
receipt.xml
button.xml包含以下内容:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button .../>
<Button .../>
</LinearLayout>
人像和风景的receive.xml文件看起来像:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
...
<!-- Overridden attributes never work. Nor do attributes like
the red background, which is specified here. -->
<include
android:id="@+id/buttons_override"
android:background="#ff0000"
android:layout_width="fill_parent"
layout="@layout/buttons"/>
</LinearLayout>
我想念什么?