add a Google Plus link in About section

This commit is contained in:
tibbi
2016-06-27 23:20:43 +02:00
parent 8dc62dcaf1
commit d8d5a42b75
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)));
}
}