5
你好,我有一個問題,如上所示。我面臨的問題是,上面列出的單選按鈕左側似乎有一個不可見的填充。我的問題是,這是由於無線電的一個可繪製的問題,或者我可以調整一個屬性,讓它與我的文本和輸入字段對齊。如果我需要使用備用drawable,有沒有我可以從SDK獲得沒有邊距/填充?
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
... stuff
<RadioGroup
android:layout_margin="0dp"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/radio_free_busy"
android:checked="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawablePadding="0dp"
android:text="@string/label_invitation_free_busy"
/>
<RadioButton
android:id="@+id/radio_free_busy_plus"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/label_invitation_free_busy_plus"
/>
<RadioButton
android:id="@+id/radio_none"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/label_invitation_none"
/>
</RadioGroup>
</LinearLayout>
這似乎是由於繪製...如果有人有一種替代將是有益的
你能告訴你的代碼嗎? –
發佈佈局代碼 – adrian
您確定您沒有在RadioGroup父視圖中設置任何邊距/填充? – joao2fast4u