Android düzen dosyalarımda <include> kullanırken öznitelikleri geçersiz kılamıyorum. Hataları aradığımda, Reddedilmiş Sayı 2863'ü buldum :
"include etiketi bozuk (düzen parametrelerini geçersiz kılmak asla işe yaramaz)"
Romain, test süitlerinde ve örneklerinde bunun işe yaradığını gösterdiğinden, yanlış bir şey yapıyor olmalıyım.
Projem şu şekilde organize edildi:
res/layout
buttons.xml
res/layout-land
receipt.xml
res/layout-port
receipt.xml
Buttons.xml dosyası şunun gibi bir şey içerir:
<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>
Dikey ve yatay fiş.xml dosyaları şuna benzer:
<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>
Neyi kaçırıyorum?