如何制作带有重叠文本的 RadioButton?

How can I make a RadioButton with overlapping text?(如何制作带有重叠文本的 RadioButton?)
本文介绍了如何制作带有重叠文本的 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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)