我编写了这个应用程序,以获取EditText中的任何内容,并将其作为一种“待办事项”列表放在TextView中。如何将生成的TextViews设置为保存到列表中,这样无论应用程序打开多久都会显示相同的数据?
这是我到目前为止为TextView做的代码:
// Adds text to the Notes section
public void sendText(View view) {
llNotes = (LinearLayout) findViewById(R.id.llNotes);
etNotes = (EditText) findViewById(R.id.etNotes);
String message = etNotes.getText().toString();
TextView text = new TextView(this);
text.setText(message);
text.setPadding(5, 2, 2, 0);
text.setTextSize(18);
llNotes.addView(text);
}
谢谢你看看!
答案 0 :(得分:0)
如果我理解你的问题,那么这就是你想要阅读的教程:Recreating an Activity。
提示:要轻松测试,请转到System Settings
- > Developer Settings
- > Don't keep activities
。