如何使用自定义适配器将整数添加到列表视图中

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

i有一个列表视图,其中有两个文本视图,一个是在同一活动中但不在列表视图中的编辑文本,还有两个按钮,一个用于添加到列表视图,另一个用于从列表中删除。如何将整数添加到第一个文本视图,如何将所有整数的总和添加到第二个文本视图,以及如何来自自定义适配器。谢谢。

Activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    tools:context=".MainActivity"
    android:orientation="vertical">
    <EditText
        android:id="@+id/edit_ten"
        android:hint="Score"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <Button
            android:id="@+id/btn_add"
            android:layout_weight="1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="Add"/>
        <Button
            android:id="@+id/btn_delete"
            android:layout_weight="1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="Undo"/>

    </LinearLayout>
    <ListView
        android:id="@+id/list_sinhvien"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    </ListView>

</LinearLayout>
item_layout.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="horizontal">
    <LinearLayout
        android:orientation="vertical"
        android:layout_weight="1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:id="@+id/text_ten"
            android:textSize="20dp"
            android:text="Score"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>
        <TextView
            android:id="@+id/text_sdt"
            android:textSize="20dp"
            android:text="Total"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>
    </LinearLayout>

</LinearLayout>
MainActivity.java
package com.example.addanddelete;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.Toast;

import java.util.ArrayList;

public class MainActivity extends AppCompatActivity implements View.OnClickListener {
    ListView listSinhvien;
    EditText editTen;
    Button btnThem , btnSua;
    ArrayList<Sinhvien> arraySinhvien;
    CustomAdapter myadapter;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        anhxa();
        arraySinhvien = new ArrayList<Sinhvien>();


        myadapter = new CustomAdapter(this , R.layout.item_layout,arraySinhvien);
        listSinhvien.setAdapter(myadapter);
        btnSua.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                final int count = myadapter.getCount();
                myadapter.remove(myadapter.getItem(count -1));
                myadapter.notifyDataSetChanged();

                return;}});

    }
    private void anhxa(){
        listSinhvien = (ListView)findViewById(R.id.list_sinhvien);
        editTen = (EditText)findViewById(R.id.edit_ten);
        btnThem = (Button)findViewById(R.id.btn_add);
        btnSua = (Button)findViewById(R.id.btn_undo);
        btnThem.setOnClickListener(this);
        btnSua.setOnClickListener(this);
    }

    @Override
    public void onClick(View view) {
        switch (view.getId()){
            case R.id.btn_add:
                Toast.makeText(this, "clicked", Toast.LENGTH_SHORT).show();
                String ten = editTen.getText().toString();
                String sdt = editTen.getText().toString();
                Sinhvien temp = new Sinhvien(R.mipmap.ic_launcher,ten , sdt);
                arraySinhvien.add(temp);
                myadapter.notifyDataSetChanged();
                break;
        }

    }
}
CustomAdapter.java
package com.example.addanddelete;

import android.app.Activity;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.TextView;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;

import java.util.ArrayList;

public class CustomAdapter extends ArrayAdapter {
    Activity activity;
    int layout;
    ArrayList<Sinhvien> arrSinhVien;

    public CustomAdapter(@NonNull  Activity activity, int layout, @NonNull ArrayList<Sinhvien> arrSinhVien) {
        super(activity, layout, arrSinhVien);
        this.activity = activity;
        this.layout = layout;
        this.arrSinhVien = arrSinhVien;
    }

    @NonNull
    @Override
    public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
        LayoutInflater layoutInflater = activity.getLayoutInflater();
        convertView = layoutInflater.inflate(layout, null);
        TextView ten = (TextView) convertView.findViewById(R.id.text_score);
        TextView sdt = (TextView) convertView.findViewById(R.id.text_total);

        ten.setText(arrSinhVien.get(position).getTenSinhvien());
        sdt.setText(arrSinhVien.get(position).getSdtSinhvien());
        return convertView;
    }
}
Sinhvien.java
package com.example.addanddelete;

public class Sinhvien {

    String tenSinhvien;
    String sdtSinhvien;

    public Sinhvien(String iclauncher,String ten, String sdt) {
    }

    public Sinhvien(int iclauncher,String tenSinhvien, String sdtSinhvien) {

        this.tenSinhvien = tenSinhvien;
        this.sdtSinhvien = sdtSinhvien;
    }


    public String getTenSinhvien() {
        return tenSinhvien;
    }

    public void setTenSinhvien(String tenSinhvien) {
        this.tenSinhvien = tenSinhvien;
    }

    public String getSdtSinhvien() {
        return sdtSinhvien;
    }

    public void setSdtSinhvien(String sdtSinhvien) {
        this.sdtSinhvien = sdtSinhvien;
    }
}
android android-studio android-layout android-listview
1个回答
0
投票
我进行了一些搜索,发现了几个示例,这些示例涵盖了您的实现的总体思路。 This example很好地说明了如何实现您想要的目标。本文首先概述了在RecyclerViewListView上使用GridView的一些原因,然后继续深入介绍了如何使用自定义适配器(及相关项目)实现RecyclerView视图和项目类)。

乍一看,您的实现将需要:

包含您的ActivityRecyclerView,两个Button(用于从RecyclerView中添加和删除元素)和一个EditText用于接受用户输入。

    表示您的View列表中各个项目的自定义项目RecyclerView。这将包含两个TextView视图(一个用于显示整数,另一个用于显示所有整数的和)。
  • 自定义项目模型Class,代表上述自定义项目View的数据模型。这将保存一个整数值,并可能包含一些用于显示总和的逻辑。
  • 一个自定义RecyclerView适配器(将上述所有元素捆绑在一起)。这将需要处理将数据集(根据用户输入而增长和收缩)的数据绑定到要显示在RecyclerView列表中的自定义项目实例的任务。您的
  • add和
  • delete项目按钮也可以使用此适配器来修改RecyclerView列表中的元素。
以上内容在link I provided earlier中有更深的概述。我衷心希望能有所帮助!
© www.soinside.com 2019 - 2024. All rights reserved.