add a Google Plus link in the About section

This commit is contained in:
tibbi
2016-06-27 23:26:52 +02:00
parent 16ea1fba5c
commit b8676b2309
7 changed files with 15 additions and 0 deletions

View File

@ -73,4 +73,10 @@ public class AboutActivity extends AppCompatActivity {
}
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(link)));
}
@OnClick(R.id.about_gplus)
public void googlePlusClicked() {
final String link = "https://plus.google.com/communities/104880861558693868382";
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(link)));
}
}