이벤트 기반 버튼 클릭을 통한 프래그먼트 및 어댑터 인터페이스
프래그먼트와 관련 어댑터 간에 이벤트를 통신하기 위해 인터페이스를 구현할 수 있습니다. Adapter 클래스 내에서. 이 시나리오에서 MyListFragment라는 조각에는 사용자 정의된 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 } }
어댑터와 조각을 바인딩하려면 어댑터를 수정합니다. 클래스:
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; } ... }
어댑터의 바인딩 보기 메서드 내에서 버튼 클릭 동작을 정의합니다.
@Override public void bindView(View view, Context context, Cursor cursor) { ... holder.button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { buttonListener.buttonPressed(); } }); }
어댑터를 생성할 때 조각을 인수로 전달합니다.
MyListAdapter adapter = new MyListAdapter(getActivity(), myCursor, myFlags, this);
이 메커니즘은 버튼을 클릭할 때 프래그먼트가 구현된 인터페이스를 통해 알림을 받도록 보장합니다.
위 내용은 이벤트 기반 버튼 클릭을 사용하여 조각과 해당 어댑터 간에 통신하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!