I have an overflow menu on my Toolbar, which I'm using to navigate between my activities.
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" tools:context=".HomePage">
<item
android:id="@+id/homeActionBar"
android:title="Home"
android:orderInCategory="100"
app:showAsAction="never" />
<item
android:id="@+id/allergiesActionBar"
android:title="Allergies"
android:orderInCategory="100"
app:showAsAction="never" />
<item
android:id="@+id/calendarActionBar"
android:title="Calendar"
android:orderInCategory="100"
app:showAsAction="never" />
<item
android:id="@+id/contactsActionBar"
android:title="Contacts"
android:orderInCategory="100"
app:showAsAction="never" />
The overflow button with all of these options appears on the right hand side of my Toolbar. Does anybody know how to place it all the way to the left?
This is a related but secondary question. I don't have any fragments. They're all activities. I want to navigate between them on my toolbar. What's the best solution for this? Again, I created the overflow menu, which seems to be working fine. Is that typically the best route? I'm avoiding a navigation drawer due to my lack of fragments.
Thank you.