首页 > 代码库 > 自定义spinner字体颜色
自定义spinner字体颜色
实现效果:
在布局中声明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字体颜色
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。