I have already made my custom Style for Toolbar Overflow Menu.
<style name="custompopupOverflowMenu" parent="@style/Widget.MaterialComponents.PopupMenu.Overflow">
<item name="android:popupBackground">@drawable/drop_down_back_0</item>
<item name="android:textColor">#FF4081</item>
<item name="android:textDirection">rtl</item>
<item name="android:gravity">center_horizontal</item>
<item name="android:textAlignment">textEnd</item>
</style>
this is background shape:
<ripple
xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/colorPrimary">
<item>
<shape android:shape="rectangle" >
<solid android:color="@color/colorAccent" />
<stroke android:width="2dp"
android:color="@color/colorPrimaryDark" />
<corners android:radius="10dp"/>
</shape>
</item>
</ripple>
and have used it in my toolbar:
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
android:elevation="10dp"
app:titleTextColor="#fff"
app:popupTheme="@style/custompopupOverflowMenu">
The background shape and text color have changed correctly. The problem is that "text alignment", "text direction" and "text gravity" were not affected. Of course I checked them separately, but I put them here together just to review them