gpt4 book ai didi

Android:自定义 View 属性上的选择器

转载 作者:太空狗 更新时间:2023-10-29 14:12:05 27 4
gpt4 key购买 nike

我已尝试遵循本指南:How to add a custom button state ,创建我自己的 View 属性,并使用选择器更改其状态。我似乎无法让它工作。按钮的选择器在非自定义选择器上工作正常,例如按下按钮,但不适用于我的服装选择器。我的代码如下:

在 attrs.xml 中:

<resources>
<declare-styleable name="ValueButton">
<attr name="toggle" format="boolean" />
</declare-styleable>
</resources>

在我的自定义按钮类定义文件中,名为 ValueButton.java:

public class ValueButton extends Button
{
private static final int[] STATE_TOGLLE = {R.attr.toggle};
private boolean toggle = false;

public void setToggle(boolean val)
{
toggle = val;
}

public ValueButton(Context context, AttributeSet attrs) {
super(context, attrs);
}

@Override
protected int[] onCreateDrawableState(int extraSpace) {
final int[] drawableState = super.onCreateDrawableState(extraSpace + 2);
if(toggle)
mergeDrawableStates(drawableState,STATE_TOGLLE);
return drawableState;
}
}

在我看来,使用按钮:

<LiniarLayout>
<com.myapp.ValueButton
android:id="@+id/rightText"
custom:toggle="false"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
style="@style/ValueSwitchStyle"
/>
</LiniarLayout>

在我的 styles.xml 文件中:

<style name="ValueSwitchStyle">
<item name="android:background">@drawable/value_switch_background</item>
</style>

最后是我的背景定义文​​件 (button_background.xml),位于 drawables 文件夹中:

<selector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/com.myapp.ValueButton">
<item custom:toggle="true" android:drawable="@color/blue"/>
<item custom:toggle="false" android:drawable="@color/white"/>
</selector>

最佳答案

您错过了 refreshDrawableState 调用

public void setToggle(boolean val) {
toggle = val;
refreshDrawableState();
}

来自文档

Call this to force a view to update its drawable state.

关于Android:自定义 View 属性上的选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26690688/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com