Android UI:ListView - SimpleAdapter實例詳解
更新時間:2016年11月26日 16:58:03 投稿:lqh
這篇文章主要介紹了Android UI:ListView - SimpleAdapter實例詳解,SimpleAdapter是擴展性最好的適配器,可以定義各種你想要的布局,而且使用很方便,需要的朋友可以參考下
Android UI:ListView -- SimpleAdapter
SimpleAdapter是擴展性最好的適配器,可以定義各種你想要的布局,而且使用很方便。
layout :
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <ListView android:layout_width="match_parent" android:layout_height="wrap_content" android:divider="#7f00" //分割線 android:dividerHeight="2dp" android:id="@+id/listview_sample"/> </LinearLayout>
header layout:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:src="@mipmap/ic_launcher"/> </LinearLayout>
自定義布局 item:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="3px" android:id="@+id/img"/> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:textSize="16sp" android:id="@+id/title"/> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/info" android:textSize="16sp"/> </LinearLayout> </LinearLayout>
Java 代碼:
public class SampleAdapterActivity extends Activity { private ListView mListview; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.sampleadapter_layout); mListview = (ListView) findViewById(R.id.listview_sample); SimpleAdapter adapter = new SimpleAdapter(this, getData(), //數據來源 R.layout.item_listview, //對應item view new String[]{"img","title","info"}, //data 中對應值 new int[]{R.id.img,R.id.title,R.id.info}); //填充layout位置 mListview.setHeaderDividersEnabled(true); //是否顯示頭view 的分割線 View header = View.inflate(this,R.layout.listview_header,null); View footer = View.inflate(this,R.layout.listview_header,null); mListview.addHeaderView(header); //添加頭部view mListview.addFooterView(footer); //添加底部view mListview.setAdapter(adapter); } @Override protected void onResume() { super.onResume(); } private List<? extends Map<String,?>> getData() { List<Map<String,Object>> items = new ArrayList<Map<String, Object>>(); for (int i = 0; i < 5; i++) { Map<String,Object> item = new HashMap<String,Object>(); item.put("img",R.mipmap.ic_launcher); item.put("title","title -- " + i ); item.put("info","info -- " + i ); items.add(item); } return items; } }
顯示效果
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
您可能感興趣的文章:
- Android自定義Adapter的ListView的思路及代碼
- android開發(fā)中ListView與Adapter使用要點介紹
- Android listview與adapter詳解及實例代碼
- Android開發(fā)中ListView自定義adapter的封裝
- Android ListView適配器(Adapter)優(yōu)化方法詳解
- Android Adapter里面嵌套ListView實例詳解
- Android ListView自定義Adapter實現仿QQ界面
- Android ListView和Adapter數據適配器的簡單介紹
- Android開發(fā)實現ListView和adapter配合顯示圖片和文字列表功能示例
相關文章
Android程序開發(fā)通過HttpURLConnection上傳文件到服務器
這篇文章主要介紹了Android程序開發(fā)通過HttpURLConnection上傳文件到服務器的相關資料,需要的朋友可以參考下2016-01-01AndroidStudio報錯Emulator:PANIC:Cannot find AVD system path. P
這篇文章主要介紹了AndroidStudio報錯Emulator:PANIC:Cannot find AVD system path. Please define ANDROID_SDK_ROOT完整的解決方案2021-08-08Android最簡單的限制輸入方法(只包含數字、字母和符號)
這篇文章主要給大家介紹了關于Android最簡單的限制輸入的實現方法,限制輸入框只能輸入數字、字母和符號,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面來一起看看 吧2018-11-11Android動畫之補間動畫(Tween Animation)基礎學習
補間動畫是指定開始和結束的圖像狀態(tài),自動生成需要顯示的過度圖像的動畫。補間動畫又分為四種:移動,縮放,旋轉,通明度等。下面就來給大家一篇關于Android中補間動畫的基礎知識,有需要的可以參考學習。2016-09-09