mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 12:53:55 +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();
|
initDrawer();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void getOpenFacebookIntent(View view) {
|
public void launchFacebook(View view) {
|
||||||
|
|
||||||
Intent intent;
|
Intent intent;
|
||||||
try {
|
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\\"));
|
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/commons-app/apps-android-commons\\"));
|
||||||
startActivity(browserIntent);
|
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/\\"));
|
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://commons-app.github.io/\\"));
|
||||||
startActivity(browserIntent);
|
startActivity(browserIntent);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue