Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android技術基礎 >> 第21章、OnItemSelectedListener事件(從零開始學Android)

第21章、OnItemSelectedListener事件(從零開始學Android)

編輯:Android技術基礎

在Android App應用中,OnItemSelectedListener事件也會經常用到,我們一起來了解一下。

  基本知識點:OnItemSelectedListener事件

 

一、界面

   1、新建province.xml件。

  在“res/values”位置新建province.xml文件。

  (1)province.xml文件位置如下圖所示:

  \

  (2)province.xml內容如下:  

  \

  (3)代碼  

[html] view plain copy  
  1.  adapter,View view,int position,long id) {  
  2.             //獲取選擇的項的值  
  3.             String sInfo=adapter.getItemAtPosition(position).toString();  
  4.             Toast.makeText(getApplicationContext(), sInfo, Toast.LENGTH_LONG).show();             
  5.         }  
  6.   
  7.         @Override  
  8.         public void onNothingSelected(AdapterView arg0) {  
  9.             String sInfo="什麼也沒選!";  
  10.             Toast.makeText(getApplicationContext(),sInfo, Toast.LENGTH_LONG).show();  
  11.               
  12.         }  
  13.     }  
  14. }  


 

  2、最終效果如下:

  \

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved