通过事件驱动的按钮点击来连接 Fragment 和 Adapter
要在 Fragment 与其关联的 Adapter 之间传递事件,可以实现一个接口在 Adapter 类中。在这种情况下,名为 MyListFragment 的 Fragment 包含一个使用自定义 CursorAdapter 的 ListView。单击列表行中的按钮后,需要将通知发送到 Fragment。
解决方案涉及在 Adapter 类中创建一个接口:
public class MyListAdapter extends CursorAdapter { public interface AdapterInterface { void buttonPressed(); } ... }
在 Fragment 类中 ( MyListFragment),实现AdapterInterface:
public class MyListFragment extends Fragment implements AdapterInterface { @Override public void buttonPressed() { // Some action } }
绑定Adapter和Fragment,修改Adapter class:
public class MyListAdapter extends CursorAdapter { private AdapterInterface buttonListener; public MyListAdapter(Context context, Cursor c, int flags, AdapterInterface buttonListener) { super(context, c, flags); this.buttonListener = buttonListener; } ... }
在Adapter的bindView方法中,定义按钮点击行为:
@Override public void bindView(View view, Context context, Cursor cursor) { ... holder.button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { buttonListener.buttonPressed(); } }); }
创建Adapter时,将Fragment作为参数传递:
MyListAdapter adapter = new MyListAdapter(getActivity(), myCursor, myFlags, this);
这个机制保证了当按钮被点击时,Fragment 通过实现的接口接收到通知。
以上是如何使用事件驱动的按钮单击在片段与其适配器之间进行通信?的详细内容。更多信息请关注PHP中文网其他相关文章!