怎么在spinner显示分隔线我使用过listview

怎么在spinner显示分隔线我使用过listview,第1张

在layout文件里为每一个item的下面都添加一条分隔线。 <?xml version="1.0" encoding="utf-8"?>

<RelativeLayout android:id="@+id/RelativeLayout01"

android:layout_width="fill_parent" android:layout_height="fill_parent"

xmlns:android="http://schemas.android.com/apk/res/android" style="@style/ListItem2">

<TextView android:id="@+id/Text" android:layout_width="fill_parent"

android:layout_height="wrap_content" android:layout_alignParentLeft="true"

style="@style/SpinnerView_Text" android:paddingLeft="10dip" />

<ImageView android:id="@+id/icon" android:layout_width="wrap_content"

android:layout_height="wrap_content" android:src="@drawable/arrowright"

android:layout_alignParentRight="true" android:layout_centerInParent="true"

android:layout_marginRight="20dip" />

</RelativeLayout>

<ImageView android:id="@+id/Divider1" android:layout_width="fill_parent"

android:layout_height="1dip" style="@style/Divider"></ImageView>

android中的spinner控件是表示下拉菜单的意思,按照如下步骤使用:

1、首先使用Android studio创建一个项目,如下图:

2、打开该项目的XML布局文件,文件代码如下图:

3、在XML文件中加入spinner控件,并增加如下属性,如下图:

4、最后去类中绑定控件,并添加数据即可使用。

在 drawable 包下, 新建一个xml文件 spinner_background.xml , 自定义Spinner的背景:

在 res/values/styles.xml 中添加一个style, 然后在Spinner添加这个Theme:

在想要添加Spinner控件的layout里添加Spinner控件:

这里我在 res/values 中添加了一个 str_array_services.xml :

那些 @string/xxx 在 strings.xml 定义这些字符串.(这里为了更好的耦合性, 可以设置成多个语言版本)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11801399.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存