我将注销作为操作栏中的菜单项。但是该图标显示在操作栏的右侧。如何将其放置在操作栏的左侧?
这是我的菜单项的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/logout"
android:icon="@drawable/logout_button1"
android:title="Log out"
app:iconTint="@color/csrblue"
app:showAsAction="always|withText" />
</menu>