我的 android 应用程序中有几个单选按钮选项,但我希望它们看起来完全不同。更多类似下面的内容(快速模型),您只需单击所需的单词,它就会使它们变为粗体并带有下划线。
有人知道我怎样才能实现这样的目标吗?欢迎所有提示!
我的 android 应用程序中有几个单选按钮选项,但我希望它们看起来完全不同。更多类似下面的内容(快速模型),您只需单击所需的单词,它就会使它们变为粗体并带有下划线。
有人知道我怎样才能实现这样的目标吗?欢迎所有提示!
一般来说,要覆盖默认小部件的外观,您需要创建一个可绘制文件夹并将所有 xml 定义放在该文件夹中。然后在布局的 RadioButton 块中引用该 xml 文件。
这是一篇很好的博客文章,介绍了如何做到这一点:
我知道可能为时已晚,但这不是为自己保留解决方案的理由。
1)你需要实现它的.XML
布局RadioGroup
和它的RadioButton
s。使用值设置RadioGroup
子项方向以Horizontal
并排显示按钮。设置RadioButton
带有值的按钮@null
以隐藏默认选择器
如下:
<RadioGroup
android:id="@+id/my_radiogroup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
android:id="@+id/i_like_radiobutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:button="@null"
android:padding="10dp"
android:text="I Like"
android:textColor="@android:color/holo_orange_light" />
<RadioButton
android:id="@+id/i_dont_like_radiobutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:button="@null"
android:padding="10dp"
android:text="I Dont Like"
android:textColor="@android:color/holo_orange_light" />
</RadioGroup>
2)在您的Activity
班级中,初始化它们并设置它们的侦听器。侦听器应跟踪更改的RadioButton
更改,并根据状态选择或取消选择设置 UI 更改。如下:
RadioGroup myRadioGroup = (RadioGroup) findViewById(R.id.my_radiogroup);
RadioButton likeRadioButton = (RadioButton) findViewById(R.id.i_like_radiobutton);
RadioButton dontLikeRadioButton = (RadioButton) findViewById(R.id.i_dont_like_radiobutton);
//Like button listener
likeRadioButton.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
//Make the text underlined
SpannableString content = new SpannableString(getString(R.string.like_text));
content.setSpan(new UnderlineSpan(), 0, content.length(), 0);
buttonView.setText(content);
//Make the text BOLD
buttonView.setTypeface(null, Typeface.BOLD);
} else {
//Change the color here and make the Text bold
SpannableString content = new SpannableString(getString(R.string.like_text));
content.setSpan(null, 0, content.length(), 0);
buttonView.setText(content);
buttonView.setTypeface(null, Typeface.NORMAL);
}
}
});
//Don't Like button listener
dontLikeRadioButton.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
//Change the color here and make the Text bold
SpannableString content = new SpannableString(getString(R.string.like_text));
content.setSpan(new UnderlineSpan(), 0, content.length(), 0);
buttonView.setText(content);
buttonView.setTypeface(null, Typeface.BOLD);
} else {
//Change the color here and make the Text bold
SpannableString content = new SpannableString(getString(R.string.like_text));
content.setSpan(null, 0, content.length(), 0);
buttonView.setText(content);
buttonView.setTypeface(null, Typeface.NORMAL);
}
}
});
3)现在,RadioButton
它会根据它的状态自动改变它的颜色和它的TextStyle。如果需要,您可以添加更多自定义。
4)为了在用户选择任何按钮时执行所需的操作,我们需要重写以下setOnCheckedChangeListener
方法RadioGroup
:
genderRadioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
if (checkedId == R.id.i_dont_like_radiobutton) {
//Do some actions
} else if (checkedId == R.id.i_like_radiobutton){
}
}
});
除了分隔符之外,最终输出将与问题图像非常相似。
我希望它有所帮助。