41

下面是我为检索字符串数组项所做的代码:

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 开始,资源字段不能用作切换案例。调用此修复程序以获取更多信息。

4

2 回答 2

78

如何从资源中检索字符串数组:

数组.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string-array name="my_string_array">
        <item>one</item>
        <item>two</item>
        <item>three</item>
    </string-array>

</resources>

代码

String[] stringArray = getResources().getStringArray(R.array.my_string_array);

(OP 已经回答了他们的问题,但根据问题标题,其他人可能会来这里寻找这个答案。)

于 2017-08-28T07:24:39.970 回答
8
for(int i = 0;i<menuArray.length; i++) 
{
    Button b = new Button(this);
    b.setText(menuArray[i]);
    ll.addView(b);
}

删除以下语句

 try {
        x = count();
    } catch (IOException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }

并尝试为所有布局提供布局高度和宽度..

于 2012-05-10T12:28:32.570 回答