如何在 Android 的一个页面上创建多个微调器?

发布于 2024-11-30 11:23:17 字数 440 浏览 0 评论 0原文

我看过很多关于如何制作旋转器的教程,但它们每页都只显示一个。当我尝试插入 2 时,第二个不起作用。我以前没有 Android 编程知识,所以也许我只是将第二个微调器代码放在了错误的位置。我确实需要一些代码示例的帮助。

我已经尝试了 5 次,但到目前为止我似乎无法在这里发布我的代码,但这只是一个旋转器的简单代码

谢谢!

编辑:在这里得到答案: http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/Spinner1.html

Ive seen so many tutorials on how to make spinners, but they all show just one per page. When I try to insert 2, the second one just doesnt work. I have no previous knowledge of Android programming so maybe Im just putting the second spinner code in the wrong place of something. I could really use some help with a code example please.

Ive tried 5 times but I cant seem to post my code here so far but its just a simple code for one spinner

Thank you!

EDIT: got the answer here: http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/Spinner1.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青春有你 2024-12-07 11:23:17

尝试这个布局...

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/search_scrvw"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<ScrollView 
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical">

    <TableLayout 
        android:id="@+id/search_table"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:layout_marginTop="50dip"
        android:layout_marginLeft="50dip" >

        <TableRow 
            android:layout_width="wrap_content" 
            android:layout_height="match_parent">
            <TextView 
                android:text="Sex" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" />

            <Spinner 
                android:id="@+id/spnr_srch_sex" 
                android:layout_width="150dip" 
                android:layout_height="wrap_content" />

        </TableRow>

        <TableRow 
            android:layout_width="wrap_content" 
            android:layout_height="match_parent">
            <TextView 
                android:text="Age" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" />

            <Spinner 
                android:id="@+id/spnr_srch_age" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" />

        </TableRow>

        <TableRow 
            android:layout_width="wrap_content" 
            android:layout_height="match_parent">
            <TextView 
                android:text="Country" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" />

            <Spinner 
                android:id="@+id/spnr_srch_country" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" />

        </TableRow>

        <Button
            android:id="@+id/search"
            android:text="Search"
            android:layout_width="100dip"
            android:layout_height="wrap_content" />


    </TableLayout>  


  </ScrollView>
</LinearLayout>

Try This Layout...

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/search_scrvw"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">

<ScrollView 
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical">

    <TableLayout 
        android:id="@+id/search_table"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:layout_marginTop="50dip"
        android:layout_marginLeft="50dip" >

        <TableRow 
            android:layout_width="wrap_content" 
            android:layout_height="match_parent">
            <TextView 
                android:text="Sex" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" />

            <Spinner 
                android:id="@+id/spnr_srch_sex" 
                android:layout_width="150dip" 
                android:layout_height="wrap_content" />

        </TableRow>

        <TableRow 
            android:layout_width="wrap_content" 
            android:layout_height="match_parent">
            <TextView 
                android:text="Age" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" />

            <Spinner 
                android:id="@+id/spnr_srch_age" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" />

        </TableRow>

        <TableRow 
            android:layout_width="wrap_content" 
            android:layout_height="match_parent">
            <TextView 
                android:text="Country" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" />

            <Spinner 
                android:id="@+id/spnr_srch_country" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" />

        </TableRow>

        <Button
            android:id="@+id/search"
            android:text="Search"
            android:layout_width="100dip"
            android:layout_height="wrap_content" />


    </TableLayout>  


  </ScrollView>
</LinearLayout>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文