开发者

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

开发者 https://www.devze.com 2023-02-09 18:08 出处:网络
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 activ

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

精彩评论

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