Android, флажок в моем списке не влияет на метод onListItemClick ()? - PullRequest
1 голос
/ 30 декабря 2011

В моем приложении у меня есть список. Этот список включает в себя некоторые тексты и флажок. В определении списка XML, если я поставлю android:focusable="true", я могу щелкнуть по нему и изменить его статус с отмеченного на непроверенный и наоборот. Но я не могу изменить его статус, когда нажимаю на его строку.

Если я поставлю android:focusable="false", история поменяется. Если я выберу строку, я могу изменить статус флажка, в то время как, если я нажму на нее, ничего не изменится. Мне нужно, независимо от нажатия на строку или флажок, статус чакбокса меняется. Если я нажимаю на флажок, его статус меняется, но мой список не знает об этих изменениях, поэтому onListItemClick () не выполняется.

Я попытался добавить еще один элемент android:enabled="false". Но пользовательский интерфейс не удобен для пользователя. Кроме того, когда я нажимаю на флажок, его статус не изменяется.

Что вы предлагаете?

Это XML-код списка:

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <RelativeLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="fill_parent"
            android:layout_height="?android:attr/listPreferredItemHeight"
            android:padding="6dip" >

            <CheckBox 
                android:id="@+id/checkbox"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_alignParentTop="true"
                android:layout_alignParentBottom="true"
                android:layout_marginRight="6dip"
                android:layout_marginLeft="4px"
                android:focusable="false" />

.
.
.

и в коде: Flag и planId являются строковым массивом.

private String[] flag = new String[50];
private String[] planId = new String[50];

@Override
    public void onListItemClick(ListView l, View v, int position, long id) {
        super.onListItemClick(l, v, position, id);
        Log.i("List Clicked:", "******");

        //Toggle CheckBox from not selected to selected and vice versa.
        if(flag[position] == "true")
            flag[position] = "false";
        else
            flag[position] = "true";

        //Keep this CheckBox selected and clear the rest.
        for(int i=0; i<position; i++)
            flag[i] = "false";
        for(int i=position+1; i<flag.length; i++)
            flag[i] = "false";

        //If checkBox is selected show dialog if cleared don't show
        if(flag[position] == "true")
            //alertDialog.show();
            dialog.show();

        //Extracting Plan Id
        subscriptionPlanId = planId[position];
    }

снимок экрана:

enter image description here

=======> Обновление

//*********************
    //  RowModel Class
    //*********************
    private class RowModel{
        TextView title;
        TextView description;
        CheckBox checkbox;
    }

    //*********************
    //  ListAdapter Class
    //*********************
    private class ListAdapter extends ArrayAdapter<String>{

        public ListAdapter(Context c) {
            super(c, R.layout.infindo_listformat, list);
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            RowModel holder;
            View row = convertView;

            if(row == null){
                LayoutInflater inflater = getLayoutInflater();
                row = inflater.inflate(R.layout.infindo_listformat, parent, false);

                holder = new RowModel();
                holder.title = (TextView) row.findViewById(R.id.title);
                holder.description = (TextView) row.findViewById(R.id.description); 
                holder.checkbox = (CheckBox) row.findViewById(R.id.checkbox);

                row.setTag(holder);

            } else {
                holder = (RowModel) row.getTag(); 
            }

            holder.title.setText(titels[position]);
            holder.description.setText(descriptions[position]);
            String s = flag[position];
            if(s.equalsIgnoreCase("false"))
                holder.checkbox.setChecked(false);
            else
                holder.checkbox.setChecked(true);

            return(row);
        }
    }

Ответы [ 2 ]

1 голос
/ 30 декабря 2011

Извините, я отвечаю на свой вопрос здесь, потому что выше, это грязно и запутанно.Для дальнейшего использования я оставлю свой ответ здесь.

Вопрос : Когда я нажимаю на чекбокс в списке, его статус меняется, но метод onListItemClick () не знает об этом изменении ипоэтому этот метод не будет работать.

