Browse Source
proper share link chooser
renovate/org.robolectric-robolectric-4.x
Austin Huang
4 years ago
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
1 changed files with
1 additions and
1 deletions
-
app/src/main/java/awais/instagrabber/fragments/main/ProfileFragment.java
|
|
@ -583,7 +583,7 @@ public class ProfileFragment extends Fragment implements SwipeRefreshLayout.OnRe |
|
|
|
final Intent sharingIntent = new Intent(Intent.ACTION_SEND); |
|
|
|
sharingIntent.setType("text/plain"); |
|
|
|
sharingIntent.putExtra(Intent.EXTRA_TEXT, "https://instagram.com/" + profileModel.getUsername()); |
|
|
|
startActivity(sharingIntent); |
|
|
|
startActivity(Intent.createChooser(sharingIntent, null)); |
|
|
|
return true; |
|
|
|
} else if (itemId == R.id.share_dm) { |
|
|
|
// final UserSearchNavGraphDirections.ActionGlobalUserSearch actionGlobalUserSearch = UserSearchFragmentDirections |
|
|
|