Android如何在点击expandablelistview时获取孩子的父母姓名
Posted
技术标签:
【中文标题】Android如何在点击expandablelistview时获取孩子的父母姓名【英文标题】:Android how to get parent name of a child on click of expandablelistview 【发布时间】:2021-08-06 05:38:58 【问题描述】:我创建了一个3-level ExpandableListView,如下所示
下面是我的代码
ThreeLevelListAdapter
public class ThreeLevelListAdapter extends BaseExpandableListAdapter
String[] parentHeaders;
List<String[]> secondLevel;
private Context context;
List<LinkedHashMap<String, String[]>> data;
/**
* Constructor
* @param context
* @param parentHeader
* @param secondLevel
* @param data
*/
public ThreeLevelListAdapter(Context context, String[] parentHeader, List<String[]> secondLevel, List<LinkedHashMap<String, String[]>> data)
this.context = context;
this.parentHeaders = parentHeader;
this.secondLevel = secondLevel;
this.data = data;
@Override
public int getGroupCount()
return parentHeaders.length;
@Override
public int getChildrenCount(int groupPosition)
// no idea why this code is working
return 1;
@Override
public Object getGroup(int groupPosition)
return groupPosition;
@Override
public Object getChild(int group, int child)
return child;
@Override
public long getGroupId(int groupPosition)
return groupPosition;
@Override
public long getChildId(int groupPosition, int childPosition)
return childPosition;
@Override
public boolean hasStableIds()
return true;
@Override
public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent)
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.row_first, null);
TextView text = (TextView) convertView.findViewById(R.id.rowParentText);
text.setText(this.parentHeaders[groupPosition]);
return convertView;
@Override
public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent)
final SecondLevelExpandableListView secondLevelELV = new SecondLevelExpandableListView(context);
String[] headers = secondLevel.get(groupPosition);
List<String[]> childData = new ArrayList<>();
HashMap<String, String[]> secondLevelData = data.get(groupPosition);
for (String key : secondLevelData.keySet())
childData.add(secondLevelData.get(key));
secondLevelELV.setAdapter(new SecondLevelAdapter(context, headers, childData));
secondLevelELV.setGroupIndicator(null);
secondLevelELV.setOnGroupExpandListener(new ExpandableListView.OnGroupExpandListener()
int previousGroup = -1;
@Override
public void onGroupExpand(int groupPosition)
if (groupPosition != previousGroup)
secondLevelELV.collapseGroup(previousGroup);
previousGroup = groupPosition;
);
return secondLevelELV;
@Override
public boolean isChildSelectable(int groupPosition, int childPosition)
return true;
SecondLevelAdapter
public class SecondLevelAdapter extends BaseExpandableListAdapter
private Context context;
List<String[]> data;
String[] headers;
ImageView ivGroupIndicator;
public SecondLevelAdapter(Context context, String[] headers, List<String[]> data)
this.context = context;
this.data = data;
this.headers = headers;
@Override
public Object getGroup(int groupPosition)
return headers[groupPosition];
@Override
public int getGroupCount()
return headers.length;
@Override
public long getGroupId(int groupPosition)
return groupPosition;
@Override
public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent)
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.row_second, null);
TextView text = (TextView) convertView.findViewById(R.id.rowSecondText);
String groupText = getGroup(groupPosition).toString();
text.setText(groupText);
return convertView;
@Override
public Object getChild(int groupPosition, int childPosition)
String[] childData;
childData = data.get(groupPosition);
return childData[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)
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.row_third, null);
TextView textView = convertView.findViewById(R.id.rowThirdText);
textView.setOnClickListener(v ->
// here I want to get the all parent names of the child clicked
Common.showToast(context,"This Feature is under development", Toast.LENGTH_LONG);
);
String[] childArray = data.get(groupPosition);
String text = childArray[childPosition];
textView.setText(text);
return convertView;
@Override
public int getChildrenCount(int groupPosition)
String[] children = data.get(groupPosition);
return children.length;
@Override
public boolean hasStableIds()
return true;
@Override
public boolean isChildSelectable(int groupPosition, int childPosition)
return true;
我想做什么?
我想在单击孩子时获取所有父母姓名。例如,如上图所示。如果我点击M/S PAK MEDICOSE PHARMACY
或M/S SERVAID PHARMACY
,那么我想获取他们的父母姓名LICE-O-NIL CREAM
和1112 STOP TOWNSHIP
等等。
TextView textView = convertView.findViewById(R.id.rowThirdText);
textView.setOnClickListener(v ->
//Here I want to get the names of parent
Common.showToast(context,"This Feature is under development", Toast.LENGTH_LONG);
);
我怎样才能做到这一点?
任何帮助将不胜感激。
【问题讨论】:
使用全局变量或使用继承 @Vijay 我该如何使用它们? @Vijay 从不使用全局变量 找到一种方法来保留被点击的层次结构。一种选择是保留树状结构,以便在单击一个元素后轻松检查节点层次结构。 渲染子项时,可以传递父项。所以,每个项目都知道谁是它的父项 【参考方案1】:第 1 步:您已经有了要在回收站视图中显示的元素列表。现在创建这些列表的列表好吗(我稍后会告诉你为什么?)
第 2 步:您可以做的是创建另一个全局列表(如果经常使用,也是静态的)。提示:如果适配器在其他类中,则通过构造函数传递列表。
解释: 此列表将保存单击项目的索引(我假设我们不知道回收器视图中有多少子列表)。当用户从第一个回收器视图列表中单击项目时,我们将通过 (~adapter.getAdapterPosition ()) 然后用户单击子列表,然后我们也保存该索引,依此类推...
现在,假设用户点击如下:
来自列表 1 -> 索引:4 来自列表 2 -> 索引:2 来自列表 3 -> 索引:3所以我们现在要做的是,我们有一个包含索引的列表和另一个包含 n 个列表的列表(其中 n = 子列表的数量)。 listsArrayList 包含按顺序排列的列表,indexClickedList 包含我们单击的元素的索引,indexClickedList 中的索引是我们单击项目的列表编号,因此您可以从 listsList 访问它。这样就可以获取到我们点击的元素的父项了。在这里您必须使用 while 循环,因为我们不知道有多少子列表。你继续直到我们到达 list.get(whatEverIndex == null)。
每当我们有分支时,我们总是使用树结构,在第一条评论中,我以为您只有一个子列表,但现在在您的情况下,我们有多个。所以你绝对应该使用树结构。循环时要小心,可能会出现空指针异常。
【讨论】:
感谢您的回答。我使用的是ScrollView
而不是RecyclerView
。
我也有一个public class SecondLevelExpandableListView extends ExpandableListView public SecondLevelExpandableListView(Context context) super(context); protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) heightMeasureSpec = MeasureSpec.makeMeasureSpec(999999, MeasureSpec.AT_MOST); super.onMeasure(widthMeasureSpec, heightMeasureSpec);
,我在getChildView
的ThreeLevelListAdapter
中使用它,就像final SecondLevelExpandableListView secondLevelELV = new SecondLevelExpandableListView(context);
一样
in headers
我正在获取孩子的直接父母姓名,例如 M/S PAK MEDICOSE PHARMECY
父母是 LICE-O-NIL CREAM
,其父母是 1112 STOP TOWNSHIP
好的,那么它就变得容易了,当你阅读我的方法时。现在在每个类中创建方法 getParentsName() 它应该是递归的,就像第三个应该调用第二个然后首先停止(使用 null 或任何东西)。你是说我们得到直系父母然后它变得超级容易。 getParentsName() 应该从父类覆盖,我们可以很容易地获取父类名称。顺便说一句,您已经创建了一个树结构,您可以通过调用 while(child.getParent() != null)list.add(child.getName()) 来访问父级。像这样的东西。
给您的提示:将来,请确保在为可扩展列表、音乐播放器、视频播放器等应用自定义方式之前进行研究。有很多库可用于此类任务。这个习惯可以节省很多时间和精力。在 google 上搜索“可扩展列表库 android github”以上是关于Android如何在点击expandablelistview时获取孩子的父母姓名的主要内容,如果未能解决你的问题,请参考以下文章
【记录】关于element-table expand 第一次点击不会渲染和数据覆盖问题
android studio集成腾讯云通信时报错,could not expand zip imsdk.jar
vue element table expand 扩展行点击行展示且保证只展示一行