下面的字符串數組是,我做了檢索字符串數組項目代碼:的Android - 檢索資源
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開始,資源字段不能用作開關情況。 調用此修復程序以獲取更多信息。
是啊,我可以爲您提供從快照仿真器如果你想看。我只是跳過使用變量** x **以及try catch塊,因爲沒有提供** count()**的定義。 –
您是否正在使用具有資源ID的交換機?檢查[這](http://stackoverflow.com/questions/8387777/what-is-migrate-android-code) –
我解決它..這只是因爲我搬出了從strings.xml的app_name LOL –