diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-08-11 22:05:39 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-08-11 22:05:39 -0600 |
commit | fb51cefd42871cc470253edbe9616706bfbd2361 (patch) | |
tree | 060d8848a9a630ffe2a1b41442c6f746822f9e12 /app/src/main/res/menu/top_app_bar_main.xml | |
parent | 5977cfeb9bfe5efcc3457d3fdf2d10f24e5ac395 (diff) | |
download | wiimmfi-watcher-fb51cefd42871cc470253edbe9616706bfbd2361.tar wiimmfi-watcher-fb51cefd42871cc470253edbe9616706bfbd2361.tar.gz wiimmfi-watcher-fb51cefd42871cc470253edbe9616706bfbd2361.tar.bz2 |
figured out preferences, going to bed now
Diffstat (limited to 'app/src/main/res/menu/top_app_bar_main.xml')
-rw-r--r-- | app/src/main/res/menu/top_app_bar_main.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/src/main/res/menu/top_app_bar_main.xml b/app/src/main/res/menu/top_app_bar_main.xml new file mode 100644 index 0000000..6d34708 --- /dev/null +++ b/app/src/main/res/menu/top_app_bar_main.xml @@ -0,0 +1,18 @@ +<menu xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + + <item + android:id="@+id/about_button" + android:icon="@drawable/ic_baseline_info_24" + android:title="About" + android:visible="false" + app:showAsAction="ifRoom" /> + + <item + android:id="@+id/settings_button" + android:icon="@drawable/ic_baseline_settings_24" + android:visible="true" + app:showAsAction="ifRoom" + android:title="Settings" /> + +</menu>
\ No newline at end of file |