diff --git a/app/src/main/java/com/simplemobiletools/calculator/activities/AboutActivity.java b/app/src/main/java/com/simplemobiletools/calculator/activities/AboutActivity.java
index 1b5cec62..665cc2a7 100644
--- a/app/src/main/java/com/simplemobiletools/calculator/activities/AboutActivity.java
+++ b/app/src/main/java/com/simplemobiletools/calculator/activities/AboutActivity.java
@@ -60,13 +60,24 @@ public class AboutActivity extends SimpleActivity {
}
}
+ @OnClick(R.id.about_invite)
+ public void inviteFriend() {
+ final Intent intent = new Intent();
+ final String text = String.format(getString(R.string.share_text), getString(R.string.app_name), getStoreUrl());
+ intent.setAction(Intent.ACTION_SEND);
+ intent.putExtra(Intent.EXTRA_SUBJECT, getString(R.string.app_name));
+ intent.putExtra(Intent.EXTRA_TEXT, text);
+ intent.setType("text/plain");
+ startActivity(Intent.createChooser(intent, getString(R.string.invite_via)));
+ }
+
@OnClick(R.id.about_rate_us)
public void rateUsClicked() {
final Uri uri = Uri.parse("market://details?id=" + getPackageName());
try {
startActivity(new Intent(Intent.ACTION_VIEW, uri));
} catch (ActivityNotFoundException ignored) {
- startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id=" + getPackageName())));
+ startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(getStoreUrl())));
}
}
@@ -92,4 +103,8 @@ public class AboutActivity extends SimpleActivity {
final String link = "https://plus.google.com/communities/104880861558693868382";
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(link)));
}
+
+ private String getStoreUrl() {
+ return "https://play.google.com/store/apps/details?id=" + getPackageName();
+ }
}
diff --git a/app/src/main/res/layout/activity_about.xml b/app/src/main/res/layout/activity_about.xml
index d0157ec2..f43c95dd 100644
--- a/app/src/main/res/layout/activity_about.xml
+++ b/app/src/main/res/layout/activity_about.xml
@@ -38,12 +38,22 @@
android:text="@string/email"/>
+
+
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
index ceebc5f9..0ae128aa 100644
--- a/app/src/main/res/values-it/strings.xml
+++ b/app/src/main/res/values-it/strings.xml
@@ -7,6 +7,9 @@
Altre semplici app e codici sorgenti in:\nhttp://simplemobiletools.com
Invia la tua opinione o i tuoi suggerimenti a:
Licenze di terze parti
+ Invite friends
+ Hey, come check out %1$s at %2$s
+ Invite via
Dacci un voto sul Play Store
Seguici:
v %1$s\nCopyright © Simple Mobile Tools %2$d
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index 0c60ffe4..d4975a5a 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -7,6 +7,9 @@
もっとシンプルなアプリとソースコードは:\nhttp://simplemobiletools.com
ご意見やご提案をお送りください:
サードパーティー ライセンス
+ Invite friends
+ Hey, come check out %1$s at %2$s
+ Invite via
Play ストアで評価してください
フォローしてください:
v %1$s\nCopyright © Simple Mobile Tools %2$d
diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml
index 3161c548..d26a5525 100644
--- a/app/src/main/res/values-sv/strings.xml
+++ b/app/src/main/res/values-sv/strings.xml
@@ -7,6 +7,9 @@
Fler enkla appar och källkod här:\nhttp://simplemobiletools.com
Skicka feedback och förslag till:
Tredjepartslicenser
+ Invite friends
+ Hey, come check out %1$s at %2$s
+ Invite via
Betygsätt oss i Play Butiken
Följ oss:
v %1$s\nCopyright © Simple Mobile Tools %2$d
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index bf0db01f..11335c90 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -8,6 +8,9 @@
Send your feedback or suggestions to:
hello@simplemobiletools.com
Third party licences
+ Invite friends
+ Hey, come check out %1$s at %2$s
+ Invite via
Rate us in the Play Store
Follow us:
v %1$s\nCopyright © Simple Mobile Tools %2$d