Fragment类的ListView的处理按钮事件?

问题描述 投票:0回答:1

我在代码中使用了两个Fragment。我必须在每个片段中显示一个自定义ListView。但是我想处理这个ListView中Button的onClickListener事件。我找不到在线如何在Fragment类中使用这些Button(实际上是ImageButton)组件。这是我的代码:

我的片段类:

公共类tabtodo扩展Fragment实现View.OnClickListener {

public tabtodo() {}

private View view, view2;
private ListView lstTask;
private ImageButton btndelete;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    view = inflater.inflate(R.layout.fragment_tabtodo, container, false);

    lstTask = (ListView) view.findViewById(R.id.listView);


    AlUpdater alUpdater = new AlUpdater(getContext());
    lstTask.setAdapter(alUpdater.getAdapterTodo());

    view2 = inflater.inflate(R.layout.row, container, false);
    btndelete = (ImageButton) view2.findViewById(R.id.btntest);
    btnTest.setOnClickListener(this);

    return mView;
}

@Override
public void onClick(View v) {
    switch (v.getId()) {
        case R.id.btntest:
            Log.i("prova", "prova ");
            break;
        default:
            Log.i("prova", "def");
            break;
    }
}

alUpdater.getAdapterTodo()是:

public ArrayAdapter < String > getAdapterTodo() {
    ArrayList < String > taskList = (dG).getListTodo("todo");
    if (adptodo == null) {
        adptodo = new ArrayAdapter < > (context, R.layout.row, R.id.task_title, taskList);
        adptodo.notifyDataSetChanged();
    } else {
        adptodo.clear();
        adptodo.addAll(taskList);
        adptodo.notifyDataSetChanged();
    }
    return adptodo;
}

如您所见,我正在为arrayadapter使用自定义布局。R.layout.fragment_tabtodo:是仅具有列表视图的片段:


    <?xml version="1.0" encoding="utf-8"?>`
    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".tabtodo"
        android:paddingLeft="16dp"
        android:paddingRight="16dp"
        android:background="@color/white">

        <ListView
            android:id="@+id/listView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:divider="@color/white"
            android:dividerHeight="0dp"
            android:footerDividersEnabled="true"
            android:headerDividersEnabled="true">
        </ListView>
    </FrameLayout>

and finally, the XML of the row of the adapter (**R.layout.row**):

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingVertical="8dp">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/themeselector">

        <TextView
            android:id="@+id/task_title"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_alignParentStart="true"
            android:layout_marginStart="10dp"
            android:layout_marginTop="10dp"
            android:layout_marginBottom="10dp"
            android:layout_marginEnd="10dp"
            android:text="TASK"
            android:textColor="@color/white"
            android:textSize="20sp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toStartOf="@+id/btnGoToDone"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            tools:ignore="MissingConstraints" />

        <ImageButton
            android:id="@+id/btnGoToDone"
            android:layout_width="40dp"
            android:layout_height="wrap_content"
            android:backgroundTint="@android:color/transparent"
            android:onClick="switchTodoDone"
            android:src="@drawable/ic_done_icon"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toStartOf="@+id/btndelete"
            app:layout_constraintTop_toTopOf="parent" />

        <ImageButton
            android:id="@+id/btndelete"
            android:layout_width="40dp"
            android:layout_height="wrap_content"
            android:layout_marginEnd="4dp"
            android:backgroundTint="@android:color/transparent"
            android:src="@drawable/ic_delete_icon"
            android:onClick="deleteTask"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

    </androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
android android-fragments android-listview android-arrayadapter custom-arrayadapter
1个回答
0
投票

您需要为ListView创建一个自定义适配器。并点击按钮。检查本教程here

我建议您使用RecyclerView而不是ListView,因为它会强制执行ViewHolder模式,从而提高性能。

© www.soinside.com 2019 - 2024. All rights reserved.