开发者

when the particular list in the item is clicked .it loads the data in the particular list

when the particular list in the item is clicked .it loads the data in the p开发者_StackOverflow社区articular list and send that data to the another activity and set that data in edittext in that activity .how it can be done?pls help me??


Nobody will do your work, post some code and we'll help you where you get stuck.
In general you do this with an Intent in the OnClick method

Example:

private static final int REQUEST_EDIT = 1;
...
 Intent intent = new Intent(this, MyEditActivity.class);
 intent.putExtra("module", m);
 intent.putExtra("position", listPosition);
 startActivityForResult(intent, REQUEST_EDIT);
...
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