使用onContextItemSelected将数据发送到新页面

时间:2014-11-28 18:11:15

标签: java android json api listview

我目前正在使用ebay api接收数据,我将其显示在listview上。在列表视图中,我只显示有关该项目的4个详细信息,但是当我长时间单击该项目时,我想在另一个页面上显示所有信息。在onContextItemSelected中,我目前有这个。

Intent data = new Intent();
                ebayItem.packageIntent(data, a.getItemID(),a.getViewItemURLForNaturalSearch(),a.getEndTime(),
                a.getListingType(),a.getGalleryURL(),a.getTitle());
                startActivity(new Intent(SecondPage.this,
                        ThirdPage.class)); 

如何将此意图包发送到新页面

0 个答案:

没有答案