Ví dụ này minh họa cách tôi lấy tất cả các mục đã chọn trong listView trong android.
Bước 1 - Tạo một dự án mới trong Android Studio, đi tới Tệp ⇒ Dự án Mới và điền tất cả các chi tiết cần thiết để tạo một dự án mới.
Bước 2 - Thêm mã sau vào res / layout / activity_main.xml.
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://schemas.android.com/apk/res/android" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="MainActivity"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:orientation="horizontal"> <Button android:id="@+id/viewCheckedItem" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Select all" /> </LinearLayout> <ListView android:id="@+id/listView" android:layout_width="match_parent" android:layout_height="0dp" android:layout_marginTop="30dp" android:layout_weight="1"> </ListView> </LinearLayout>
Bước 3 - Tạo một lớp java (CustomAdapter.java) và mã sau -
import android.annotation.SuppressLint; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.CheckBox; import android.widget.TextView; import android.widget.Toast; import java.util.ArrayList; import java.util.Objects; class CustomAdapter extends BaseAdapter { private Context context; private static ArrayList<Model> modelArrayList; CustomAdapter(Context context, ArrayList<Model> modelArrayList) { this.context = context; CustomAdapter.modelArrayList = modelArrayList; } @Override public int getViewTypeCount() { return getCount(); } @Override public int getItemViewType(int position) { return position; } @Override public int getCount() { return modelArrayList.size(); } @Override public Object getItem(int position) { return modelArrayList.get(position); } @Override public long getItemId(int position) { return 0; } @SuppressLint("InflateParams") @Override public View getView(int position, View convertView, ViewGroup parent) { final ViewHolder holder; if (convertView == null) { holder = new ViewHolder(); LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); convertView = Objects.requireNonNull(inflater).inflate(R.layout.listitem, null, true); holder.checkBox = convertView.findViewById(R.id.checkBox); holder.tvPlayer = convertView.findViewById(R.id.playerNameList); convertView.setTag(holder); } else { holder = (ViewHolder) convertView.getTag(); } holder.checkBox.setText("Checkbox " + position); holder.tvPlayer.setText(modelArrayList.get(position).getPlayer()); holder.checkBox.setChecked(modelArrayList.get(position).getSelected()); holder.checkBox.setTag(R.integer.btnPlusView, convertView); holder.checkBox.setTag(position); holder.checkBox.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Integer pos = (Integer) holder.checkBox.getTag(); Toast.makeText(context, "Checkbox " +pos+ "Clicked!", Toast.LENGTH_SHORT).show(); if (modelArrayList.get(pos).getSelected()) { modelArrayList.get(pos).setSelected(false); } else { modelArrayList.get(pos).setSelected(true); } } }); return convertView; } private class ViewHolder { CheckBox checkBox; private TextView tvPlayer; } }
Bước 4 - Tạo một lớp java (Model.java) và đoạn mã sau -
class Model { private boolean isSelected; private String player; String getPlayer() { return player; } void setPlayer(String player) { this.player = player; } boolean getSelected() { return isSelected; } void setSelected(boolean selected) { isSelected = selected; } }
Bước 5 - Thêm mã sau vào res / values / string.xml
<resources> <string name="app_name">Sample</string> <integer name="btnPlusView">1</integer> <integer name="btnPlusPos">2</integer> </resources>
Bước 6 - Tạo bố cục cho bạn listView (listItem.xml) và thêm mã sau -
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="match_parent"> <CheckBox android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/checkBox" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/playerNameList" android:layout_marginStart="20dp" android:textSize="20sp" /> </LinearLayout>
Bước 7 - Thêm mã sau vào src / MainActivity.java
import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.ListView; import android.widget.Toast; import java.util.ArrayList; public class MainActivity extends AppCompatActivity { private ListView listView; private ArrayList<Model> modelArrayList; private CustomAdapter customAdapter; Button btnSelect, btnDeselect; public static String[] playerList = new String[]{"Sunil Chetri - INDIA", "Cristiano Ronaldo - Portugal", "Lionel Messi - Argentina", "Neymar Jr - Brazil", "Eden Hazard - Belgium", "Gigi Buffon - Italy", "James Rodrigues - Columbia", "Sadio Mane - Senegal", "Toni Kroos - Germany"}; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); listView = findViewById(R.id.listView); btnSelect = findViewById(R.id.viewCheckedItem); btnDeselect = findViewById(R.id.deSelect); modelArrayList = getModel(false); customAdapter = new CustomAdapter(MainActivity.this, modelArrayList); listView.setAdapter(customAdapter); btnSelect.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { modelArrayList = getModel(true); customAdapter = new CustomAdapter(MainActivity.this, modelArrayList); listView.setAdapter(customAdapter); Toast.makeText(getApplicationContext(), "Checked all items", Toast.LENGTH_SHORT).show(); } }); btnDeselect.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { modelArrayList = getModel(false); customAdapter = new CustomAdapter(MainActivity.this,modelArrayList); listView.setAdapter(customAdapter); Toast.makeText(getApplicationContext(), "Unchecked all items", Toast.LENGTH_SHORT).show(); } }); } private ArrayList<Model> getModel(boolean isSelect) { ArrayList<Model>list = new ArrayList<>(); for (int i = 0; i < 9; i++) { Model model = new Model(); model.setSelected(isSelect); model.setPlayer(playerList[i]); list.add(model); } return list; } }
Bước 8 - Thêm mã sau vào androidManifest.xml
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="https://schemas.android.com/apk/res/android" package="app.com.sample"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
Hãy thử chạy ứng dụng của bạn. Tôi giả sử bạn đã kết nối thiết bị Di động Android thực tế với máy tính của mình. Để chạy ứng dụng từ studio android, hãy mở một trong các tệp hoạt động của dự án của bạn và nhấp vào Run biểu tượng từ thanh công cụ. Chọn thiết bị di động của bạn làm tùy chọn, sau đó kiểm tra thiết bị di động sẽ hiển thị màn hình mặc định của bạn -