【移動應(yīng)用開發(fā)技術(shù)】怎么在Android中使用 Spinner控件實(shí)現(xiàn)一個下拉框功能_第1頁
【移動應(yīng)用開發(fā)技術(shù)】怎么在Android中使用 Spinner控件實(shí)現(xiàn)一個下拉框功能_第2頁
【移動應(yīng)用開發(fā)技術(shù)】怎么在Android中使用 Spinner控件實(shí)現(xiàn)一個下拉框功能_第3頁
【移動應(yīng)用開發(fā)技術(shù)】怎么在Android中使用 Spinner控件實(shí)現(xiàn)一個下拉框功能_第4頁
【移動應(yīng)用開發(fā)技術(shù)】怎么在Android中使用 Spinner控件實(shí)現(xiàn)一個下拉框功能_第5頁
免費(fèi)預(yù)覽已結(jié)束,剩余1頁可下載查看

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)

文檔簡介

【移動應(yīng)用開發(fā)技術(shù)】怎么在Android中使用Spinner控件實(shí)現(xiàn)一個下拉框功能

本篇文章給大家分享的是有關(guān)怎么在Android中使用Spinner控件實(shí)現(xiàn)一個下拉框功能,在下覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著在下一起來看看吧。Android是一種基于Linux內(nèi)核的自由及開放源代碼的操作系統(tǒng),主要使用于移動設(shè)備,如智能手機(jī)和平板電腦,由美國Google公司和開放手機(jī)聯(lián)盟領(lǐng)導(dǎo)及開發(fā)。Spinner是android的一種控件,用它我們可以實(shí)現(xiàn)下拉框。我們先來看一下效果圖這是一個很簡單的功能,上面一個TextView,下面一個Spinner,TextView用于顯示Spinner選擇的選項(xiàng)。下面我們就來看一下實(shí)現(xiàn)吧。首先,我們先在xml文件中將spinner寫出<?xml

version="1.0"

encoding="utf-8"?>

<LinearLayout

xmlns:android="/apk/res/android"

xmlns:app="/apk/res-auto"

xmlns:tools="/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical"

tools:context=".MainActivity">

<TextView

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:id="@+id/spinner_textview"/>

<Spinner

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:id="@+id/spinner1"></Spinner>

</LinearLayout>類似于ListView,Spinner也需要一個List和一個Adapter來為其提供顯示的數(shù)據(jù)。public

class

MainActivity

extends

AppCompatActivity

{

private

List<String>

teamList;

private

TextView

textView;

private

Spinner

spinner1;

private

ArrayAdapter<String>

arrayAdapter;

@Override

protected

void

onCreate(Bundle

savedInstanceState)

{

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

initView();

//設(shè)置下拉列表的風(fēng)格

arrayAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

//將adapter

添加到spinner中

spinner1.setAdapter(arrayAdapter);

//設(shè)置點(diǎn)擊事件

spinner1.setOnItemSelectedListener(new

AdapterView.OnItemSelectedListener()

{

@Override

public

void

onItemSelected(AdapterView<?>

adapterView,

View

view,

int

i,

long

l)

{

textView.setText(teamList.get(i));

}

@Override

public

void

onNothingSelected(AdapterView<?>

adapterView)

{

}

});

}

public

void

initView(){

teamList

=

new

ArrayList<>();

initList();

textView

=

findViewById(R.id.spinner_textview);

spinner1

=

findViewById(R.id.spinner1);

arrayAdapter

=

new

ArrayAdapter<String>(MainActivity.this,android.R.layout.simple_spinner_item,teamList);

}

public

void

initList(){

teamList.add("羅馬");

teamList.add("那不勒斯");

teamList.add("國際米蘭");

teamList.add("AC米蘭");

}

}源碼地址下面單獨(dú)看下Spinner的功能和用法Spinner其實(shí)是一個列表選擇框,不過Android的列表選擇框并不需要顯示下拉列表,而是相當(dāng)于彈出一個菜單供用戶選擇。Spinner與Gallery都繼承了AbsSpinner,AbsSpinner繼承了AdapterView,因此他也表現(xiàn)出AdapterView的特征:只要為AdapterView提供Adapter即可。android:entries屬性并不是Spinner定義的,而不是AbsSpinner中定義的,因此Gallery(繼承了AbsSpinner)也支持該XML屬性。如果開發(fā)者使用Spinner時已經(jīng)可以確定列表選擇框里的列表項(xiàng),則完全不需要編寫代碼,只要為Spinner指定android:entries屬性即可讓Spinner正常工作;如果程序需要在程序運(yùn)行時動態(tài)決定Spinner的列表項(xiàng),或者程序需要對Spinner的列表項(xiàng)進(jìn)行定制,則可使用Adapter提供列表項(xiàng)。如下界面布局文件中定義了兩個Spinner組件,其中一個Spinner組件指定了android:entries屬性,因此需要在Activity中為他設(shè)置Adapter。<LinearLayout

xmlns:android="/apk/res/android"

xmlns:tools="/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical">

<!--定義一個Spinner組件,指定顯示該Spinner組件的數(shù)組-->

<Spinner

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:entries="@array/books"

android:popupBackground="#66ccff"

android:dropDownWidth="230dp"

></Spinner>

<Spinner

android:id="@+id/spinner"

android:layout_width="match_parent"

android:layout_height="wrap_content"

></Spinner>

</LinearLayout>

public

class

MainActivity

extends

AppCompatActivity

{

Spinner

spinner;

@Override

protected

void

onCreate(Bundle

savedInstanceState)

{

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

//獲取界面布局文件的Spinner組件

spinner=

(Spinner)

findViewById(R.id.spinner);

String[]

arr={"孫悟空"

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

最新文檔

評論

0/150

提交評論