aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java')
-rw-r--r--app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java37
1 files changed, 34 insertions, 3 deletions
diff --git a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
index aaf9073..a0229ff 100644
--- a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
+++ b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
@@ -1,9 +1,13 @@
package me.brysonsteck.wiimmfiwatcher;
import android.annotation.SuppressLint;
+import android.content.res.Configuration;
+import android.graphics.Color;
import android.os.Bundle;
import android.text.method.LinkMovementMethod;
+import android.transition.TransitionInflater;
import android.view.View;
+import android.widget.ScrollView;
import android.widget.TextView;
import androidx.annotation.NonNull;
@@ -12,18 +16,37 @@ import androidx.fragment.app.Fragment;
import com.google.android.material.appbar.MaterialToolbar;
+import java.util.Objects;
+
public class AboutFragment extends Fragment {
View aboutButton;
MaterialToolbar toolbar;
+ ScrollView scrollView;
public AboutFragment() {
super(R.layout.about_fragment);
}
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ TransitionInflater inflater = TransitionInflater.from(requireContext());
+ setEnterTransition(inflater.inflateTransition(R.transition.slide_right));
+ setExitTransition(inflater.inflateTransition(R.transition.slide_right));
+ }
@SuppressLint("SetTextI18n")
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
+ scrollView = view.findViewById(R.id.about_view);
+
+ int nightModeFlags =
+ getContext().getResources().getConfiguration().uiMode &
+ Configuration.UI_MODE_NIGHT_MASK;
+ if (nightModeFlags == Configuration.UI_MODE_NIGHT_YES) {
+ // Night mode is active, we're using dark theme
+ scrollView.setBackgroundColor(Color.parseColor("#151515"));
+ }
aboutButton = getActivity().findViewById(R.id.about_button);
toolbar = getActivity().findViewById(R.id.toolbar);
@@ -34,10 +57,11 @@ public class AboutFragment extends Fragment {
TextView github = view.findViewById(R.id.github_text);
TextView contact = view.findViewById(R.id.contact_text);
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 Mario Kart Wii matches on your phone in a quick and easy way. " +
+ "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. " +
@@ -49,13 +73,20 @@ public class AboutFragment extends Fragment {
github.setText(R.string.github);
- contact.setText("If you would like to get ahold of me for any reason unrelated to bug reports or this app in general, you can contact me through email at steck.bryson@gmail.com " +
- "or on Discord at bryzinga#9971.");
+ contact.setClickable(true);
+ contact.setMovementMethod(LinkMovementMethod.getInstance());
+
+ contact.setText(R.string.contact);
bugs.setClickable(true);
bugs.setMovementMethod(LinkMovementMethod.getInstance());
bugs.setText(R.string.bugs);
+
+ license.setClickable(true);
+ license.setMovementMethod(LinkMovementMethod.getInstance());
+
+ license.setText(R.string.license);
}
@Override