android ui adapter,Android UI:ListView - SimpleAdapter实例详解

Android UI:ListView -- SimpleAdapter

SimpleAdapter是扩展性最好的适配器,可以定义各种你想要的布局,而且使用很方便。

layout :

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="horizontal">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:divider="#7f00"    //分割线

android:dividerHeight="2dp"

android:id="@+id/listview_sample"/>

header layout:

android:orientation="vertical" android:layout_width="match_parent"

android:layout_height="match_parent">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:src="@mipmap/ic_launcher"/>

自定义布局  item:

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="horizontal">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_margin="3px"

android:id="@+id/img"/>

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="vertical">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:textSize="16sp"

android:id="@+id/title"/>

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:id="@+id/info"

android:textSize="16sp"/>

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> getData() {

List> items = new ArrayList>();

for (int i = 0; i < 5; i++) {

Map item = new HashMap();

item.put("img",R.mipmap.ic_launcher);

item.put("title","title -- " + i );

item.put("info","info -- " + i );

items.add(item);

}

return items;

}

}

显示效果

c0c802762d04a6bff5187792c245050f.png

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值