android adapter例子,Android中BaseAdapter用法示例

本文详细介绍了Android中BaseAdapter的用法,它作为数据适配器用于ListView、Spinner等组件,将数据绑定到UI。文章提供了一个实例,包括RecentAdapter的实现,展示了如何设置View、更新数据及处理数据改变。还给出了XML布局文件app_info_item.xml的部分代码,帮助理解数据展示的结构。
摘要由CSDN通过智能技术生成

本文实例讲述了Android中BaseAdapter用法。分享给大家供大家参考,具体如下:

概述:

BaseAdapter就Android应用程序中经常用到的基础数据适配器,它的主要用途是将一组数据传到像ListView、Spinner、Gallery及GridView等UI显示组件,它是继承自接口类Adapter

BaseAdapter

Java代码:

public class RecentAdapter extends BaseAdapter {

private class RecentViewHolder {

TextView appName;

ImageView appIcon;

TextView appSize;

}

private List mAppList;

private LayoutInflater mInflater;

private PackageManager pm;

public RecentAdapter(Context c, List appList,

PackageManager pm) {

mAppList = appList;

this.pm = pm;

mInflater = (LayoutInflater) c

.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

}

public void clear(){

if(mAppList!=null){

mAppList.clear();

}

}

public int getCount() {

return mAppList.size();

}

@Override

public Object getItem(int position) {

return mAppList.get(position);

}

@Override

public long getItemId(int position) {

// TODO Auto-generated method stub

return position;

}

public View getView(int position, View convertView, ViewGroup parent) {

RecentViewHolder holder;

if (convertView == null) {

convertView = mInflater.inflate(R.layout.app_info_item, null);

holder = new RecentViewHolder();

holder.appName = (TextView) convertView.findViewById(R.id.app_name);

holder.appIcon = (ImageView) convertView

.findViewById(R.id.app_icon);

holder.appSize = (TextView) convertView.findViewById(R.id.app_size);

convertView.setTag(holder);

} else {

holder = (RecentViewHolder) convertView.getTag();

}

ResolveInfo appInfo = mAppList.get(position);

if (appInfo != null) {

String labelName = appInfo.loadLabel(pm).toString();

if (labelName != null) {

holder.appName.setText(labelName);

}

Drawable icon = appInfo.loadIcon(pm);

if (icon != null) {

holder.appIcon.setImageDrawable(icon);

}

}

return convertView;

}

public void remove(int position){

mAppList.remove(position);

this.notifyDataSetChanged();

}

}

其中两个注意点为:

setTag 用View设置存储数据

notifyDataSetChanged() 告诉View数据更改并刷新

View convertView = mInflater.inflate(R.layout.app_info_item, null)  加载XML Item 视图

app_info_item.xml文件示例:

xml代码:

android:layout_width="fill_parent" android:layout_height="wrap_content"

android:layout_gravity="center_vertical" android:minHeight="?android:attr/listPreferredItemHeight">

android:layout_height="@android:dimen/app_icon_size"

android:layout_alignParentLeft="true" android:paddingLeft="6dip"

android:paddingTop="6dip" android:paddingBottom="6dip"

android:scaleType="fitCenter" />

android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceLarge"

android:textColor="?android:attr/textColorPrimary"

android:layout_toRightOf="@id/app_icon" android:paddingLeft="6dip"

android:paddingTop="6dip" />

android:layout_width="wrap_content" android:layout_height="wrap_content"

android:textAppearance="?android:attr/textAppearanceSmall"

android:layout_below="@+id/app_name" android:layout_toRightOf="@id/app_icon"

android:paddingLeft="6dip" android:paddingBottom="6dip" />

android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceSmall"

android:layout_alignParentRight="true" android:layout_below="@+id/app_name"

android:paddingRight="6dip" android:maxLines="1" />

希望本文所述对大家Android程序设计有所帮助。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值