以下は、文字列配列項目を取得するために作成したコードです。
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の時点では、リソースフィールドはスイッチケース。詳細情報を取得するには、この修正プログラムを呼び出してください。
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();
}
すべてのレイアウトにレイアウトの高さと幅を与えようとします。
リソースから文字列配列を取得する方法:
array.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はすでに質問に回答しましたが、質問のタイトルに基づいて、他の人がこの回答を探してここに来るかもしれません。)