Methods Summary |
---|
public boolean | areAllItemsEnabled()
return true;
|
public android.view.View | getDropDownView(int position, android.view.View convertView, android.view.ViewGroup parent)
return getView(position, convertView, parent);
|
public int | getItemViewType(int position)
return 0;
|
public int | getViewTypeCount()
return 1;
|
public boolean | hasStableIds()
return false;
|
public boolean | isEmpty()
return getCount() == 0;
|
public boolean | isEnabled(int position)
return true;
|
public void | notifyDataSetChanged()Notifies the attached observers that the underlying data has been changed
and any View reflecting the data set should refresh itself.
mDataSetObservable.notifyChanged();
|
public void | notifyDataSetInvalidated()Notifies the attached observers that the underlying data is no longer valid
or available. Once invoked this adapter is no longer valid and should
not report further data set changes.
mDataSetObservable.notifyInvalidated();
|
public void | registerDataSetObserver(android.database.DataSetObserver observer)
mDataSetObservable.registerObserver(observer);
|
public void | unregisterDataSetObserver(android.database.DataSetObserver observer)
mDataSetObservable.unregisterObserver(observer);
|