How can I make a RadioButton with overlapping text?(如何制作带有重叠文本的 RadioButton?)
问题描述
我正在以编程方式将问题的多个答案添加为 RadioGroup 中的 RadioButtons(参见下面的代码和图片).
I'm adding programmatically multiple answers to a questions as RadioButtons in a RadioGroup (see code and image below).
我几乎实现了它,但我不想有一个带有文本的单选按钮(见下图),我希望只有文本和背景.
I almost achieved it but instead of having a radio button with a text on its side (see image below), I would like to have only the text and the background.
我可以去掉单选按钮吗?
Can I get rid of the radio button?
或者我可以将我当前的背景设置为单选按钮(带有选中/未选中状态),并添加一个与其重叠的文本吗?
Or can I set my current background as the radio button (with checked/unchecked states), and add a text overlapping it?
RadioGroup answer_container = (RadioGroup) findViewById(R.id.answer_container);
while (c.isAfterLast() == false) {
RadioButton answer = new RadioButton(PCItem.this);
answer.setText(c.getString(c.getColumnIndex(DBAdapter.KEY_ANS_TEXT)));
answer.setBackgroundResource(R.drawable.btn_ans);
answer.setPadding((int)(30 * density), 0, 0, 0);
answer.setGravity(Gravity.CENTER_VERTICAL);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams((int)(775 * density), (int)(81 * density));
params.setMargins(0, (int)(20*density), 0, 0);
answer.setLayoutParams(params);
answer_container.addView(answer);
c.moveToNext();
}
推荐答案
好的,我用了
answer.setButtonDrawable(android.R.color.transparent);
移除按钮,并使用选择器作为 btn_ans:
to remove the button, and using a selector as btn_ans:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="false" android:drawable="@drawable/btn_choix_unsel" />
<item android:state_checked="true" android:drawable="@drawable/btn_choix_sel" />
</selector>
这篇关于如何制作带有重叠文本的 RadioButton?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何制作带有重叠文本的 RadioButton?


基础教程推荐
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01