zoukankan      html  css  js  c++  java
  • android中的Spinner的使用

    先来最终的效果吧:

    image

    我们的main.xml文件内容为:

    <?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:orientation="vertical" >
    
        <Spinner
            android:id="@+id/spinner1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:entries="@array/books" />
    
    </LinearLayout>

    我们在values目录下面新建了一个arrays.xml文件

    文件的内容是:

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
    
        <string-array name="books">
            <item>Rollen</item>
            <item>Rollen Holt</item>
            <item>Rollen ren</item>
        </string-array>
    
    </resources>

    其余文件都是默认的。

  • 相关阅读:
    二分图匹配详解
    树状数组略解
    质数算法略解
    主席树详解
    线段树略解
    【题解】Luogu P2073 送花
    【题解】Luogu P1533 可怜的狗狗
    分块入门
    【题解】Luogu CF86D Powerful array
    【题解】Luogu UVA12345 Dynamic len(set(a[L:R]))
  • 原文地址:https://www.cnblogs.com/rollenholt/p/2506395.html
Copyright © 2011-2022 走看看