我正在尝试使用以下结构制作列表视图:
Listview
-> child
-> child
-> group
-> child
-> child
-> child
我将如何实现这一目标?
我是否必须让小组像孩子一样行事,或者是否可以这样做:
我有一个对象MenuRow
public class MenuRow {
public String title;
public MenuRow(String title) {
this.title = title;
}
}
然后我有MenuGroup和MenuChild扩展MenuRow,这允许我执行以下操作:
ArrayList<MenuRow> menu = new ArrayList<MenuRow>();
menu.add(new MenuChild("row 1"));
menu.add(new MenuChild("row 2"));
MenuGroup group = new MenuGroup("group");
MenuChild groupChild = new MenuChild("group child");
group.items.add(groupChild);
menu.add(group);
我似乎无法想象我应该如何在适配器中实现我的商业。
@Override
public Object getChild(int groupPosition, int childPosition) {
MenuRow row = menu.get(groupPosition);
if (row instanceof MenuGroup) {
ArrayList<MenuChild> chList = ((MenuGroup) row).getItems();
}
else{
return null;
}
return chList;
}
例如,这种方法并没有真正适应我的解决方案。我该如何努力实现目标?我需要使用不同的适配器吗? (我目前的一个扩展BaseExpandableListAdapter)
答案 0 :(得分:1)
我已经处理过这样的问题,这是我使用的方法:
创建了一个类对象,用作子视图和父视图的左侧菜单项
public class LeftMenuItem {
int mTextId;
int mImageId;
//Action to be taken after clicking on the item
String mAction;
public LeftMenuItem(int textId, int imageId,String action) {
this.mTextId = textId;
this.mImageId = imageId;
this.mAction = action;
}
public int getTextId() {
return mTextId;
}
public void setTextId(int textId) {
this.mTextId = textId;
}
public int getImageId() {
return mImageId;
}
public void setImageId(int imageId) {
this.mImageId = imageId;
}
public String getAction() {
return mAction;
}
public void setAction(String action) {
this.mAction = action;
}
}
并创建了我的可扩展列表项,其中包含leftmenuitem父项和子项的arraylist(如果找到)
public class ExpandableLeftMenuItem {
LeftMenuItem mParentItem;
ArrayList<LeftMenuItem> mChildItems;
public ExpandableLeftMenuItem(LeftMenuItem parentItem,
ArrayList<LeftMenuItem> childItems) {
this.mParentItem = parentItem;
this.mChildItems = childItems;
}
public LeftMenuItem getParentItem() {
return mParentItem;
}
public void setParentItem(LeftMenuItem parentItem) {
this.mParentItem = parentItem;
}
public ArrayList<LeftMenuItem> getChildItems() {
return mChildItems;
}
public void setChildItems(ArrayList<LeftMenuItem> childItems) {
this.mChildItems = childItems;
}
}
然后我处理了ExpandableListView
onChildClickListener和onGroupClickListener,如下所示
// In Case of clicking on an item that has children, then get the action
// of this child item and show the screen with this action
mLeftMenu.setOnChildClickListener(new OnChildClickListener() {
@Override
public boolean onChildClick(ExpandableListView parent, View view, int groupPosition, int childPosition, long id) {
if (!mLeftMenuItems.get(groupPosition).getChildItems().isEmpty()) {
String action = ((LeftMenuItem) mLeftMenuItems.get(groupPosition).getChildItems().get(childPosition)).getAction();
setSelectedSection(action);
handleLeftMenuClick(action);
return true;
}
return false;
}
});
// In Case of clicking on an item that has no children, then get the
// action of this item and show the screen with this action
mLeftMenu.setOnGroupClickListener(new OnGroupClickListener() {
@Override
public boolean onGroupClick(ExpandableListView parent, View view, int groupPosition, long id) {
if (mLeftMenuItems.get(groupPosition).getChildItems().isEmpty()) {
String action = ((LeftMenuItem) mLeftMenuItems.get(groupPosition).getParentItem()).getAction();
setSelectedSection(action);
handleLeftMenuClick(action);
// Return true to stop parent from expanding or collapsing group
return true;
}
// Return true to handle click as parent by expanding or collapsing group
return false;
}
});
然后是以下
ExpandableListView:
group
group
group
child
child
group
child
child
您将创建以下菜单项:
ArrayList<ExpandableLeftMenuItem> mMenuItems = new ArrayList<ExpandableLeftMenuItem>();
mMenuItems.add(new ExpandableLeftMenuItem(new LeftMenuItem(parent1Text,parent1Image,action1),new ArrayList<LeftMenuItem>()));
mMenuItems.add(new ExpandableLeftMenuItem(new LeftMenuItem(parent2Text,parent2Image,action2),new ArrayList<LeftMenuItem>()));
ArrayList<LeftMenuItem> parent3Children = new ArrayList<LeftMenuItem>();
parent3Children.add(new LeftMenuItem(parent3Child1TextId,parent3Child1ImageId,parent3Child1action));
parent3Children.add(new LeftMenuItem(parent3Child2TextId,parent3Child2ImageId,parent3Child2action));
mMenuItems.add(new ExpandableLeftMenuItem(new LeftMenuItem(parent1Text,parent1Image,action1),parent3Children ));
这样,您已经处理了子女和小组职位以采取不同的行动。
我希望这会有所帮助。