带有单选按钮的Android警报对齐问题

时间:2015-07-11 10:15:42

标签: android android-layout radio-button

我对android编程很新。我创建了一个alert box标题问题,正文包含答案(radio Button)

1。我想减少标题的堡垒大小(我的问题) 2。对齐文本中心下方的无线电选项..

enter image description here

我的Dialogbox.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#800080" >

    <LinearLayout
        android:id="@+id/namelayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:layout_centerHorizontal="true">

        <TextView
            android:layout_width="73dp"
            android:layout_height="50dp"
            android:gravity="center"
            android:text="5am-6am" />

        <TextView
            android:layout_width="73dp"
            android:layout_height="50dp"
            android:gravity="center"
            android:text="6am-8am" />

        <TextView
            android:layout_width="73dp"
            android:layout_height="50dp"
            android:gravity="center"
            android:text="6pm-8pm" />

        <TextView
            android:layout_width="73dp"
            android:layout_height="50dp"
            android:gravity="center"
            android:text="8pm-11pm" />
    </LinearLayout>

    <RadioGroup
        android:id="@+id/radiogroub"
        android:layout_width="280dp"
        android:layout_height="wrap_content"
        android:layout_below="@+id/namelayout"
        android:gravity="center"
        android:orientation="horizontal" 
        android:layout_centerHorizontal="true">

        <RadioButton
            android:id="@+id/sms1"
            android:layout_width="60dp"
            android:layout_height="50dp" />

        <RadioButton
            android:id="@+id/sms2"
            android:layout_width="60dp"
            android:layout_height="50dp" />

        <RadioButton
            android:id="@+id/sms3"
            android:layout_width="60dp"
            android:layout_height="50dp" />

        <RadioButton
            android:id="@+id/sms4"
            android:layout_width="60dp"
            android:layout_height="50dp" />
    </RadioGroup>

    <LinearLayout
        android:id="@+id/btnlayout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/radiogroub"
        android:gravity="center"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/sendbtn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:text="Send" />

        <Button
            android:id="@+id/closebtn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:text="Close" />
    </LinearLayout>

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

使用此布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#800080"
    android:orientation="vertical" >

    <LinearLayout
        android:id="@+id/namelayout"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_weight="0"
        android:orientation="horizontal"
        android:visibility="visible" >

        <TextView
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_weight="1"
            android:gravity="center"
            android:text="5am-6am" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_weight="1"
            android:gravity="center"
            android:text="6am-8am" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_weight="1"
            android:gravity="center"
            android:text="6pm-8pm" />

        <TextView
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:layout_weight="1"
            android:gravity="center"
            android:text="8pm-11pm" />
    </LinearLayout>

    <RadioGroup
        android:id="@+id/radiogroub"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:orientation="horizontal" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:gravity="center" >

            <RadioButton
                android:id="@+id/sms1"
                android:layout_width="wrap_content"
                android:layout_height="match_parent" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:gravity="center" >

            <RadioButton
                android:id="@+id/sms2"
                android:layout_width="wrap_content"
                android:layout_height="match_parent" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:gravity="center" >

            <RadioButton
                android:id="@+id/sms3"
                android:layout_width="wrap_content"
                android:layout_height="match_parent" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:gravity="center" >

            <RadioButton
                android:id="@+id/sms4"
                android:layout_width="wrap_content"
                android:layout_height="match_parent" />
        </LinearLayout>
    </RadioGroup>

    <LinearLayout
        android:id="@+id/btnlayout"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_weight="0"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/sendbtn"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:text="Send" />

        <Button
            android:id="@+id/closebtn"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:text="Close" />
    </LinearLayout>

</LinearLayout>