Search in sources :

Example 6 with BaseExpandableListAdapter

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);
    }
}
Also used : BaseExpandableListAdapter(android.widget.BaseExpandableListAdapter)

Example 7 with BaseExpandableListAdapter

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);
}
Also used : AQuery(com.androidquery.AQuery) BaseExpandableListAdapter(android.widget.BaseExpandableListAdapter) ViewGroup(android.view.ViewGroup) Photo(com.androidquery.test.image.ImageLoadingList4Activity.Photo) View(android.view.View) AdapterView(android.widget.AdapterView) AbsListView(android.widget.AbsListView) ExpandableListView(android.widget.ExpandableListView)

Example 8 with BaseExpandableListAdapter

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;
}
Also used : BaseExpandableListAdapter(android.widget.BaseExpandableListAdapter)

Aggregations

BaseExpandableListAdapter (android.widget.BaseExpandableListAdapter)8 View (android.view.View)2 ViewGroup (android.view.ViewGroup)2 AdapterView (android.widget.AdapterView)2 ExpandableListView (android.widget.ExpandableListView)2 AbsListView (android.widget.AbsListView)1 ImageView (android.widget.ImageView)1 RelativeLayout (android.widget.RelativeLayout)1 TextView (android.widget.TextView)1 AQuery (com.androidquery.AQuery)1 Photo (com.androidquery.test.image.ImageLoadingList4Activity.Photo)1 ArrayList (java.util.ArrayList)1 List (java.util.List)1