設置ListView加載中,空數據,加載數據失敗三種狀態的顯示

jopen 10年前發布 | 56K 次閱讀 ListView Android開發 移動開發

設置listview加載中,空數據,加載數據失敗三種狀態的顯示。

A library for showing different types of layouts when a list view is empty. These layouts can be shown when,

  • the list is loading
  • the list has no item to display
  • an error occured trying to load items

Loading animation is also supported.

Screenshots

設置ListView加載中,空數據,加載數據失敗三種狀態的顯示設置ListView加載中,空數據,加載數據失敗三種狀態的顯示設置ListView加載中,空數據,加載數據失敗三種狀態的顯示設置ListView加載中,空數據,加載數據失敗三種狀態的顯示

Usage

  1. Import the library project into your workspace.
  2. Use the imported project as a library for your project.
  3. In the onCreate event of your activity use the following code.

    mListAdapter.clear(); EmptyLayout emptyLayout = new EmptyLayout(this, getListView()); 
  4. When you want to show the loading animation, use this code.

    mListAdapter.clear(); emptyLayout.showLoading(); 
  5. When you want to show any error, use this code.

    mListAdapter.clear(); emptyLayout.showError(); 
  6. When your list doesn't have any item to show, use this code.

    mListAdapter.clear(); emptyLayout.showEmpty(); 

    Thats all you have to do to use this library. You may want to customize its behavior though.

P.S. Make sure you always clear the list adapter before calling showEmpty, showLoading and showError. The list have to empty after all.

Customization

There are bunch of methods to let you customize this pattern. Use the methods like this.

emptyLayout.setLoadingMessage("Please wait..."); 

Some useful methods are given below

  • showEmpty
  • showLoading
  • showError
  • setLoadingView
  • setEmptyView
  • setErrorView
  • setLoadingAnimation
  • setErrorMessage
  • setLoadingMessage
  • setEmptyMessage
  • setEmptyViewButtonClickListener
  • setLoadingViewButtonClickListener
  • setErrorViewButtonClickListener
  • setShowEmptyButton
  • setShowLoadingButton
  • setShowErrorButton

and there is more...

項目主頁:http://www.baiduhome.net/lib/view/home/1409300611932

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!