Android: actionbar back button is showing in preview not on mobile
- Solution
<android.support.v7.widget.Toolbar
android:id="@+id/toolbarId"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:focusable="true"
android:focusableInTouchMode="true"
android:theme="@style/ToolBarStyle"
app:navigationIcon="?attr/homeAsUpIndicator" />
<style name="ToolBarStyle" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorControlNormal">@android:color/white</item>
</style>