Как создать OnClickListener для кнопки в моем адаптере списка, которая позволит мне установить видимость для представления EditText - PullRequest
0 голосов
/ 02 апреля 2019

В настоящее время у меня есть просмотр списка, который содержит кнопку и представление EditText.Как правильно реализовать OnClickListener в моем адаптере списка, чтобы при нажатии каждой кнопки соответствующий EditText в представлении скрывался с помощью метода setVisibility.

На основании моей текущей реализации OnClickListener в моем адаптере списка,Когда я нажимаю кнопку, чтобы скрыть соответствующий EditText в представлении, он скрывает самый последний EditText в области просмотра и не скрывает соответствующий EditText, который находится в том же виде, что и кнопка.Ниже представлен мой xml-файл списка просмотра (inspe_single_row.xml), адаптер моего списка (InspectionAdapter.java) и основная деятельность (MainActivity).

inspe_single_row.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Was the sink cleaned floors mopped"
            android:id="@+id/text_id"/>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/check_boxes"
            android:layout_marginBottom="20dp"
            android:gravity="center_horizontal">


            <RadioGroup
                android:id="@+id/groupRadio"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="15dp"
                android:orientation="horizontal">

                <RadioButton
                    android:id="@+id/radioComplete"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Complete"
                    android:checked="false"
                    android:textColor="@color/grey_mid"/>

                <RadioButton
                    android:id="@+id/radioIncomplete"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Incomplete"
                    android:checked="false"
                    android:textColor="@color/grey_mid"
                    android:layout_marginLeft="25dp"/>

            </RadioGroup>

            <Button
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="click"
                android:onClick="clickMe"
                android:id="@+id/btn"/>

        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:id="@+id/master_linlayout"
            android:layout_marginLeft="20dp"
            android:layout_marginRight="20dp">


            <EditText
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:layout_marginBottom="20dp"
                android:gravity="top"
                android:padding="10dp"
                android:textSize="14sp"
                android:background="@drawable/border2"
                android:inputType="textMultiLine"
                android:textColor="@color/grey_mid"
                android:id="@+id/edit_text"/>


        </LinearLayout>


    </LinearLayout>


</LinearLayout>

InspectionAdapter.java

public class InspectionAdapter extends ArrayAdapter<InspectionObject> {

    ArrayList<InspectionObject> arrayList;
    Context context;
    int Resource;
    LayoutInflater layoutInflater;
    ProgressHolder holder;

    public InspectionAdapter(Context context, int resource, ArrayList<InspectionObject> objects) {
        super(context, resource, objects);


        this.context = context;
        arrayList = objects;
        Resource = resource;

        layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    }

    private static class ProgressHolder {

        public RadioGroup radio_group;
        public EditText deficiency_notes;
        public TextView inspection_task;
        public RadioButton radio_yes;
        public RadioButton radio_no;
        public LinearLayout master_layout;
        public Button my_button;

    }

    @Override
    public View getView(final int position, View convertView, final ViewGroup parent) {

        View v = convertView;
        holder = new ProgressHolder();

        if(v == null)
            {
            v = layoutInflater.inflate(Resource, null);

            holder.radio_group = (RadioGroup)v.findViewById(R.id.groupRadio);
            holder.deficiency_notes = (EditText)v.findViewById(R.id.edit_text);
            holder.inspection_task = (TextView)v.findViewById(R.id.text_id);
            holder.radio_yes = (RadioButton)v.findViewById(R.id.radioComplete);
            holder.radio_no = (RadioButton)v.findViewById(R.id.radioIncomplete);
            holder.master_layout = (LinearLayout)v.findViewById(R.id.master_linlayout);
            holder.my_button = (Button)v.findViewById(R.id.btn);

            v.setTag(holder);

            }else{
            holder = (ProgressHolder)v.getTag();
        }

        final InspectionObject inspectionObject = arrayList.get(position);

        holder.my_button.setTag(position);
        holder.deficiency_notes.setTag(position);
        holder.my_button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                int pos = (Integer) v.getTag();  //the real and updated position
                Log.i("ConfirmAdapter","Button @ position : " + pos);

                Log.i("ConfirmAdapter","EditText @ position : " + holder.deficiency_notes.getTag());

            }
        });


        return v;
    }

}

MainActivity.java

public class MainActivity extends AppCompatActivity {

    ListView lv;
    InspectionAdapter inspection_adapter;
    ArrayList<InspectionObject> inspectionList;
    Boolean eval;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        lv = findViewById(R.id.listView2);

        inspectionList = new ArrayList<InspectionObject>();

        inspectionList = new ArrayList<InspectionObject>();

        inspectionList.add(new InspectionObject(true, "", "Were the floor mopped?"));
        inspectionList.add(new InspectionObject(true, "", "Were the mirrors cleaned?"));
        inspectionList.add(new InspectionObject(false, "", "Were the toilets cleaned?"));
        inspectionList.add(new InspectionObject(true, "", "Was high/low dusting performed?"));

        inspection_adapter = new InspectionAdapter(getApplicationContext(), R.layout.inspection_single_row, inspectionList);
        lv.setAdapter(inspection_adapter);



    }


}

1 Ответ

1 голос
/ 02 апреля 2019

Редактировать: В этой части

Log.i("ConfirmAdapter","EditText @ position : " + holder.deficiency_notes.getTag())

вы по-прежнему ссылаетесь на переменную держателя, которая была создана последним.Как я уже говорил: в getView для каждого представления вы создаете новый ProgressHolder, назначая его переменной-держателю.Таким образом, держатель перезаписывается при каждом вызове getView.Вот почему Log.i выдает ваш последний элемент.

Попробуйте выполнить следующее:

Поместите новый элемент ProgressHolder в условие if.

if(v == null)
        {
            holder = new ProgressHolder();

Таким образом, он создает тольконовый экземпляр, когда представление является нулевым.

Вместо установки тега для кнопки в положение, вы можете установить его в качестве держателя следующим образом:

holder.my_button.setTag(holder);

вам не нужно устанавливать тегдля EditText.

Затем в onClick вы получаете соответствующий экземпляр ProgressHolder через getTag () и меняете видимость следующим образом:

holder.my_button.setTag(holder);
holder.my_button.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {

        ProgressHolder clickedHolder = (ProgressHolder)view.getTag();
        clickedHolder.deficiency_notes.setVisibility(View.GONE);

    }
});
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...