我使用以下代码在 Twitter 上发布了一条推文。
String tweetUrl = "https://twitter.com/intent/tweet?text="+"Text to be posted".replace(" ", "%20")
+ " https://www.someurl.com";
Uri uri = Uri.parse(tweetUrl);
startActivity(new Intent(Intent.ACTION_VIEW, uri));
它工作正常。但问题是它在推文发布后仍停留在同一页面上。发送推文后如何重定向回相同的活动?