我想在android系統,看起來創建一個視圖,如:單選按鈕上方的文本按鈕
文本
- 單選按鈕1
- ...
- ...
我認爲它很簡單,但至少在佈局預覽和模擬器中我看到RadioButton的文本出現在實際的radi o按鈕(圓圈),請參閱附帶的屏幕截圖。我猜這是非常微不足道的事情,但我被重力和其他所有我能想到的設置搞亂了。 Android 3.1如果有問題。
這裏是我的佈局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="@color/white"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView android:id="@+id/question_text"
android:textColor="@color/primary_gray"
android:layout_width="match_parent"
android:text="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
android:layout_height="wrap_content"/>
<RadioGroup android:id="@+id/multiple_choice_one_answer_group"
android:background="@color/white"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RadioButton
android:background="@color/primary_gray"
android:textColor="@color/black"
android:textSize="10sp"
android:text="XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" />
</RadioGroup>
</LinearLayout>
截圖:
這隻發生在API級別<17上。在17+上它是固定的。 –
看到可能的重複:http://stackoverflow.com/questions/13901789/android-radiobutton-issue-in-android-4 –