我有一个用户创建事件的应用程序。用户需要从一个名称列表的 ListView 活动中检索某个名称。
我在单击链接到另一个活动(日历活动)的日期按钮后确保名称应保留在活动中,然后返回到当前活动时遇到问题。
我的 3 页代码:
ListView
Create_Events.java - 用于从活动中获取某个名称以及btnDate onClickListener
链接到另一个活动(日历活动)的代码
Bundle bundle = getIntent().getExtras();
if(bundle != null)
{
String date = bundle.getString("date");
txtDate.setText(date);
}
Bundle b = getIntent().getExtras();
if(b != null)
{
String name = bundle.getString("name");
txtName.setText("Create an event for:" +name);
}
buttonDate = (Button) findViewById(R.id.btnDate);
buttonDate.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
Intent calIntent = new Intent(Create_Events.this, Calendar_Event.class);
startActivity(calIntent);
}
});
ContactsList.java -- the ListView of the names which is passed to the Create_Events page.
Cursor cursor = null;
cursor = (Cursor) l.getItemAtPosition(position);
Intent intent = new Intent(ContactsList.this, Create_Events.class);
intent.putExtra("name", cursor.getString(cursor.getColumnIndex(buddyDB.KEY_NAME)));
startActivity(intent);
我需要这方面的帮助。
提供的任何帮助将不胜感激。提前致谢!=)