aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-06-09 22:19:58 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-06-09 22:19:58 -0600
commit2abb9ca5578efa6e73d2bca8fdb7338752754ea7 (patch)
treea84f298d0d428902040f98d39f41c4a5a613bec3 /app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
parent88958664407b4a10fbdd6f94380b6e8695507f05 (diff)
downloadwiimmfi-watcher-2abb9ca5578efa6e73d2bca8fdb7338752754ea7.tar
wiimmfi-watcher-2abb9ca5578efa6e73d2bca8fdb7338752754ea7.tar.gz
wiimmfi-watcher-2abb9ca5578efa6e73d2bca8fdb7338752754ea7.tar.bz2
organization
Diffstat (limited to 'app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java')
-rw-r--r--app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java108
1 files changed, 0 insertions, 108 deletions
diff --git a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
deleted file mode 100644
index 87f3def..0000000
--- a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
+++ /dev/null
@@ -1,108 +0,0 @@
-package me.brysonsteck.wiimmfiwatcher;
-
-import android.annotation.SuppressLint;
-import android.content.res.Configuration;
-import android.graphics.Color;
-import android.os.Bundle;
-import android.text.Html;
-import android.text.Spanned;
-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;
-import androidx.annotation.Nullable;
-import androidx.fragment.app.Fragment;
-
-import com.google.android.material.appbar.MaterialToolbar;
-
-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);
- toolbar.setTitle(R.string.about_fragment_title);
-
- TextView aboutWatcher = view.findViewById(R.id.about_watcher_text);
- TextView aboutMe = view.findViewById(R.id.about_me_text);
- 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);
- TextView version = view.findViewById(R.id.version_text);
-
- aboutWatcher.setText(R.string.about_watcher);
-
- aboutMe.setText(R.string.about_me);
-
- github.setClickable(true);
- github.setMovementMethod(LinkMovementMethod.getInstance());
-
- github.setText(R.string.github);
-
- 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);
-
- version.setClickable(true);
- version.setMovementMethod(LinkMovementMethod.getInstance());
-
- Spanned version_text = Html.fromHtml(getResources().getString(R.string.version, BuildConfig.VERSION_NAME));
-
- version.setText(version_text);
- }
-
- @Override
- public void onStop() {
- super.onStop();
- aboutButton.setVisibility(View.VISIBLE);
- toolbar.setTitle("Wiimmfi Watcher");
- }
- @Override
- public void onResume() {
- super.onResume();
- aboutButton.setVisibility(View.INVISIBLE);
- toolbar.setTitle(R.string.about_fragment_title);
- }
-
-}