如何将Spinner放在RadioButton旁边

时间:2013-05-21 01:44:16

标签: android android-layout radio-button spinner radio-group

我有这个布局:

(因为我的声誉还不到10我真诚地要求您查看此图片链接) http://tinypic.com/r/2q9f80z/5

我想在最后一个RadioButton旁边放一个Spinner,如图所示。

这是我的代码:

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

<!-- Linearlayout containing the Search/Find Customer -->


    <!-- TextView for Search/Find Customer -->

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Search/Find Customer" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

    <EditText
        android:id="@+id/etSearch"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@layout/roundable_edittext"
        android:hint="@string/hint_search" >
        </EditText>
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

    <Button
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:text="Search" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="Cancel" />
</LinearLayout>

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >
</LinearLayout>

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dp" >

    <TextView
        android:id="@+id/Options"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Search/Find Customer" />
</LinearLayout>

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <RadioGroup
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <RadioButton
            android:id="@+id/rdAllCustomers"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:checked="true"
                android:text="All Customers" />

            <RadioButton
                android:id="@+id/rdToday"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Today" />

            <RadioButton
                android:id="@+id/rdToday"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Owner\&apos;s Name" />

            <RadioButton
                android:id="@+id/rdToday"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Trade Name" />

            <RadioButton
                android:id="@+id/rdToday"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Itinerary" />
        </RadioGroup>
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <Spinner
            android:layout_width="163dp"
            android:layout_height="wrap_content"
            android:entries="@array/spinner_itinerary"
            android:gravity="bottom" />
    </LinearLayout>

</LinearLayout>

提前致谢!

2 个答案:

答案 0 :(得分:0)

男人,你不应该在单选按钮旁边使用微调器,这不是一个好的设计练习,而是你应该把你的微调器放在单选按钮下,如果用户选择单选按钮,你就可以看到微调器。

答案 1 :(得分:0)

我同意@Witalo。在Android设计指南中强烈建议不要模仿非Android移动操作系统(iOS,Windows Phone等)设计。但是,如果您的客户/客户需要,您可以选择以下选项,

  • 绘制RadioButton而非
  • 的子类Spinner
  • 或者,使用RelativeLayout