中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android列表控件Spinner簡單用法示例

發布時間:2020-09-07 13:11:44 來源:腳本之家 閱讀:321 作者:xxiaowen 欄目:移動開發

本文實例講述了Android列表控件Spinner簡單用法。分享給大家供大家參考,具體如下:

Android的Spinner控件用來顯示列表項,類似于一組單選框RadioButton。這里介紹一下其簡單用法:

xml布局:

<?xml version="1.0" encoding="utf-8"?>
<LinaerLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
   >
<Spinner
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:entries="@strings/books"
    android:prompt="@string/tip"
    />
<Spinner
    android:id="@+id/spinner"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:prompt="@string/tip"
    />
</LinaerLayout>

java代碼部分:

package com.example.test06;
import android.R;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.ArrayAdapter;
import android.widget.Spinner;
public class MainActivity extends Activity {
   Spinner spinner;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    spinner=(Spinner)findViewById(R.id.spinner);
    String[] arr={"孫悟空","豬八戒","唐僧"};
    ArrayAdapter<String> adapter=new ArrayAdapter<String>(this,android.R.layout.simple_list_item_multiple_choice,arr);
    spinner.setAdapter(adapter);
  }
  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
  }
}

更多關于Android相關內容感興趣的讀者可查看本站專題:《Android開發入門與進階教程》、《Android調試技巧與常見問題解決方法匯總》、《Android基本組件用法總結》、《Android視圖View技巧總結》、《Android布局layout技巧總結》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

锡林郭勒盟| 双城市| 宜宾县| 黔江区| 崇明县| 财经| 宣武区| 台南市| 河北省| 肃北| 买车| 陆丰市| 福建省| 梁河县| 滨州市| 红河县| 文成县| 赤壁市| 永年县| 休宁县| 大埔县| 延长县| 彩票| 栾川县| 波密县| 福海县| 石楼县| 土默特左旗| 三亚市| 阿克| 刚察县| 务川| 呈贡县| 安宁市| 西丰县| 阿拉善盟| 玉龙| 东明县| 海晏县| 长岛县| 灵台县|