mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
Refactored function names
This commit is contained in:
parent
9b9a577b00
commit
ca43dbcef1
1 changed files with 3 additions and 3 deletions
|
|
@ -37,7 +37,7 @@ public class AboutActivity extends NavigationBaseActivity {
|
|||
initDrawer();
|
||||
}
|
||||
|
||||
public void getOpenFacebookIntent(View view) {
|
||||
public void launchFacebook(View view) {
|
||||
|
||||
Intent intent;
|
||||
try {
|
||||
|
|
@ -50,13 +50,13 @@ public class AboutActivity extends NavigationBaseActivity {
|
|||
|
||||
}
|
||||
|
||||
public void getOpenGithubIntent(View view) {
|
||||
public void launchGithub(View view) {
|
||||
|
||||
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/commons-app/apps-android-commons\\"));
|
||||
startActivity(browserIntent);
|
||||
}
|
||||
|
||||
public void getOpenWebsiteIntent(View view) {
|
||||
public void launchWebsite(View view) {
|
||||
|
||||
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://commons-app.github.io/\\"));
|
||||
startActivity(browserIntent);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue