Androidレイアウトファイルで<include>を使用すると、属性を上書きできません。バグを検索したところ、Declined Issue2863が見つかりました。
「includeタグが壊れています(レイアウトパラメータのオーバーライドは機能しません)」
Romainは、これがテストスイートと彼の例で機能することを示しているので、私は何か間違ったことをしているに違いありません。
私のプロジェクトは次のように構成されています。
res/layout
buttons.xml
res/layout-land
receipt.xml
res/layout-port
receipt.xml
buttons.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>
何が足りないのですか?