デフォルトのToggleButton
外観を上書きしようとしています。これは以下を定義するXMLですToggleButton
。
<ToggleButton android:id="@+id/FollowAndCenterButton"
android:layout_width="30px"
android:layout_height="30px"
android:textOn="" android:textOff="" android:layout_alignParentLeft="true"
android:layout_marginLeft="5px"
android:layout_marginTop="5px" android:background="@drawable/locate_me"/>
これで、クリックされた状態とクリックされていない状態に使用する2つの30 x 30アイコンがあります。現在、状態に応じてプログラムで背景アイコンを変更するコードがあります。
centeredOnLocation.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
if (centeredOnLocation.isChecked()) {
centeredOnLocation.setBackgroundDrawable(getResources().getDrawable(R.drawable.locate_me_on));
} else {
centeredOnLocation.setBackgroundDrawable(getResources().getDrawable(R.drawable.locate_me));
}
}
});
明らかに、これを行うためのより良い方法を探しています。私は自動的に状態を切り替える背景画像のセレクターを作ろうとしました:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/locate_me" /> <!-- default -->
<item android:state_checked="true"
android:drawable="@drawable/locate_me_on" /> <!-- pressed -->
<item android:state_checked="false"
android:drawable="@drawable/locate_me" /> <!-- unchecked -->
しかし、これは機能しません。ToggleButton
API(http://developer.android.com/reference/android/widget/ToggleButton.html)を読み取ると、継承されたxml属性のみが
XML Attributes
Attribute Name Related Method Description
android:disabledAlpha The alpha to apply to the indicator when disabled.
android:textOff The text for the button when it is not checked.
android:textOn The text for the button when it is checked.
クラスにメソッドisChecked()
とがあるにもかかわらず、android:state_checked属性がないようですsetChecked()
。
それで、私がXMLでやりたいことをする方法はありますか、それとも厄介な回避策で立ち往生していますか?
それを無視してください。
—
Timmmm
CompoundButton
抽象的です!
CompoundButton
た方がよいと思います。