Android:旁边有两个微调器

时间:2010-11-06 01:13:53

标签: java android

我想要在2个不同的微调器旁边显示价格值:“从”和“到”,我希望在彼此旁边显示两个微调器,其中一个将包含“来自值” 而另一个“为价值观”

这在android中怎么可能?

1 个答案:

答案 0 :(得分:0)

您可以在布局XML中使用表格布局:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:stretchColumns="0,1,2"
    android:layout_width="wrap_content" android:layout_height="wrap_content"
    android:gravity="center">
    <TableRow>
        <Spinner android:id="@+id/widget1" android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:drawSelectorOnTop="false" />
        <Spinner android:id="@+id/widget2" android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:drawSelectorOnTop="false" />
    </TableRow>

</TableLayout> 

我没有编译它或确保它可以工作,这只是为了给你一个想法。

祝你好运!