0
嘿傢伙我試圖創建一個菜單使用列表視圖與我已經顯示在下面的代碼。我所顯示的代碼將在列表中顯示Item1,Item2和Item3。現在我想能夠將item1和item2添加到微調器中。那可能嗎?如果是的話,我會如何去做。與Android中的微調列表視圖
public class MyList extends ListActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String[] MyList = new String[] { "Item1","Item2","Item3"};
setListAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, MyList));
}