Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android開發之listView組件用法實例簡析

android開發之listView組件用法實例簡析

編輯:關於Android編程

本文實例講述了android開發之listView組件用法。分享給大家供大家參考,具體如下:

關於Android ListView組件中android:drawSelectorOnTop含義

android:drawSelectorOnTop="true"  點擊某一條記錄,顏色會顯示在最上面,記錄上的文字被遮住,所以點擊文字不放,文字就看不到。

android:drawSelectorOnTop="false" 點擊某條記錄不放,顏色會在記錄的後面,成為背景色,但是記錄內容的文字是可見的

Read the docs of ListActivity.It says you should have a ListView with the id: android:id="@android:id/list".

ListView列表控件的快速滾動滑塊是如何啟用的 (android通訊錄中手動拖動滾動條滑動效果如何添加)?

在listView很多數據,但是加載的很慢,可以加入一個屬性來提高 復制代碼 代碼如下:android:fastScrollEnabled="true"

<ListView android:layout_height="fill_parent" 
    android:layout_width="fill_parent" 
    android:id="@+id/android:list" 
    android:fastScrollEnabled="true">
</ListView> 

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

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