mirror of https://github.com/ThmmyNoLife/mTHMMY
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
778 B
22 lines
778 B
<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=".activities.MainActivity">
|
|
<item
|
|
android:id="@+id/action_login"
|
|
android:orderInCategory="100"
|
|
android:title="@string/login"
|
|
android:visible="false"
|
|
app:showAsAction="never"/>
|
|
<item
|
|
android:id="@+id/action_logout"
|
|
android:orderInCategory="200"
|
|
android:title="@string/logout"
|
|
android:visible="false"
|
|
app:showAsAction="never"/>
|
|
<item
|
|
android:id="@+id/action_about"
|
|
android:orderInCategory="300"
|
|
android:title="@string/about"
|
|
app:showAsAction="never"/>
|
|
</menu>
|
|
|