下面是我为检索字符串数组项所做的代码:
String[] menuArray;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ScrollView sv = new ScrollView(this);
LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.VERTICAL);
sv.addView(ll);
// Create an ArrayAdapter that will contain all list items
ArrayAdapter<String> adapter;
menuArray = getResources().getStringArray(R.array.menu);
for(int i = 0; i < menuArray.length; i++)
{
Button b = new Button(this);
b.setText(menuArray[i]);
ll.addView(b);
}
this.setContentView(sv);
}
这是 strings.xml 文件:
<string-array name="menu">
<item>1</item>
<item>2</item>
<item>3</item>
</string-array>
但是,要编译的R.array.menu 存在此问题:从 ADT 14 开始,资源字段不能用作切换案例。调用此修复程序以获取更多信息。