I have a recylerview with a option button in every item. On button click a popup menu is shown. In popup menu there must be a checkbox and a delete button as item. First menu item is checkbox. I have used following code.
<?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"
  xmlns:tools="http://schemas.android.com/tools"
>
<item
    android:id="@+id/action_watch"
    android:checkable="true"
    android:title="Watch"
    app:showAsAction="always"
    />
<item
    android:id="@+id/action_delete"
    android:icon="@drawable/ic_action_delete"
    android:title="Remove"
    app:showAsAction="withText|always"/>
</menu>
Problem is checkbox appears right of its text. I want it in left, but i can't. please help. TIA
 
    