onClick()
CheckBox の既定の動作をオーバーライドするにはどうすればよいですか?
ユースケース行ビューでレンダリングされているオブジェクトのブール値のステータスをcheckBoxに反映させたい。ユーザーが行 (checkBox を含む) をクリックすると、オブジェクトの状態 (ブール変数) を変更するプロセスが実行されます。
CheckBox のデフォルトの onClick 動作が開始されないようにするにはどうすればよいでしょうか。言い換えれば、私CheckBox.onClick()
は電話したいですtheCustomAdapter.onItemClick()
。どうすればこれを達成できますか?
考え直して、オン/オフのステータスを表示するだけで Clickable を実装しないようなウィジェット オブジェクトはありますか?
カスタムアダプター
public class UserListViewAdapter extends ArrayAdapter<User> implements AdapterView.OnItemClickListener
{
private final Context context;
private final List<User> users;
public UserListViewAdapter(Context context, int resource, List<User> users)
{
super(context, resource, users);
this.context = context;
this.users = users;
}
public View getView(int position, View convertView, ViewGroup parent)
{
LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View row = layoutInflater.inflate(R.layout.user, parent, false);
// set the loggedIn? isCurrent? radio buttons
CheckBox checkBox = (CheckBox) row.findViewById(R.id.isLoggedIn);
checkBox.setChecked(users.get(position).isLoggedIn());
checkBox = (CheckBox) row.findViewById(R.id.isCurrent);
checkBox.setChecked(users.get(position).isCurrent());
// fill the user name
TextView textView = (TextView) row.findViewById(R.id.userName);
textView.setText(users.get(position).getUserName());
// fill the user id
textView = (TextView) row.findViewById(R.id.userId);
textView.setText(users.get(position).getUserId());
// return the row
return row;
}
// @Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l)
{
Log.i("Clicked", adapterView.toString());
Toast.makeText(this.context, "Clicked! "+l, Toast.LENGTH_LONG).show();
}
}
カスタム行ビュー
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:clickable="true">
<CheckBox android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/isLoggedIn"
android:padding="4dp"
android:gravity="center"
android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="false"/>
<CheckBox android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/isCurrent"
android:padding="4dp"
android:gravity="center"
android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="false"/>
<TextView android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/userName"
android:padding="4dp"
android:gravity="left"
android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="false"/>
<TextView android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/userId"
android:padding="4dp"
android:gravity="left"
android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="false"/>
</LinearLayout>