Android中BaseAdapter用法示例_Android

本文实例讲述了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<ResolveInfo> mAppList;
  private LayoutInflater mInflater;
  private PackageManager pm;
  public RecentAdapter(Context c, List<ResolveInfo> 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代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent" android:layout_height="wrap_content"
  android:layout_gravity="center_vertical" android:minHeight="?android:attr/listPreferredItemHeight">
  <ImageView android:id="@+id/app_icon" android:layout_width="@android:dimen/app_icon_size"
    android:layout_height="@android:dimen/app_icon_size"
    android:layout_alignParentLeft="true" android:paddingLeft="6dip"
    android:paddingTop="6dip" android:paddingBottom="6dip"
    android:scaleType="fitCenter" />
  <TextView android:id="@+id/app_name" android:layout_width="wrap_content"
    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" />
  <TextView android:id="@+id/app_description"
    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" />
  <TextView android:id="@+id/app_size" android:layout_width="wrap_content"
    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" />
</RelativeLayout>

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android控件用法总结》、《Android视图View技巧总结》、《Android操作SQLite数据库技巧总结》、《Android操作json格式数据技巧总结》、《Android数据库操作技巧总结》、《Android文件操作技巧汇总》、《Android编程开发之SD卡操作方法汇总》、《Android开发入门与进阶教程》及《Android资源操作技巧汇总》

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

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索android
baseadapter
baseadapter的用法、baseadapter用法、android baseadapter、android中baseadapter、android的baseadapter,以便于您获取更多的相关知识。

时间: 2024-09-23 03:48:54

Android中BaseAdapter用法示例_Android的相关文章

Android中BaseAdapter用法示例

本文实例讲述了Android中BaseAdapter用法.分享给大家供大家参考,具体如下: 概述: BaseAdapter就Android应用程序中经常用到的基础数据适配器,它的主要用途是将一组数据传到像ListView.Spinner.Gallery及GridView等UI显示组件,它是继承自接口类Adapter BaseAdapter Java代码: public class RecentAdapter extends BaseAdapter { private class RecentVi

Android中TelephonyManager用法实例_Android

本文实例讲述了Android中TelephonyManager用法.分享给大家供大家参考,具体如下: 一.概述: TelephonyManager类主要提供了一系列用于访问与手机通讯相关的状态和信息的get方法.其中包括手机SIM的状态和信息.电信网络的状态及手机用户的信息.在应用程序中可以使用这些get方法获取相关数据. TelephonyManager类的对象可以通过Context.getSystemService(Context.TELEPHONY_SERVICE)方法来获得,需要注意的是

Android中OptionMenu用法实例_Android

本文实例讲述了Android中OptionMenu用法.分享给大家供大家参考.具体如下: 1.无需设置布局文件 2.创建一个类,基础Activity 3.重写onOptionsItemSelected方法,在这个方法里面添加菜单项 4.如果需要给菜单项添加单击事件,需要重写onOptionsItemSelected方法 MenuDemoActivity.java如下: package com.yyl; import Android.app.Activity; import Android.os.

Android AlertDialog对话框用法示例_Android

本文实例讲述了Android AlertDialog对话框用法.分享给大家供大家参考,具体如下: AlertDialog对话框的介绍 1.获得AlertDialog静态内部类Buidler对象,由该类来创建AlertDialog对象,因为AlertDialog的构造方法全部是Protected类型 2.通过Buidler对象设置对话框的标题.按钮以及按钮要响应的事件DialogInterface.OnClickListener 3.调用Buidler的create()方法创建对话框 4.调用Al

Android中BaseAdapter的用法分析与理解

本文实例分析了Android中BaseAdapter的用法.分享给大家供大家参考,具体如下: 最近做一个项目,项目中用到了ListView,ListView最重要的就是绑定数据,这个数据由Adapter来提供,这里我重写了BaseAdapter这个类来实现自己的menuAdapter代码如下: package org.leepood.lanorder; import java.io.InputStream; import java.util.ArrayList; import java.util

Android中AlertDialog用法实例分析_Android

本文实例分析了Android中AlertDialog用法,分享给大家供大家参考,具体如下: Android中AlertDialog为一些程序提供了对话框,有些功能能够进一步满足程序的需要.下面举例介绍. 程序如下: import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.os.Bundle; import android.

Android中SurfaceView用法简单实例_Android

本文实例讲述了Android中SurfaceView用法.分享给大家供大家参考,具体如下: 这里贴上一个小程序代码,主要运用SurfaceView来实现在屏幕上画一个圆,你可以通过按方向键和触摸屏幕来改变圆的位置 代码: Activity: package com.view; import android.app.Activity; import android.os.Bundle; import android.view.Window; import android.view.WindowMa

Android中Notification用法实例总结_Android

本文实例总结了 Android中Notification用法.分享给大家供大家参考,具体如下: 我们在用手机的时候,如果来了短信,而我们没有点击查看的话,是不是在手机的最上边的状态栏里有一个短信的小图标提示啊?你是不是也想实现这种功能呢?今天的Notification就是解决这个问题的. 我们也知道Android系统也是在不断升级的,有关Notification的用法也就有很多种,有的方法已经被android抛弃了,现在我实现了三种不同的方法,并适应不同的android版本.现在我就把代码公布出

android中Bitmap用法(显示,保存,缩放,旋转)实例分析_Android

本文实例讲述了android中Bitmap用法.分享给大家供大家参考.具体如下: 在Android SDK中可以支持的图片格式如下:png , jpg , gif和bmp. 1.Bitmap的创建 借助于BitmapFactory. 1)资源中的图片 使用BitmapFactory获取位图 复制代码 代码如下: Bitmap bmp = BitmapFactory.decodeResource(this.getResources(), R.drawable.testImg); 或者是: Reso