我的问题与这些问题非常相似:
我已经尝试了建议的解决方案,但没有奏效。我正在尝试发送两个项目:共享意图中的“名称”和“到达时间”。通过 AsyncTask 和 RecyclerView 将两个文本(字符串)下载到活动中的数据在下面的方法中。
//初始化
Schedule stationArrival;
private String stationShareStationName;
private String stationShareArrivalTime;
@Override
public void returnScheduleData(ArrayList<Schedule> simpleJsonScheduleData)
{
if (simpleJsonScheduleData.size() > 0) {
scheduleAdapter = new ScheduleAdapter(simpleJsonScheduleData, StationScheduleActivity.this);
scheduleArrayList = simpleJsonScheduleData;
mScheduleRecyclerView.setAdapter(scheduleAdapter);
scheduleAdapter.setScheduleList(scheduleArrayList);
stationArrival = scheduleArrayList.get(0);
stationShareStationName = stationArrival.getStationScheduleName();
stationShareArrivalTime = stationArrival.getExpectedArrival();
}
else
{
Toast.makeText(StationScheduleActivity.this, "Data currently unavailable", Toast.LENGTH_SHORT).show();
}
if (mShareActionProvider != null)
{
mShareActionProvider.setShareIntent(createShareIntent());
}
}
ShareIntent 代码。目前这是错误的,因为共享屏幕中仅显示一项。我试图将这两个项目放入一个 ArrayList 中,但它不起作用,因为我有一个单独的 ShareIntent 方法。有没有办法在不重组当前代码的情况下做到这一点?先感谢您。
public Intent createShareIntent()
{
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_TEXT,stationShareStationName);
shareIntent.putExtra(Intent.EXTRA_TEXT,stationShareArrivalTime);
return shareIntent;
}