상태를 저장하는 것에 관해서는 혼란 스럽습니다. 그래서 onSaveInstanceState(Bundle)
활동이 파괴 되려고 할 때 호출 된다는 것을 알고 있습니다. 그러나 정보를 어떻게 저장하고 원래 상태로 되돌릴 수 onCreate(Bundle savedInstanceState)
있습니까? 이 번들이 정보를 복원하는 방법을 이해하지 못합니다. 누군가가 예를 들어 줄 수 있다면 도움이 될 것입니다. 개발자 가이드는 이것을 잘 설명하지 못합니다.
public class Conversation extends Activity {
private ProgressDialog progDialog;
int typeBar;
TextView text1;
EditText edit;
Button respond;
private String name;
private String textAtView;
private String savedName;
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.dorothydialog);
text1 = (TextView)findViewById(R.id.dialog);
edit = (EditText)findViewById(R.id.repsond);
respond = (Button)findViewById(R.id.button01);
if(savedInstanceState != null){
savedInstanceState.get(savedName);
text1.setText(savedName);
}
else{
text1.setText("Hello! What is your name?");
respond.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
name = edit.getText().toString();
text1.setText("Nice to meet you "+ name);
}
});
}
}
@Override
public void onSaveInstanceState(Bundle outState){
super.onSaveInstanceState(outState);
outState.putString(savedName, name);
}
}