实现效果如下
注:
博客:
https://blog.csdn.net/badao_liumang_qizhi
关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。
将布局改为linearLayout,并通过androID:orIEntation="vertical">设置为垂直布局,然后添加ID属性。
然后在res下values下新建arrays.xml,数组资源文件,用来存储下拉框的选项内容
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) { } }); }}总结
以上是内存溢出为你收集整理的Android中自定义xml文件给Spinner下拉框赋值并获取下拉选中的值全部内容,希望文章能够帮你解决Android中自定义xml文件给Spinner下拉框赋值并获取下拉选中的值所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)