forece select activity when opening with browser

This commit is contained in:
Christian Schabesberger 2018-01-09 14:02:32 +01:00
parent 33d75fd2fb
commit 6a631e1915
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ public abstract class BaseStateFragment<I> extends BaseFragment implements ViewC
protected void openUrlInBrowser(String url) {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);
startActivity(Intent.createChooser(intent, activity.getString(R.string.share_dialog_title)));
}
protected void shareUrl(String url) {