From 2c540ef7ce473fbd681c42959a51224be4784eb7 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Sat, 8 May 2021 18:01:47 -0600 Subject: added about fragment --- .../me/brysonsteck/wiimmfiwatcher/AboutFragment.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java (limited to 'app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java') 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); + } + +} -- cgit v1.2.3