aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-05-21 08:23:26 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-05-21 08:23:26 -0600
commit377487c04e1e1dc0636f923e0405911f853f1521 (patch)
treec599150fc3ab81c79d66e50b3fdc12d5d9e2e58c /app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
parente700953ebbe12d1af8d786eb9250e39ad5fc3ef5 (diff)
downloadwiimmfi-watcher-377487c04e1e1dc0636f923e0405911f853f1521.tar
wiimmfi-watcher-377487c04e1e1dc0636f923e0405911f853f1521.tar.gz
wiimmfi-watcher-377487c04e1e1dc0636f923e0405911f853f1521.tar.bz2
added a new error if jsoup throws exception
Diffstat (limited to 'app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java')
-rw-r--r--app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java11
1 files changed, 3 insertions, 8 deletions
diff --git a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
index a0229ff..4624864 100644
--- a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
+++ b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
@@ -59,14 +59,9 @@ public class AboutFragment extends Fragment {
TextView bugs = view.findViewById(R.id.bugs_text);
TextView license = view.findViewById(R.id.license_text);
- aboutWatcher.setText("Wiimmfi Watcher is an UNOFFICIAL application created for a school project that I have decided to turn into a full application. " +
- "This application was made to provide an easy shortcut to the Wiimmfi website and display data in a mobile friendly way, since the official website doesn't have a mobile friendly version. " +
- "Free and open source, you can watch your Wiimmfi matches on your phone in a quick and easy way. " +
- "");
-
- aboutMe.setText("Hi there! My name is Bryson Steck. I am a student studying Computer Science. This is my first official application that I'm maintaining. " +
- "This whole \"application on the Google Play Store\" thing is new to me, so please be patient as I am learning how to maintain something like this. " +
- "I hope you enjoy!");
+ aboutWatcher.setText(R.string.about_watcher);
+
+ aboutMe.setText(R.string.about_me);
github.setClickable(true);
github.setMovementMethod(LinkMovementMethod.getInstance());