标签:android style blog http io ar color sp java
实现效果:
在布局中声明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);
标签:android style blog http io ar color sp java
原文地址:http://blog.csdn.net/zhaoyazhi2129/article/details/41544993