如何在 expandableListAdapter 中使用片段中的按钮
How to use a button from a fragment in a expandableListAdapter
我的 android 应用有问题:
我有一个 fragment,它有一个 expandableListAdapter 和一个保存按钮。
我的问题是,当我在 expandableListAdapter
的列表之一中编辑一些信息时,如何使用保存按钮。
因为当我在 fragment itself
上使用它时,我没有在 expandableListAdapter
上编辑数据,而且我似乎无法在 expandableListAdapter
本身中使用它.
你能帮我解决这个问题吗?
非常感谢您的宝贵时间
据我了解您的问题,您想在点击保存按钮后调用 expandableListAdapter 中的一个方法(以保存数据)。
如果是这样,那么:
- 在相应的Fragment中创建一个你的ExpandableListAdapter对象变量并赋值
- 在ExpandableListAdapter中创建一个方法,应该调用它来保存数据
- 在按钮的 onClickListener() 中,调用您在步骤 2 中创建的 ExpandableListAdapter 对象上的方法。
我的 android 应用有问题: 我有一个 fragment,它有一个 expandableListAdapter 和一个保存按钮。
我的问题是,当我在 expandableListAdapter
的列表之一中编辑一些信息时,如何使用保存按钮。
因为当我在 fragment itself
上使用它时,我没有在 expandableListAdapter
上编辑数据,而且我似乎无法在 expandableListAdapter
本身中使用它.
你能帮我解决这个问题吗?
非常感谢您的宝贵时间
据我了解您的问题,您想在点击保存按钮后调用 expandableListAdapter 中的一个方法(以保存数据)。
如果是这样,那么:
- 在相应的Fragment中创建一个你的ExpandableListAdapter对象变量并赋值
- 在ExpandableListAdapter中创建一个方法,应该调用它来保存数据
- 在按钮的 onClickListener() 中,调用您在步骤 2 中创建的 ExpandableListAdapter 对象上的方法。