Sto tentando di sovrascrivere l' ToggleButton
aspetto predefinito . Ecco l'XML che definisce 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"/>
Ora abbiamo due icone 30 x 30 che vogliamo usare per gli stati cliccato / non cliccato. In questo momento abbiamo codice che modifica a livello di programmazione l'icona dello sfondo a seconda dello stato:
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));
}
}
});
Ovviamente sto cercando un modo migliore per farlo. Ho provato a creare un selettore per l'immagine di sfondo, che passerebbe automaticamente tra gli stati:
<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 -->
Ma questo non funziona; leggendo l' ToggleButton
API ( http://developer.android.com/reference/android/widget/ToggleButton.html ), sembra che gli unici attributi xml ereditati siano
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.
Non sembra esserci l'attributo android: state_checked, nonostante la classe abbia il metodo isChecked()
e setChecked()
.
Quindi, c'è un modo per fare quello che voglio in XML o sono bloccato con la mia soluzione alternativa?
CompoundButton
è astratto!
CompoundButton
.