我想有以下内容:一个textview.)点击后会改变背景.)保持该背景,直到再次点击
这一切都归结为"checkable"状态,但我不知道这到底是如何工作的。这是我使用的XML背景:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- pressed -->
<item android:drawable="@drawable/menuselected"
android:state_pressed="true" />
<!-- checked -->
<item android:drawable="@drawable/menuselected"
android:state_checked="true" />
<!-- default -->
<item android:drawable="@drawable/transpixel"/>
</selector>
更新:它现在部分工作。我采用了来自http://kmansoft.com/2011/01/11/checkable-image-button/的大部分代码用于我的自定义Textview。我这样做实际上是因为,我也需要单选按钮的功能。现在我可以选中Textview,但不能取消选中。有人知道为什么会这样吗?
你可以使用CheckedTextView选中标记零和背景
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkMark="@null"
android:background="@drawable/selectable"/>
你可以选择
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:drawable="@drawable/selector" />
</selector>
制作自定义TextView
实现android.widget.Checkable
接口。这应该足以让你的选择器工作。
public class CheckableTextView extends TextView implements Checkable {
private boolean isOn=false;
public CheckableTextView(Context context) {
super(context);
}
public CheckableTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CheckableTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
public int[] onCreateDrawableState(final int extraSpace) {
final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
if (isChecked())
mergeDrawableStates(drawableState, CHECKED_STATE_SET);
return drawableState;
}
@Override
public void setChecked(boolean checked) {
isOn=checked;
refreshDrawableState();
}
@Override
public boolean isChecked() {
return isOn;
}
@Override
public void toggle() {
isOn=!isOn;
refreshDrawableState();
}
}