-3
如何通過從用戶輸入動態地將數據添加到Java對象?沒有使用數據庫的 可能嗎?如果可能如何?顯示小例 在此先感謝動態地從用戶輸入向數組列表中添加值
如何通過從用戶輸入動態地將數據添加到Java對象?沒有使用數據庫的 可能嗎?如果可能如何?顯示小例 在此先感謝動態地從用戶輸入向數組列表中添加值
Button button=(Button)findViewById(R.id.myButton);
EditText myText=(EditText)findViewById(R.id.myEditText);
button.setOnClickListener(new OnClickListener(){public void onClick(View v){
myArrayList.add(myText.getText().toString());
請檢查此http://developer.android.com/guide/topics/data/data-storage.html – Rgv