From 82f516545a0db33784cf5e7f5abf4c230040e5e5 Mon Sep 17 00:00:00 2001 From: Eugeni S Date: Mon, 18 Apr 2016 20:14:49 +0200 Subject: [PATCH] Add url of the git repository --- .../apps/xenione/com/swipelayout/example/MainActivity.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/apps/xenione/com/swipelayout/example/MainActivity.java b/app/src/main/java/apps/xenione/com/swipelayout/example/MainActivity.java index 04ba59a..f0bb081 100644 --- a/app/src/main/java/apps/xenione/com/swipelayout/example/MainActivity.java +++ b/app/src/main/java/apps/xenione/com/swipelayout/example/MainActivity.java @@ -94,8 +94,8 @@ private void showFragment(Fragment fragment, String tag) { private void launchSharer() { Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); - sendIntent.putExtra(Intent.EXTRA_TEXT, "Hi, I found on google play that awesome swipe library. Have a look !!! "); - sendIntent.setType("text/plain"); + sendIntent.putExtra(Intent.EXTRA_TEXT, "Hi, I found on google play that awesome swipe library at https://github.com/xenione/SwipeLayout. Have a look !!! "); + sendIntent.setType("text/html"); startActivity(Intent.createChooser(sendIntent, getResources().getText(R.string.send_to))); } }