use of android.widget.BaseExpandableListAdapter in project WordPress-Android by wordpress-mobile.
the class StatsTagsAndCategoriesFragment method updateUI.
@Override
protected void updateUI() {
if (!isAdded()) {
return;
}
if (hasTags()) {
BaseExpandableListAdapter adapter = new MyExpandableListAdapter(getActivity(), getTags());
StatsUIHelper.reloadGroupViews(getActivity(), adapter, mGroupIdToExpandedMap, mList, getMaxNumberOfItemsToShowInList());
showHideNoResultsUI(false);
} else {
showHideNoResultsUI(true);
}
}
use of android.widget.BaseExpandableListAdapter in project androidquery by androidquery.
the class ImageLoadingExpandableListActivity method renderPhotos.
public void renderPhotos(String url, XmlDom xml, AjaxStatus status) {
if (xml == null)
return;
List<Photo> entries = convertAll(xml);
group1 = entries.subList(0, entries.size() / 2);
group2 = entries.subList(entries.size() / 2, entries.size() - 1);
listAq = new AQuery(this);
BaseExpandableListAdapter aa = new BaseExpandableListAdapter() {
@Override
public Object getChild(int groupPosition, int childPosition) {
if (groupPosition == 0) {
return group1.get(childPosition);
}
return group2.get(childPosition);
}
@Override
public long getChildId(int groupPosition, int childPosition) {
return childPosition;
}
@Override
public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
if (convertView == null) {
convertView = getLayoutInflater().inflate(R.layout.content_item_s, parent, false);
}
Photo photo = (Photo) getChild(groupPosition, childPosition);
AQuery aq = listAq.recycle(convertView);
aq.id(R.id.name).text(photo.title);
String tbUrl = photo.tb;
if (!aq.shouldDelay(groupPosition, childPosition, isLastChild, convertView, parent, tbUrl)) {
aq.id(R.id.tb).image(tbUrl, true, true, 0, 0, null, 0, 1);
aq.id(R.id.name).text(photo.title);
} else {
aq.id(R.id.tb).clear();
aq.id(R.id.text).text(photo.title);
}
return convertView;
}
@Override
public int getChildrenCount(int groupPosition) {
if (groupPosition == 0) {
return group1.size();
}
return group2.size();
}
@Override
public Object getGroup(int groupPosition) {
if (groupPosition == 0) {
return group1;
}
return group2;
}
@Override
public int getGroupCount() {
if (group1 != null) {
return 2;
}
return 0;
}
@Override
public long getGroupId(int groupPosition) {
return groupPosition;
}
@Override
public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
if (convertView == null) {
convertView = getLayoutInflater().inflate(R.layout.content_item_s, parent, false);
}
Photo photo = (Photo) getChild(groupPosition, 0);
AQuery aq = listAq.recycle(convertView);
aq.id(R.id.name).text(photo.title);
String tbUrl = photo.tb;
if (!aq.shouldDelay(groupPosition, isExpanded, convertView, parent, tbUrl)) {
aq.id(R.id.tb).image(tbUrl, true, true, 0, 0, null, 0, 1);
} else {
aq.id(R.id.tb).clear();
}
aq.id(R.id.name).text("Group " + groupPosition);
aq.id(R.id.meta).text("");
return convertView;
}
@Override
public boolean hasStableIds() {
return false;
}
@Override
public boolean isChildSelectable(int arg0, int arg1) {
return false;
}
};
aq.id(R.id.list).adapter(aa);
}
use of android.widget.BaseExpandableListAdapter in project devbricks by dailystudio.
the class AbsExpandableListAdapterFragment method onChildClick.
@Override
public boolean onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id) {
if (mOnListItemSelectedListener != null) {
final BaseExpandableListAdapter adapter = getAdapter();
if (adapter == null) {
return false;
}
Object data = adapter.getChild(groupPosition, childPosition);
mOnListItemSelectedListener.onListItemSelected(data);
return true;
}
return false;
}
Aggregations