在我一直在努力的应用中,我希望有一个多状态(在我的情况下,三个)切换按钮,而不是ToggleButton
提供的两个。我试图按照Button
来源开始自己的CompoundButton
扩展,但老实说,阅读它的来源有点压倒性。
有没有办法只使用选择器xml或其他东西做一个三态切换按钮,或者我可能没想到的其他方法?我不知道该怎么做。
答案 0 :(得分:19)
我实现了一个多状态切换按钮,源代码为here
它的外观如下:
使用起来非常简单:
<org.honorato.multistatetogglebutton.MultiStateToggleButton
android:id="@+id/mstb_multi_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dip"
mstb:values="@array/planets_array" />
在您的活动中:
MultiStateToggleButton button2 = (MultiStateToggleButton) this.findViewById(R.id.mstb_multi_id);
button2.setOnValueChangedListener(new ToggleButton.OnValueChangedListener() {
@Override
public void onValueChanged(int value) {
Log.d(TAG, "Value: " + value);
}
});
答案 1 :(得分:11)
您可以创建自定义ImageButton来实现此目的,在这种情况下您需要3个不同的图像。 如果需要,您还可以添加更多状态。
public class FlashButton extends ImageButton {
public enum FlashEnum {
AUTOMATIC, ON, OFF
}
public interface FlashListener {
void onAutomatic();
void onOn();
void onOff();
}
private FlashEnum mState;
private FlashListener mFlashListener;
public FlashButton(Context context, AttributeSet attrs) {
super(context, attrs);
//Sets initial state
setState(FlashEnum.AUTOMATIC);
}
@Override
public boolean performClick() {
super.performClick();
int next = ((mState.ordinal() + 1) % FlashEnum.values().length);
setState(FlashEnum.values()[next]);
performFlashClick();
return true;
}
private void performFlashClick() {
if(mFlashListener == null)return;
switch (mState) {
case AUTOMATIC:
mFlashListener.onAutomatic();
break;
case ON:
mFlashListener.onOn();
break;
case OFF:
mFlashListener.onOff();
break;
}
}
private void createDrawableState() {
switch (mState) {
case AUTOMATIC:
setImageResource(R.drawable.ic_flash_auto);
break;
case ON:
setImageResource(R.drawable.ic_flash_on);
break;
case OFF:
setImageResource(R.drawable.ic_flash_off);
break;
}
}
public FlashEnum getState() {
return mState;
}
public void setState(FlashEnum state) {
if(state == null)return;
this.mState = state;
createDrawableState();
}
public FlashListener getFlashListener() {
return mFlashListener;
}
public void setFlashListener(FlashListener flashListener) {
this.mFlashListener = flashListener;
}
}
答案 2 :(得分:10)
您当然可以定义一个选择器,用作具有三个条目的背景。问题是您可以将哪些按钮属性用于选择器。您可以有两个布尔属性,例如A和B,并根据A,B和默认值定义选择器。 (A&amp; B将满足A,因此更恰当地它们可以被认为是A,A&amp;&amp; B,和!A&amp;&amp;!B。)您可以重载现有属性(选择,集中)等等,或者更优雅地,使用描述为in this thread的配方定义您自己的自定义属性。
答案 3 :(得分:2)
为什么不在里面使用RadioGroup
和样式广播?
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="wrap_content"
android:background="@drawable/your_drawable_selector"
android:button="@android:color/transparent"
android:gravity="center_horizontal" //center text
android:text="text"
/>
...
答案 4 :(得分:0)
芯片是非常好的本机选择。
<com.google.android.material.chip.ChipGroup
android:id="@+id/chip_group"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:singleSelection="true">
<com.google.android.material.chip.Chip
android:id="@+id/first_chip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Todo"
android:textAppearance="?android:attr/textAppearance"
android:textColor="@color/black"
android:checkable="true"
style="@style/Widget.MaterialComponents.Chip.Choice"
app:chipBackgroundColor="@color/colorAccent"/>
<!-- Second Chip -->
<!-- Third Chip -->
</com.google.android.material.chip.ChipGroup>
binding.chipGroup.setOnCheckedChangeListener { chipGroup, i ->
when (i) {
binding.firstChip -> {
binding.firstChip.setChipBackgroundColorResource(R.color.colorAccent)
}
else -> {}
}
}
binding.firstChip.isChecked = true //default
GL