這篇文章主要講解了“Android下拉列表框Spinner怎么使用”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Android下拉列表框Spinner怎么使用”吧!
成都創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供太和網(wǎng)站建設(shè)、太和做網(wǎng)站、太和網(wǎng)站設(shè)計、太和網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、太和企業(yè)網(wǎng)站模板建站服務(wù),十年太和做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。文件目錄如下:
在activity_main.xml中布局一個下拉列表框Spinner
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.administrator.myapplication.MainActivity"> <Spinner android:id="@+id/spinner" android:layout_width="wrap_content" android:layout_height="wrap_content"/> </LinearLayout>
接著在layout文件夾下創(chuàng)建spinner_item.xml文件,放置的是下拉列表框中的控件,這里只顯示文本,所以代碼如下:
<?xml version="1.0" encoding="utf-8"?> <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/tvCateItem" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="34px" />
接著就是在MainActivity.java中進(jìn)行調(diào)用,設(shè)置數(shù)據(jù)
package com.example.administrator.myapplication; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.Spinner; import android.widget.Toast; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // 獲取控件 Spinner spinner = (Spinner) findViewById(R.id.spinner); // 要添加到下拉列表框中的數(shù)據(jù) String[] array = new String[]{"唐僧", "孫悟空", "豬八戒", "沙僧", "小白龍"}; // 創(chuàng)建適配器 final ArrayAdapter<String> dataAdapter = new ArrayAdapter<String>(MainActivity.this, R.layout.spinner_item, array); dataAdapter.setDropDownViewResource(R.layout.spinner_item); // 為下拉列表框設(shè)置適配器 spinner.setAdapter(dataAdapter); // spinner的選項被選中的監(jiān)聽事件 spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() { @Override public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { String value = dataAdapter.getItem(position).toString();// 獲取被選中的下拉列表框項的值 Toast.makeText(MainActivity.this, "你選中了:" + value, Toast.LENGTH_SHORT).show(); } @Override public void onNothingSelected(AdapterView<?> parent) { // 沒有任何被選中的處理事件 } }); } }
初始化數(shù)據(jù)完成的spinner如下:
選中某一項的spinner如下:
感謝各位的閱讀,以上就是“Android下拉列表框Spinner怎么使用”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Android下拉列表框Spinner怎么使用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!
當(dāng)前標(biāo)題:Android下拉列表框Spinner怎么使用-創(chuàng)新互聯(lián)
標(biāo)題URL:http://aaarwkj.com/article40/deoheo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、電子商務(wù)、做網(wǎng)站、商城網(wǎng)站、網(wǎng)站營銷、微信公眾號
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容