Ответ : В элементах XML флажка, просто установите для clickable этого элемента значение false.:) проблема решена.В моем случае XML выглядит так:

<Check
android:id="@+id/checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_marginRight="6dip"
android:layout_marginLeft="4px"
android:focusable="false"
android:clickable="false" />

Теперь, независимо от нажатия на строку или флажок, метод onListItemClick () будет вызывать.

0 голосов
/ 30 декабря 2011

Вам необходимо написать код, чтобы установить или снять флажок с помощью (checkbox.setChecked()) в onListItemClick методе

Ваш код для onListItemClick будет выглядеть примерно так:

@Override
    protected void onListItemClick(ListView l, View v, int position, long id) {
        // TODO Auto-generated method stub
        // super.onListItemClick(l, v, position, id);
        RelativeLayout rl = (RelativeLayout) v;
        for (int i = 0; i < rl.getChildCount(); i++) {
            if ((rl.getChildAt(i)) instanceof CheckBox) {
                CheckBox cb = (CheckBox) rl.getChildAt(i);
                boolean check = cb.isChecked();
                cb.setChecked(!check);
                break;
            }
        }
//      System.out.println(rl.getChildCount() + "...v..." + rl + "...." + id);
        // boolean check = cb.isChecked();
        // cb.setChecked(!check);
    }

CompleteПример

MyListVIew.java

import android.app.ListActivity;
import android.content.Context;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AutoCompleteTextView;
import android.widget.BaseAdapter;
import android.widget.CheckBox;
import android.widget.ListView;
import android.widget.RelativeLayout;
import android.widget.TextView;

public class MyListView extends ListActivity {

    AutoCompleteTextView myAutoComplete;

    String item[] = { "January", "February", "March", "April", "May", "June",
            "July", "August", "September", "October", "November", "December" };

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // getIntent().getParcelableExtra("obj");
        // b.putSerializable("mybean", bean);
        // i.putExtra("obj", b);
        Bundle b = getIntent().getBundleExtra("obj");
        MyBean dData = (MyBean) b.getSerializable("mybean");
        String[][] str = dData.get2DArray();
        setListAdapter(new MyAdapter(this));

    }

    class MyAdapter extends BaseAdapter {
        Context _context;
        TextView tv;

        public MyAdapter(Context context) {
            _context = context;
        }

        @Override
        public int getCount() {
            // TODO Auto-generated method stub
            return item.length;
        }

        @Override
        public Object getItem(int position) {
            // TODO Auto-generated method stub
            return item[position];
        }

        @Override
        public long getItemId(int position) {
            // TODO Auto-generated method stub
            return position;
        }

        @Override
        public View getView(int position, View row, ViewGroup parent) {
            // TODO Auto-generated method stub

            if (row == null) {
                LayoutInflater inflater = (LayoutInflater) _context
                        .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                row = inflater.inflate(R.layout.mylist, parent, false);
            }
            tv = (TextView) row.findViewById(R.id.textview);

            // Set the Day GridCell
            tv.setText(item[position]);

            return row;
        }

    }

    @Override
    protected void onListItemClick(ListView l, View v, int position, long id) {
        // TODO Auto-generated method stub
        // super.onListItemClick(l, v, position, id);
        RelativeLayout rl = (RelativeLayout) v;
        for (int i = 0; i < rl.getChildCount(); i++) {
            if ((rl.getChildAt(i)) instanceof CheckBox) {
                CheckBox cb = (CheckBox) rl.getChildAt(i);
                boolean check = cb.isChecked();
                cb.setChecked(!check);
                break;
            }
        }
//      System.out.println(rl.getChildCount() + "...v..." + rl + "...." + id);
        // boolean check = cb.isChecked();
        // cb.setChecked(!check);
    }

}

mylist.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <TextView
        android:id="@+id/textview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true" />

    <CheckBox
        android:id="@+id/checkbox"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:focusable="false" />

</RelativeLayout>
...