版权声明:您好,转载请留下原文地址http://blog.csdn.net/jaychan_95318/article/details/58602756,谢谢
Spinner是android的一个下拉列表的控件,默认使用的条目布局文件是android的资源目录下的simple_list_item1.xml文件
下面是spinner的简单使用
跑起来的效果如下
看起来是很不错,可以如果想要让条目的字体加粗或者修改下字体颜色该怎么做? 很简单,让我们先看一下simple_list_item1.xml的内容
原来只是一个TextView而已,由于不能直接在这个文件上修改,我们copy这个文件的内容,然后新建一个布局文件spinner_custom.xml 然后修改一下,让字体加粗还有字体颜色也加一下
<?xml version="1.0" encoding="utf-8"?><TextView xmlns:android="http://schemas.android.com/apk/res/android" style="?attr/spinnerDropDownItemStyle" android:singleLine="true" android:textColor="#787878" android:layout_width="match_parent" android:layout_height="?attr/dropdownListPReferredItemHeight" android:textStyle="bold" android:ellipsize="end" />然后修改MainActivity
跑起来看看
效果果然改变了!
新闻热点
疑难解答