diff options
author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-05-31 15:15:39 +0200 |
---|---|---|
committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-05-31 15:15:39 +0200 |
commit | fc2156374611421c242ff7d65315f52fe57ceecf (patch) | |
tree | bbc122054ed71e1032dfbc2e022f202cae28e0c2 /app/src/main/res/menu | |
parent | eea218eda48b3a35a4940d2525b8b7a9fa316ee7 (diff) |
Adding the base of bottom navigation.
Also changing the the prev and next button for top manga
Diffstat (limited to 'app/src/main/res/menu')
-rw-r--r-- | app/src/main/res/menu/bottom_nav_menu.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/src/main/res/menu/bottom_nav_menu.xml b/app/src/main/res/menu/bottom_nav_menu.xml new file mode 100644 index 0000000..0ea00a0 --- /dev/null +++ b/app/src/main/res/menu/bottom_nav_menu.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<menu xmlns:android="http://schemas.android.com/apk/res/android"> + + <item + android:id="@+id/navigation_manga" + android:icon="@drawable/ic_home_black_24dp" + android:title="@string/title_manga" /> + + <item + android:id="@+id/navigation_home" + android:icon="@drawable/ic_home_black_24dp" + android:title="@string/title_home" /> + + <item + android:id="@+id/navigation_anime" + android:icon="@drawable/ic_home_black_24dp" + android:title="@string/title_anime" /> + +</menu>
\ No newline at end of file |