How to pass Listview selected item values to another activity

前端 未结 2 1097
春和景丽
春和景丽 2021-01-15 02:19

I have successfully added Images from a ListView to a detailed View, when an item in the list is clicked on.But how would I add longer descriptions (which would not be shown

2条回答
  •  忘掉有多难
    2021-01-15 02:55

    sending string:

    i.putExtra("longdesc", longdesc);
    

    reading string at destination:

    String longdesc = i.getStringExtra("longdesc");
    

提交回复
热议问题