1. 在drawable中设置背景spinner_style.xml 文件  如图: 2. 在 styles.xml 中添加该背景 3. 最后在 spinner 控件添加样式 4.参考 http://www.cnblogs.com/top5/archive/2012/05/10/2494763.html…
原文地址 http://android.blog.51cto.com/268543/564581 首先android的selector是在drawable/xxx.xml中配置的,相关图片放在同目录下. 先看一下listview中的状态: 把下面的XML文件保存成你自己命名的.xml文件(比如list_item_bg.xml),在系统使用时根据ListView中的列表项的状态来使用相应的背景图片. <?xml version="1.0" encoding="utf-8&…
shape和selector的结合使用 (2013-04-07 11:11:00) 转载▼   分类: android 1.Shape (1)作用:XML中定义的几何形状 (2)位置:res/drawable/文件的名称.xml (3)使用的方法: Java代码中:R.drawable.文件的名称 XML中:Android:background="@drawable/文件的名称" (4)shape 属性: <shape> Android:shape=["recta…
关于listview和button都要改变android原来控件的背景,在网上查找了一些资料不是很全,所以现在总结一下android的selector的用法.首先android的selector是在drawable/xxx.xml中配置的.先看一下listview中的状态:把下面的XML文件保存成你自己命名的.xml文件(比如list_item_bg.xml),在系统使用时根据ListView中的列表项的状态来使用相应的背景图片.drawable/list_item_bg.xml <?xml v…
Android中的Selector的用法 http://blog.csdn.net/shakespeare001/article/details/7788400#comments Android中的Selector主要是用来改变ListView和Button控件的默认背景  one template: <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http:…
http://blog.csdn.net/forsta/article/details/26148403 http://blog.csdn.net/wswqiang/article/details/6616306 http://blog.csdn.net/shakespeare001/article/details/7788400 在Android开发过程中,经常对某一View的背景在不同的状态下,设置不同的背景,增强用户体验.如果按钮,在按下时,背景变化,如果在代码中动态设置,相对比较麻烦.A…
1. 实现最简单的spinner xml文件,有一个TextView,一个Spinner: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_hei…
Android开发技巧--自定义控件之增加状态 题外话 这篇本该是上周四或上周五写的,无奈太久没写博客,前几段把我的兴头都用完了,就一拖再拖,直到今天.不想把这篇拖到下个月,所以还是先硬着头皮写了. <自定义控件>我也没想着要写多长或多短,只是介绍点知识,大部分都是自己积累和摸索的.网上有很多教如何自定义某某控件来做出很酷炫的效果的,但我想写的与这些不同.我平时所积累下来的知识,还是偏向于实用而匮乏于酷炫.而对于各种酷炫的效果,其实也是说不完写不尽的.掌握一定的数学及算法知识,再加上对API的…
Android 设置进度条背景 直接上代码 <ProgressBar android:id="@+id/progressBar" android:layout_width="match_parent" android:layout_height="20dp" android:layout_gravity="center_horizontal" android:indeterminateOnly="false&q…
列表选择框(Spinner)与Swing编程里面的Spinner不同,这里的Spinner其实就是一个列表选项框. Spinner是ViewGroup的间接子类,因此他也可作为容器使用. Spinner支持的常用XML属性和说明: XML属性 说明 android:prompt 设置该列表框的提示 android:entries 使用数组资源设置该下拉列表框的列表项目 啥都不说了我们看看代码: layout/main.xml <?xml version="1.0" encodin…