0

我的问题与这些问题非常相似:

是否可以使用共享意图共享多个文本?

在共享意图中传递多个文本/纯文本值

我已经尝试了建议的解决方案,但没有奏效。我正在尝试发送两个项目:共享意图中的“名称”和“到达时间”。通过 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;
    }
4

1 回答 1

1

您可以连接两个stationShareStationNamestationShareArrivalTime并制作单个字符串。您还可以在这些变量(“\n”)之间使用换行符,如下所示:

public Intent createShareIntent()
{
    String stationShareStationName ="xxx";
    String stationShareArrivalTime = "xxx";
    String data =stationShareStationName + "\n" + stationShareArrivalTime

    Intent shareIntent = new Intent(Intent.ACTION_SEND);
    shareIntent.setType("text/plain");
    shareIntent.putExtra(Intent.EXTRA_TEXT,data);
    return shareIntent;
}
于 2019-01-16T10:26:58.573 回答