titulo studio personalizar icono example cambiar boton bar agregar actionbar android android-theme material-design

studio - Diseño de material de Android: no se pudo encontrar el estilo ''toolbarStyle'' en el tema actual



personalizar action bar android studio (2)

Puede utilizar el estilo Widget.AppCompat.Toolbar.

<!-- Toolbar styles --> <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>

Estoy tratando de usar el widget de la barra de herramientas en Android 21 con un estilo personalizado, pero no puedo deshacerme de este error: Failed to find style ''toolbarStyle'' in current theme .

Aquí está mi archivo XML de diseño:

<android.support.v7.widget.Toolbar xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/patient_toolbar" android:layout_width="match_parent" android:layout_height="wrap_content" app:theme="@style/AppTheme.Patient" />

Aquí está el tema del paciente:

<resources> <!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.Light"> <!-- Customize your theme here. --> </style> <style name="AppTheme.Patient" parent="AppTheme"> <item name="colorPrimary">@color/patient_primary</item> <item name="colorPrimaryDark">@color/patient_primary_dark</item> <item name="colorAccent">@color/patient_accent</item> <item name="toolbarStyle"></item> <!-- what values to put here --> </style>

También intenté agregar toolbarStyle en el elemento de mi tema, pero no conozco los valores posibles. ¿Me estoy perdiendo de algo?


Tuve el mismo problema, aunque mi xml era correcto. La solución fue: Establecer el tema de AppCompat en la casilla de verificación Seleccionar tema , ver foto.