編輯:關於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程序設計有所幫助。
Palette非常好用,也非常好玩。 Palette的作用是從圖像中提取突出的顏色,這樣我們可以根據提取到的色值把它賦給Toolbar,標題,狀態欄等,可以使我們的整個界
前言:Android提供了一些方便使用的組件:TextView等,但是很多時候,默認的組件不能滿足需要,因此,必需掌握“自定義組件”的能力。對於程
老早用過小紅書app,對於他們客戶端筆記這塊的設計非常喜歡,恰好去年在小紅書的競爭對手公司,公司基於產品的考慮和產品的發展,也需要將app社交化,於是在社區分享這塊多多少
項目需要做了一個調節屏幕的工具類/* * Android調節屏幕亮度工具類 * by itas109 * http://blog.csdn.net