當使用Android Studio創建新片段時,它會生成onButtonPressed(Uri)方法,應該如何將它綁定到UI事件中,比如說單擊xml中聲明的按鈕?這種方法打算如何使用?Android Studio片段 - onButtonPressed方法
// TODO: Rename method, update argument and hook method into UI event
public void onButtonPressed(Uri uri) {
if (mListener != null) {
mListener.onFragmentInteraction(uri);
}
}