I’m creating a custom Holo theme in which I want to customize Dialog look and feel.
What is the attribute for Dialog?
<style name="MyHolo" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyActionBar</item>
<item name="*********">@style/MyDialogStyle</item>
....
</style>
<style name="MyDialogStyle" parent="android:style/Theme.Dialog">
<item name="android:textColor">#223523</item>
...
</style>
and in Manifest:
<activity android:theme="@style/MyHolo">
ps where can I find all the attributes? I dont see a single place for all of them.
Check this out! https://github.com/android/platform_frameworks_base/blob/master/core/res/res/values/themes.xml