Spainner
a. 资源文件配置
第一步: 在string .xml配置
<string name="city">城市</string>
<string-array name="citys">
<item>上海</item>
<item>长沙</item>
<item>大益阳</item>
</string-array>
第二步: 指定资源
Android :entries = "@array/citys"
b. 适配器配置
第一种: 资源配置
arrayAdapter<CharSequence> adapte =
ArrayAdapter . createFromResource(this, 资源id ,列表显示的样式);
第二种:列表配置
ArrayAdapter<CharSequence> adapte = new
ArrayAdapter <CharSequence> (this, 列表显示的样式. 集合数据);