1

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"/>

4

1 に答える 1

0

ladscapeフォルダをに変更します

drawable-xhdpi-land
于 2012-06-27T08:57:27.440 に答える