欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android中自定义xml文件给Spinner下拉框赋值并获取下拉选中的值

程序员文章站 2022-06-21 23:25:03
场景 实现效果如下 注: 博客: https://blog.csdn.net/badao_liumang_qizhi 关注公众号 霸道的程序猿 获取编程相关电子书、教程推送与免费下载。 实现 将布局改为LinearLayout,并通过android:orientation="vertical">设置 ......

场景

实现效果如下

Android中自定义xml文件给Spinner下拉框赋值并获取下拉选中的值

 

 

Android中自定义xml文件给Spinner下拉框赋值并获取下拉选中的值

注:

博客:

关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。

实现

将布局改为linearlayout,并通过android:orientation="vertical">设置为垂直布局,然后添加id属性。

然后在res下values下新建arrays.xml,数组资源文件,用来存储下拉框的选项内容

Android中自定义xml文件给Spinner下拉框赋值并获取下拉选中的值

 

 

arrays.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string-array name="ctype">
        <item>全部</item>
        <item>公众号</item>
        <item>霸道</item>
        <item>的</item>
        <item>程序猿</item>
        <item>博客</item>
        <item>霸道</item>
        <item>流氓</item>
        <item>气质</item>
    </string-array>
</resources>

 

只要通过name属性赋值为ctype,后续被引用。

然后再回到activity_spinner.xml中,通过

android:entries="@array/ctype"

 

为下拉框设置选项数组内容。

activity_spinner.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"
    android:orientation="horizontal"
    tools:context=".spinneractivity">

    <spinner
        android:id="@+id/spinnner"
        android:entries="@array/ctype"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

</linearlayout>

 

然后来到activity,通过id获取spinner,然后设置其选项被选中的事件监听器,获取选中值的内容并输出

package com.badao.relativelayouttest;

import androidx.appcompat.app.appcompatactivity;

import android.os.bundle;
import android.view.view;
import android.widget.adapterview;
import android.widget.spinner;
import android.widget.toast;

public class spinneractivity extends appcompatactivity {

    @override
    protected void oncreate(bundle savedinstancestate) {
        super.oncreate(savedinstancestate);
        setcontentview(r.layout.activity_spinner);
        spinner spinner = (spinner) findviewbyid(r.id.spinnner);
        spinner.setonitemselectedlistener(new adapterview.onitemselectedlistener() {
            @override
            public void onitemselected(adapterview<?> parent, view view, int position, long id) {
                string result = parent.getitematposition(position).tostring();
                toast.maketext(spinneractivity.this,result,toast.length_short).show();
            }

            @override
            public void onnothingselected(adapterview<?> parent) {

            }
        });
    }
}