フォームを作成し、詳細をデータベースに保存できましたが、ユーザーが同じアクティビティに到達したときに、保存した詳細を TextView に表示したいと考えています。私のフォームの現在のコードは次のとおりです。
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.emailsettings);
nameTU = (EditText) findViewById(R.id.text_username);
nameTP = (EditText) findViewById(R.id.text_password);
nameTO = (EditText) findViewById(R.id.text_to);
Bundle extras = getIntent().getExtras();
if (extras != null)
{
rowID = extras.getLong("row_id");
nameTU.setText(extras.getString("username"));
nameTP.setText(extras.getString("password"));
nameTO.setText(extras.getString("id_to"));
}
}
私が欲しいのは、ページの読み込み時に保存されたデータを text_username、text_password、および text_to に表示することであり、これらはすべて TextView です。
ありがとう。