码迷,mamicode.com
首页 > 其他好文 > 详细

自定义spinner字体颜色

时间:2014-11-27 14:31:48      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   io   ar   color   sp   java   

实现效果:

bubuko.com,布布扣      bubuko.com,布布扣

在布局中声明spinner

 <Spinner
        android:id="@+id/sp_kc_term"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:animationCache="true"
        android:drawSelectorOnTop="true" />


在layout中定义simple_spinner_item.xml

<?xml version="1.0" encoding="utf-8"?>
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/text1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    android:paddingLeft="5dip"
    android:paddingRight="5dip"
    android:singleLine="true"
    android:textColor="#333333" />


java代码

	/*
		 * 学期spinner
		 */
		ArrayAdapter<String> termAdapter = new ArrayAdapter<String>(
				getBaseContext(), R.layout.simple_spinner_item);
		String level[] = getResources().getStringArray(R.array.spkcterm);// 资源文件
		for (int j = 0; j < level.length; j++) {
			termAdapter.add(level[j]);
		}
		termAdapter
				.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
		spKcTerm.setAdapter(termAdapter);


自定义spinner字体颜色

标签:android   style   blog   http   io   ar   color   sp   java   

原文地址:http://blog.csdn.net/zhaoyazhi2129/article/details/41544993

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!