最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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(), //數(shù)據(jù)來源
        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實用的代碼片段 常用代碼總結

    Android實用的代碼片段 常用代碼總結

    這篇文章主要介紹了Android實用的代碼片段 常用代碼總結,需要的朋友可以參考下
    2014-09-09
  • Android實現(xiàn)數(shù)據(jù)按照時間排序

    Android實現(xiàn)數(shù)據(jù)按照時間排序

    這篇文章主要為大家詳細介紹了Android實現(xiàn)數(shù)據(jù)按照時間排序的方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-09-09
  • Android利用Espresso進行UI自動化測試的方法詳解

    Android利用Espresso進行UI自動化測試的方法詳解

    因為我是搞android開發(fā)的,所以被分到了自動化測試小組,所以了解了一些UI自動化測試。下面這篇文章主要給大家介紹了關于Android利用Espresso進行UI自動化測試的相關資料,需要的朋友可以參考借鑒,下面來一起看看吧。
    2017-12-12
  • Android開發(fā)學習實現(xiàn)簡單計算器

    Android開發(fā)學習實現(xiàn)簡單計算器

    這篇文章主要為大家詳細介紹了Android實現(xiàn)一個簡單計算器,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2020-04-04
  • Android 實現(xiàn)自己的LOG信息

    Android 實現(xiàn)自己的LOG信息

    本文主要講解Android LOG,這里對如何創(chuàng)建自己的Android LOG信息做了詳細的介紹,并附簡單代碼示例,有需要的小伙伴可以參考下
    2016-08-08
  • Android自定義加載框效果

    Android自定義加載框效果

    這篇文章主要為大家詳細介紹了Android自定義加載框效果,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2021-08-08
  • Android實現(xiàn)邊錄邊播功能

    Android實現(xiàn)邊錄邊播功能

    這篇文章主要為大家詳細介紹了Android實現(xiàn)邊錄邊播功能,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2021-11-11
  • Android自定義View實現(xiàn)隨機數(shù)驗證碼

    Android自定義View實現(xiàn)隨機數(shù)驗證碼

    這篇文章主要為大家詳細介紹了Android如何利用自定義View實現(xiàn)隨機數(shù)驗證碼效果,文中的示例代碼講解詳細,感興趣的小伙伴可以了解一下
    2022-06-06
  • Android 安全加密:消息摘要Message Digest詳解

    Android 安全加密:消息摘要Message Digest詳解

    本文主要介紹Android安全加密消息摘要Message Digest,這里整理了詳細的資料,并說明如何使用Message Digest 和使用注意事項,有需要的小伙伴可以參考下
    2016-09-09
  • Android開發(fā)中Listview動態(tài)加載數(shù)據(jù)的方法示例

    Android開發(fā)中Listview動態(tài)加載數(shù)據(jù)的方法示例

    這篇文章主要介紹了Android開發(fā)中Listview動態(tài)加載數(shù)據(jù)的方法,結合實例形式較為詳細的分析了Android操作ListView界面布局與數(shù)據(jù)動態(tài)更新相關操作技巧,需要的朋友可以參考下
    2017-10-10

最新評論

龙州县| 富源县| 普兰县| 崇州市| 奉新县| 临沂市| 包头市| 江安县| 黄陵县| 灌云县| 石首市| 北流市| 余干县| 慈利县| 屯门区| 西贡区| 鄂温| 洮南市| 霞浦县| 阳朔县| 万宁市| 高要市| 宜章县| 灌云县| 易门县| 长岛县| 孝义市| 三穗县| 鹿邑县| 榆树市| 南和县| 剑川县| 磐石市| 洪雅县| 安平县| 图木舒克市| 横山县| 武汉市| 台山市| 左权县| 浏阳市|