我遇到的問題是我似乎無法正確地將它匹配到match_parent。我想要它做的是延伸到頁面的結尾,如下圖所示。 我已經嘗試了幾乎所有的東西,但唯一的解決方案是添加一個固定的px,這是我不想做的事情,因爲它在不同平臺之間發生衝突。讓一個radiogroup與match_parent水平延伸
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="net.battleplugins.msutton.fragemento.MainActivity">
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/menu_row">
<RadioGroup
android:layout_width="match_parent"
android:layout_height="75dp"
android:orientation='horizontal'>
<RadioButton
android:text="@string/quiz_button_title"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:id="@+id/quiz_button"
android:button="@android:color/transparent"
android:background="@drawable/buttonbackground"
android:layout_weight="1"
android:onClick="updateFragment"/>
<RadioButton
android:text="@string/picture_button_title"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:id="@+id/picture_button"
android:button="@android:color/transparent"
android:background="@drawable/buttonbackground"
android:layout_weight="1"
android:onClick="updateFragment"/>
<RadioButton
android:text="@string/events_button_title"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:id="@+id/events_button"
android:button="@android:color/transparent"
android:background="@drawable/buttonbackground"
android:layout_weight="1"
android:onClick="updateFragment"/>
</RadioGroup>
</TableRow>
</TableLayout>
</RelativeLayout>
什麼我得到的是:
我希望它做的是這樣的:
這樣做的問題是,這是一個固定的數額。 安卓:在RadioGroup中
你可能是一位神。非常感謝。 – sheepiiHD