在 Android 中将侦听器传递给自定义片段

2022-09-02 13:09:08

我正在我的应用中创建一个视图寻呼机,并使用一个在其上扩展 Fragment 的类。当我创建一个实例时,我可以传递所有元素(图像,文本等)并将其与捆绑包一起存储,以便在onCreate中使用它。但是我无法在片段中存储按钮的侦听器。这是我的课程:

public class RegWizardFragmentInfo extends Fragment {

private static final String IMAGE = "image";
private static final String TEXT = "text";
private static final String BUTTON = "buttonText";
private View.OnClickListener buttonCallBack;

private Button button;
private int image;
private int text;
private int buttonText;


public RegWizardFragmentInfo newInstance(int image, int text, int buttonText, View.OnClickListener callback) {

    RegWizardFragmentInfo fragment = new RegWizardFragmentInfo();
    Bundle bundle = new Bundle();
    bundle.putInt(IMAGE, image);
    bundle.putInt(BUTTON, buttonText);
    bundle.putInt(TEXT, text);
    fragment.setArguments(bundle);
    fragment.setRetainInstance(true);
    return fragment;

}

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    super.onActivityCreated(savedInstanceState);
    this.image = getArguments().getInt(IMAGE);
    this.text = (getArguments() != null) ? getArguments().getInt(TEXT)
            : -1;
    this.buttonText = (getArguments() != null) ? getArguments().getInt(BUTTON)
            : -1;
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    ViewGroup rootView = (ViewGroup) inflater.inflate(
            R.layout.fragment, container, false);
    //Extract all the views and add the image and texts

    return rootView;

}

那么,如何将我获得的侦听器存储在 newInstance 中以将其添加到 onCreateView 方法上的按钮中?

感谢您的帮助。


答案 1

您可以在以下位置使用回调:Fragment

public class RegWizardFragmentInfo extends Fragment {

    private Button button;

    private OnClickCallback callback;

    public interface OnClickCallback {
        void onClick();
    }

    @Override
    public void onAttach(Context context) {
        super.onAttach(context);
        callback = (OnClickCallback) context;
    }

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
                             @Nullable Bundle savedInstanceState) {
        return super.onCreateView(inflater, container, savedInstanceState);

        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                callback.onClick();
            }
        });
    }
}

并在您的父级中实现此新接口Activity


答案 2

其他答案在 中分配侦听器。虽然这可以工作,但它需要调用(而不是匿名类)实现您的接口。此外,它迫使您将给定的传递给您的接口实例,这可能会导致崩溃,并且通常被认为是不良形式。您可以改为创建一个方法来设置侦听器,onAttachActivityContextonAttachFragment

public class RegWizardFragmentInfo extends Fragment {

    private OnClickListener mListener;

    public interface OnClickListener {
        void onClick();
    }

    /**
     * Call at any time after this fragment has been constructed.
     */
    public void setListener(OnClickListener listener) {
        mListener = listener;
    }

    /* ...other stuff... */
}

我可以想到这种方法的三个缺点:

  1. 每次要实例化 .Fragment
  2. 您不能保证在任何时候都设置。您可能需要在代码中加入空检查。mListenerFragment
  3. 您需要小心确保侦听器在生命周期事件(如屏幕旋转)后保持设置状态。

推荐