blob: a0229ffb2b3ee48f0bc0c5d97d441b58a96322ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
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;
import androidx.annotation.Nullable;
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);
toolbar.setTitle("About Wiimmfi Watcher");
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);
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!");
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);
}
@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("About Wiimmfi Watcher");
}
}
|