其他分享
首页 > 其他分享> > Android中SimpleAdapter的使用

Android中SimpleAdapter的使用

作者:互联网

1.简单介绍

SimpleAdapter配上Spinner,可以在Spinner的列表项中展示多个控件(如文本和图片的组合),显示效果如下图。
显示效果
下面是初始化SimpleAdapter的一个例子。在SimpleAdapter的构造函数中:第一个参数是设备上下文;第二个参数是存放Map的容器,Map里面存放的是原材料;第三个参数是选中时的显示;第四个参数是Map中的key;第五个参数是原材料对应存放的位置(比如例子中的icon放到iv_icon)。

		//文字
		private String[] mWeekArray =  {"周一", "周二", "周三", "周四", "周五", "周六", "周日"};
		//图片
		int[] mIconArray = {R.mipmap.ic_launcher, R.mipmap.ic_launcher, R.mipmap.ic_launcher, R.mipmap.ic_launcher,
                R.mipmap.ic_launcher, R.mipmap.ic_launcher, R.mipmap.ic_launcher};
        //存放Map的容器
        List<Map<String, Object>> list = new ArrayList<>();
        //每个Map里面放的是原材料
        for(int i = 0; i < mIconArray.length; i++) {
            Map<String, Object> map = new HashMap<>();
            map.put("icon", mIconArray[i]);
            map.put("week", mWeekArray[i]);
            list.add(map);
        }
        /*第一个参数是设备上下文 第二个参数是存放Map的容器,Map里面存放的是原材料 第三个参数是选中时的显示 第四个参数是Map中的key 第五个参数是原材料对应存放的位置(icon放iv_icon)*/
        SimpleAdapter adapter = new SimpleAdapter(this, list, R.layout.item_selected, new String[]{"icon", "week"}, new int[]{R.id.iv_icon, R.id.tv_week});
        adapter.setDropDownViewResource(R.layout.item_simple);

2.简单实现

  1. item_selected.xml。选中时的显示状态,上图中选中时是红色背景绿色字(为了显眼 )。
<?xml version="1.0" encoding="utf-8"?>
    <!--选中Spinner中的某项时显示的TextView-->
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tv_week"
android:layout_width="match_parent" android:layout_height="40dp"
android:singleLine="true"
android:gravity="center"
android:textSize="18sp"
android:textColor="#0000ff"
android:background="#FF0000">
</TextView>
  1. item_simple.xml。设置列表项用的(每个列表项都显示为item_simple)。LinearLayout:ImageView+TextView。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <ImageView
        android:id="@+id/iv_icon"
        android:layout_width="0dp"
        android:layout_height="50dp"
        android:layout_weight="1"
        android:gravity="center"/>

    <TextView
        android:id="@+id/tv_week"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="3"
        android:gravity="center"
        android:textSize="18sp"
        android:textColor="#000000"/>
</LinearLayout>
  1. activity_simple_adapter.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=".SimpleAdapterActivity">

    <Spinner
        android:layout_marginTop="100dp"
        android:id="@+id/sp_demo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:spinnerMode="dialog"></Spinner>
</LinearLayout>
  1. SimpleAdapterActivity.java
package xyz.strasae.androidlearn.my;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.SimpleAdapter;
import android.widget.Spinner;
import android.widget.Toast;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class SimpleAdapterActivity extends AppCompatActivity {
    private Spinner sp_demo;
    private String[] mWeekArray =  {"周一", "周二", "周三", "周四", "周五", "周六", "周日"};

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_simple_adapter);
        sp_demo = findViewById(R.id.sp_demo);

        int[] mIconArray = {R.mipmap.ic_launcher, R.mipmap.ic_launcher, R.mipmap.ic_launcher, R.mipmap.ic_launcher,
                R.mipmap.ic_launcher, R.mipmap.ic_launcher, R.mipmap.ic_launcher};
        //存放Map的容器
        List<Map<String, Object>> list = new ArrayList<>();
        //每个Map里面放的是原材料(这里是指图标和文字)
        for(int i = 0; i < mIconArray.length; i++) {
            Map<String, Object> map = new HashMap<>();
            map.put("icon", mIconArray[i]);
            map.put("week", mWeekArray[i]);
            list.add(map);
        }
        /*第一个参数是设备上下文 第二个参数是存放Map的容器,Map里面存放的是原材料 第三个参数是选中时的显示 第四个参数是Map中的key 第五个参数是存放的位置(icon放iv_icon)*/
        SimpleAdapter adapter = new SimpleAdapter(this, list, R.layout.item_selected, new String[]{"icon", "week"}, new int[]{R.id.iv_icon, R.id.tv_week});
        //设置下拉列表项(每个列表项都是一个item_simple)
        adapter.setDropDownViewResource(R.layout.item_simple);

        //设置适配器
        sp_demo.setAdapter(adapter);
        //设置标题
        sp_demo.setPrompt("请选择星期几");
        //设置呢初始选项
        sp_demo.setSelection(0);
        //添加监听器
        sp_demo.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
            @Override
            public void onItemSelected(AdapterView<?> adapterView, View view, int i, long l) {
                Toast.makeText(SimpleAdapterActivity.this, "你选择了" + mWeekArray[i], Toast.LENGTH_SHORT).show();
            }

            @Override
            public void onNothingSelected(AdapterView<?> adapterView) {

            }
        });
    }
}

标签:Map,launcher,mipmap,使用,new,Android,ic,SimpleAdapter,icon
来源: https://blog.csdn.net/weixin_43219615/article/details/98939343