Я использую Android Studio, и у меня есть приложение с группой радиостанций из 4 кнопок в моем проекте, которые используются для выбора ответа из моей базы данных. Кнопки невидимы на устройстве, но могут по-прежнему нажимать на них, пока они отображаются зеленым цветом при нажатии. Также текст не отображается для каждого ответа, но текст вопроса в textview
выше переключателей отображается! Очень смущает. Кто-нибудь сталкивался с этой проблемой и знал, как ее решить? Вот копия моего макета XMLRadioButtons и текст невидимый на устройстве
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal"
android:background="@drawable/background">
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="15dip"
android:paddingBottom="15dip"
android:gravity="center_horizontal">
<ImageView android:id="@+id/logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/logo2" />
</LinearLayout>
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="5dip"
android:paddingBottom="5dip"
android:gravity="center_horizontal">
<RadioGroup android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/group1">
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:textStyle="bold"
android:id="@+id/question"/>
<RadioButton android:checked="false" android:id="@+id/answer1"
/>
<RadioButton android:checked="false" android:id="@+id/answer2"
/>
<RadioButton android:checked="false" android:id="@+id/answer3"
/>
<RadioButton android:checked="false" android:id="@+id/answer4"
/>
</RadioGroup>
</LinearLayout>
<Button android:text="Next"
android:id="@+id/nextBtn"
android:layout_width="wrap_content"
android:layout_alignParentRight="true"
android:layout_height="wrap_content"
android:background="@drawable/button_selector"
android:paddingTop="5dip"
android:paddingBottom="5dip"
android:textColor="#ffffff"
android:layout_gravity="center_horizontal" />
</LinearLayout>
Я не могу найти где вы изменили цвет текста переключателей. Вы изменили цвет текста вашего текста на белый ... Может быть, у вас есть черная база с текстом blavk и черными значками на нем? – AlbAtNf
Попытайтесь изменить свой основной фон, возможно, он имеет тот же цвет, что и ваш текст и фон RadioButton. Вот почему они выглядят невидимыми для вас. – Rami
У меня усталый сменой фона, текст белым на черном фоне, текст выше в текстовом виде отображается нормально, но только радиогруппа невидима – james