Adding icon Creating Light style Setting based color Moving from 3 nav buttons to 2 Removing action top bar Changing icons for navigation bar buttons Renaming
18 lines
584 B
XML
18 lines
584 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<item
|
|
android:id="@+id/navigation_add"
|
|
android:icon="@drawable/ic_create_24dp"
|
|
android:title="@string/title_add"
|
|
app:itemBackground="?attr/itemBackground" />
|
|
|
|
<item
|
|
android:id="@+id/navigation_attestations"
|
|
android:icon="@drawable/ic_attestations_24dp"
|
|
android:title="@string/title_attestations"
|
|
app:itemBackground="?attr/itemBackground" />
|
|
|
|
</menu>
|