Привет Мне нужна помощь, чтобы выяснить, почему выбор в моем android gridview не работает. Я пытаюсь добавить в свое приложение возможность выделять выбранные элементы пользователями. Он работает (т.е. выделенный элемент подсвечивается), но как только я прокручиваю, выделение исчезает. Также, если я выберу 6 ячеек, это выделит 8-ю ячейку.
Ниже приведен код: XML
<TableRow
android:layout_width="wrap_content"
android:layout_height="@dimen/student_activity_first_row"
android:layout_marginTop="10dp">
<RelativeLayout
android:id="@+id/relLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="30dp">
<!--grid view for students goes here-->
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/grid_view"
android:layout_marginTop="90dip"
android:layout_width="fill_parent"
android:layout_height="330dp"
android:numColumns="auto_fit"
android:horizontalSpacing="20dp"
android:verticalSpacing="20dp"
android:gravity="center"
android:stretchMode="columnWidth"
android:layout_marginBottom="20dp"
>
</GridView>
</RelativeLayout>
</TableRow>
А ниже - привязка и выбор GridView:
private void BindData(String filter) {
GridView gridView = findViewById(R.id.grid_view);
CommonUtils utils = new CommonUtils();
String dropdate = utils.getTodaysDate();
final Booking h = new Booking();
bookingsList = new ArrayList<Booking>();
bookingsList = h.getAllBookingsForClassroom(ASCActivity.this, room_id, dropdate,filter);
adapter = new BookingGridViewAdapter(ASCActivity.this, bookingsList,true);
gridView.setAdapter(adapter);
final SharedPreferences pref = this.getSharedPreferences(SETTINGS_PREFS_NAME, Context.MODE_PRIVATE);
// OnClick
gridView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View v,
int position, long id) {
GridView gridView = ASCActivity.this.findViewById(R.id.grid_view);
final int size = gridView.getChildCount();
CommonUtils utils = new CommonUtils();
for(int i = 0; i < size; i++) {
ViewGroup gridChild = (ViewGroup) gridView.getChildAt(position);
if (gridChild != null) {
LinearLayout tv = (LinearLayout) gridChild.findViewById(R.id.parentPanel);
int color = ((ColorDrawable)tv.getBackground()).getColor();
if(color == -4591){
tv.setBackgroundColor(Color.parseColor("#ffee12"));
}else{
tv.setBackgroundColor(Color.parseColor("#ffee11"));
}
break;
}
}
}
}