我在我的應用程序中有一個共享按鈕,其目的是share
與user selected app
(例如Twitter或Gmail)的信息字符串。問題是當你點擊分享按鈕時,共享窗口出現,應用程序在後臺變黑。 完成共享之後,用戶將返回到菜單/主屏幕,並且必須再次打開該應用程序才能繼續使用它從他們離開的地方。關閉共享對話框後導航迴應用程序
我需要的是在完成共享後返回到我的應用程序。
這是我用過的OnClickListener:
shareButton.setOnClickListener(
new View.OnClickListener() {
@Override
public void onClick(View view) {
String text = mContext.getString(R.string.shareText) + " " + profileInfo.getName() + " " + mContext.getString(R.string.shareText2);
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_TEXT, text);
shareIntent.setType("text/plain");
startActivity(shareIntent);
}
}
);
什麼我錯在這裏做什麼?任何幫助表示讚賞。