diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-05-08 18:01:47 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-05-08 18:01:47 -0600 |
commit | 2c540ef7ce473fbd681c42959a51224be4784eb7 (patch) | |
tree | 634a6cd2e8993496445a611f484c1e2da07bcc23 /app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java | |
parent | fc908199f136acd2a5030e5085f024857cd2cfb5 (diff) | |
download | wiimmfi-watcher-2c540ef7ce473fbd681c42959a51224be4784eb7.tar wiimmfi-watcher-2c540ef7ce473fbd681c42959a51224be4784eb7.tar.gz wiimmfi-watcher-2c540ef7ce473fbd681c42959a51224be4784eb7.tar.bz2 |
added about fragment
Diffstat (limited to 'app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java')
-rw-r--r-- | app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java new file mode 100644 index 0000000..7851977 --- /dev/null +++ b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java @@ -0,0 +1,18 @@ +package me.brysonsteck.wiimmfiwatcher; + +import android.os.Bundle; +import android.view.View; + +import androidx.annotation.NonNull; +import androidx.annotation.Nullable; +import androidx.fragment.app.Fragment; + +public class AboutFragment extends Fragment { + public AboutFragment() { super(R.layout.about_fragment); } + + @Override + public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) { + super.onViewCreated(view, savedInstanceState); + } + +} |