xml セレクターの背景を持つボタンを設定しました。ドローアブルは、drawable-xhdpi と drawable-land-xhdpi の異なるバージョンにあります。問題は、ランド バージョンでボタンが割り当てられていないランドスケープへの回転変更にあります。
ボタンは次のようになります。
<Button android:id="@+id/home_button"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="0dp"
android:background="@drawable/xml_selector_home"
android:layout_toRightOf="@+id/fwd_button"
android:layout_weight="1">
</Button>
ボタンのドローアブルは次のようになります。
<item android:state_pressed="true" android:drawable="@drawable/homeon"/>
<item android:drawable="@drawable/homeoff"/>