私の Android アプリケーションでは、リスト ビューにアクティビティとアダプターを使用しました。取得では、EventBus を使用してイベント リスナーを介してアダプター クラスとアクティビティの両方を通信する必要があるため、2 つのイベント リスナー クラスを作成しました。
私のプロセスは次のとおりです。
1)アクティビティにボタンがあり、ボタンはアダプタクラスと通信する必要があります。
2)テキストビュー(リストビューのテキストビューウィジェット)をクリックすると、アクティビティクラスと通信する必要があります。
次のコードでは、アダプタはアクティビティと通信しますが、アクティビティはアダプタ クラスと通信しません。両方のクラスで通信する方法を教えてください。
完全なサンプル プロジェクト コードを投稿しました。
活動クラス:
public class ListMobileActivity extends Activity {....};
private ListView list;
private Button btn;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
EventBus.getDefault().register(ListMobileActivity.this);
......
list.setAdapter(adapter);
// Does not communicates with Adapter.
btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
EventBus.getDefault().post(new TestEvent2("test event"));
}
});
}
public void onEvent(TestFinishedEvent event) {
Log.e("TestFinishEvent ", event.test);
}
}
アダプタ クラス:
public class MobileArrayAdapter extends ArrayAdapter<String> {
private final Context context;
private final String[] values;
public MobileArrayAdapter(Context context, String[] values) {
super(context, R.layout.list_mobile, values);
this.context = context;
this.values = values;
EventBus.getDefault().register(this.context); // registered here.
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflater.inflate(R.layout.list_mobile, parent, false);
TextView textView = (TextView) rowView.findViewById(R.id.label);
ImageView imageView = (ImageView) rowView.findViewById(R.id.logo);
textView.setText(values[position]);
.........
// its works, communicate with Activity
textView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
EventBus.getDefault().post(new TestFinishedEvent("ssds"));
}
});
return rowView;
}
public void onEvent(TestEvent2 event) {
Log.e("Test event 2 ", event.test);
}
}