我有一个RadioButtons的RadioGroup。我的问题是,当我检查radiobutton监听器将无法正常工作。当我删除radiobutton touchlistener事件时它会起作用。
final RadioGroup RGroup = (RadioGroup) view.findViewById(R.id.RGroup);
RGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener()
{
public void onCheckedChanged(RadioGroup group, int checkedId) {
RadioButton checkedRadioButton = (RadioButton) group.findViewById(checkedId);
boolean isChecked = checkedRadioButton.isChecked();
if (isChecked)
{
checkedRadioButton.setButtonDrawable(R.drawable.ic_check_black_24dp);
}
}
});
当我删除下面的代码
时,此代码有效 button.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
int colorFrom = v.getResources().getColor(android.R.color.transparent);
int colorTo = v.getResources().getColor(R.color.colorAnswer);
ValueAnimator colorAnimation = ValueAnimator.ofObject(new ArgbEvaluator(), colorFrom, colorTo);
colorAnimation.setDuration(1000); // milliseconds
colorAnimation.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animator) {
button.setBackgroundColor((int) animator.getAnimatedValue());
}
});
colorAnimation.start();
return true;
}
});
radiobuttons的布局
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_below="@id/slide_question"
android:layout_marginTop="@dimen/pad_7dp"
android:id="@+id/RGroup">
<android.support.v7.widget.AppCompatRadioButton
android:id="@+id/radioButton1"
android:layout_width="match_parent"
android:layout_marginBottom="@dimen/pad_5dp"
android:padding="@dimen/pad_10dp"
android:layout_height="wrap_content"
android:textSize="14sp"
app:fontFamily="@font/ubuntu"
android:textColor="@color/colorBlackText"
app:buttonTint="@color/colorPrimary"
android:text="RadioButton" />
<android.support.v7.widget.AppCompatRadioButton
android:id="@+id/radioButton2"
android:layout_width="match_parent"
android:layout_marginBottom="@dimen/pad_5dp"
android:padding="@dimen/pad_7dp"
android:layout_height="wrap_content"
android:textSize="14sp"
app:fontFamily="@font/ubuntu"
android:textColor="@color/colorBlackText"
app:buttonTint="@color/colorPrimary"
android:text="RadioButton" />
</RadioGroup>
也许听众会发生冲突
答案 0 :(得分:0)
是的,这是因为听众的冲突。当你在那时应用touchListener时,它会停止该组的checkChangeListener来获取事件。
仍然从onTouch方法尝试return false
检查它是否正常工作。
尝试后发布行为。