我在活动A 中有一个listView
,其中所有数据都是从SQLite
检索到的。现在,我希望在单击列表时将数据传递给另一个新活动。我怎样才能做到这一点?
活动A
活动A中有两个列表,假设点击了第一个列表,我希望它将数据传递给B.
listViewUpdate.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> listView, View view,
int position, long id) {
// Get the cursor, positioned to the corresponding listview_item_row in the result set
Intent intent=new Intent(getActivity(),B.class);
startActivity(intent);
}
});
我的活动B的某些部分
public class Edit_Details extends AppCompatActivity {
EditText Description,TimeIn,TimeOut;
String description;
SeekBar seekBar;
TextView progressText;
int progress=0;
SQLiteDatabase database;
MyDatabaseHelper dbHelper;
Cursor cursor;
private com.example.project.myapplication.API.WorkDetailsAPI WD;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.edit_details);
Project=(Spinner)findViewById(R.id.SpinnerProject);
final String ID=getIntent().getStringExtra("ID"); // should be position?
WD = new com.example.project.myapplication.API.WorkDetailsAPI(getApplication());
Description=(EditText)findViewById(R.id.editTextWorkDescription);
TimeIn=(EditText)findViewById(R.id.TimeIn);
TimeOut=(EditText)findViewById(R.id.TimeOut);
seekBar=(SeekBar)findViewById(R.id.seekBarPercentage);
progressText=(TextView)findViewById(R.id.textProgress);
progressText.setText("Covered:" + "" + seekBar.getProgress() + "/" + seekBar.getMax());
Log.e("ID", ID);
RetrieveDetails(ID); // how to get the position ?
}
public void RetrieveDetails(long ID)
{
final long id=ID;
database=dbHelper.getWritableDatabase();
cursor=database.rawQuery("SELECT SubContractors, NumberOfPerson, NumberOfHours FROM " + MyDatabaseHelper.TABLE_WORKFORCE+ " WHERE _id= ? ",
new String[]{String.valueOf(id)}, null);
Details d=new Details();
if(cursor!=null) {
while (cursor.moveToNext())
{
description=cursor.getString(cursor.getColumnIndexOrThrow(MyDatabaseHelper.WorkDescription));
d.setWorkDescription(description);
Description.setText(description); // display learn java on editText
}
}
}
}
我需要知道如何让新活动记住点击的列表项,然后从A中提取所有信息并显示在新活动中。如果这是有道理的...谢谢!
EG。记住精益java并在B
上显示答案 0 :(得分:4)
在活动A中,将数据添加到这样的意图
Intent intent = new Intent(A.this, B.class);
intent.putextra("keyName","value");
startActivity(intent);
在活动B中,检索此类数据
String data = getIntent().getExtras().getString("keyName");
您可以添加多个键值对。
编辑:
如果您有一个对象说Data
,其中包含描述,进度,......的值,您可以使用onItemClick()
listViewUpdate.setOnItemClickListener(...)
内的下面的代码来获取它。
Data data = (Data) listView.getAdapter().getItem(position);
并传递意图中的整个对象。
如果您不熟悉我们如何在意图中传递对象,那么这个SO unique
可能对您有所帮助。