Well the title is very clear, what is the difference between alertDialogStyle and alertDialogTheme ?
I have been looking at the documentation of Android developers but it is not very clear to me, could you explain it to me better?
<resources>
<style name="PLMS_Style" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:actionBarStyle">@style/MyToolbar</item>
<item name="android:actionBarTheme">@style/MyToolbar</item>
</style>
<style name="MyToolbar">
<item name="android:colorBackground">@color/black</item>
<item name="android:textColorPrimary">@android:color/white</item>
<item name="android:textColorPrimaryInverse">@color/primary_text_material_dark</item>
<item name="android:textColorSecondary">@android:color/white</item>
<item name="android:textColorSecondaryInverse">@color/secondary_text_material_light</item>
</style>
</resources>
In this case I would have to use, Style or Theme?