Adapter 官方文档的解释~~~~~~~~~~~~~~~~~好好理解~

public interface

Adapter

android.widget.Adapter
Known Indirect Subclasses

Class Overview

An Adapter object acts as a bridge between an AdapterView and the underlying data for that view. The Adapter provides access to the data items. The Adapter is also responsible for making a View for each item in the data set.

Summary

Constants
intIGNORE_ITEM_VIEW_TYPEAn item view type that causes the AdapterView to ignore the item view.
intNO_SELECTION 
Public Methods
abstract int getCount()
How many items are in the data set represented by this Adapter.
abstract Object getItem(int position)
Get the data item associated with the specified position in the data set.
abstract long getItemId(int position)
Get the row id associated with the specified position in the list.
abstract int getItemViewType(int position)
Get the type of View that will be created by getView(int, View, ViewGroup) for the specified item.
abstract View getView(int position, View convertView, ViewGroup parent)
Get a View that displays the data at the specified position in the data set.
abstract int getViewTypeCount()

Returns the number of types of Views that will be created by getView(int, View, ViewGroup).

abstract boolean hasStableIds()
Indicated whether the item ids are stable across changes to the underlying data.
abstract boolean isEmpty()
abstract void registerDataSetObserver(DataSetObserver observer)
Register an observer that is called when changes happen to the data used by this adapter.
abstract void unregisterDataSetObserver(DataSetObserver observer)
Unregister an observer that has previously been registered with this adapter via registerDataSetObserver(DataSetObserver).

Constants

public static final int IGNORE_ITEM_VIEW_TYPE
Since: API Level 1

An item view type that causes the AdapterView to ignore the item view. For example, this can be used if the client does not want a particular view to be given for conversion in getView(int, View, ViewGroup).

Constant Value: -1 (0xffffffff)
public static final int NO_SELECTION
Since: API Level 1

 

Constant Value: -2147483648 (0x80000000)

Public Methods

public abstract int getCount ()
Since: API Level 1

How many items are in the data set represented by this Adapter.

Returns
  • Count of items.
public abstract Object getItem (int position)
Since: API Level 1

Get the data item associated with the specified position in the data set.

Parameters
position Position of the item whose data we want within the adapter's data set.
Returns
  • The data at the specified position.
public abstract long getItemId (int position)
Since: API Level 1

Get the row id associated with the specified position in the list.

Parameters
position The position of the item within the adapter's data set whose row id we want.
Returns
  • The id of the item at the specified position.
public abstract int getItemViewType (int position)
Since: API Level 1

Get the type of View that will be created by getView(int, View, ViewGroup) for the specified item.

Parameters
position The position of the item within the adapter's data set whose view type we want.
Returns
public abstract View getView (int position, View convertView, ViewGroup parent)
Since: API Level 1

Get a View that displays the data at the specified position in the data set. You can either create a View manually or inflate it from an XML layout file. When the View is inflated, the parent View (GridView, ListView...) will apply default layout parameters unless you use inflate(int, android.view.ViewGroup, boolean) to specify a root view and to prevent attachment to the root.

Parameters
position The position of the item within the adapter's data set of the item whose view we want.
convertView The old view to reuse, if possible. Note: You should check that this view is non-null and of an appropriate type before using. If it is not possible to convert this view to display the correct data, this method can create a new view.
parent The parent that this view will eventually be attached to
Returns
  • A View corresponding to the data at the specified position.
public abstract int getViewTypeCount ()
Since: API Level 1

 

Returns the number of types of Views that will be created by getView(int, View, ViewGroup). Each type represents a set of views that can be converted in getView(int, View, ViewGroup). If the adapter always returns the same type of View for all items, this method should return 1.

This method will only be called when when the adapter is set on the the AdapterView.

 

Returns
  • The number of types of Views that will be created by this adapter
public abstract boolean hasStableIds ()
Since: API Level 1

Indicated whether the item ids are stable across changes to the underlying data.

Returns
  • True if the same id always refers to the same object.
public abstract boolean isEmpty ()
Since: API Level 1

 

Returns
  • true if this adapter doesn't contain any data. This is used to determine whether the empty view should be displayed. A typical implementation will return getCount() == 0 but since getCount() includes the headers and footers, specialized adapters might want a different behavior.
public abstract void registerDataSetObserver (DataSetObserver observer)
Since: API Level 1

Register an observer that is called when changes happen to the data used by this adapter.

Parameters
observer the object that gets notified when the data set changes.
public abstract void unregisterDataSetObserver (DataSetObserver observer)
Since: API Level 1

Unregister an observer that has previously been registered with this adapter via registerDataSetObserver(DataSetObserver).

Parameters
observer the object to unregister.
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值