0

I would like to set a specific style for the whole application.

I added the style in the androidmanifest.xml, and I defined the style as follow:

   <style name="myStyle">
        <item name="android:background">#000000</item>
        <item name="android:textColor">#FFFFFF</item>
    </style>

This style changes the background and the textcolor for the whole application, though I would like to change also the text color of the buttons: this sentence works when defining a button but I would like to add it to the style of the application

Thanks a lot

1 Answers1

0
   <style name="myStyle" parent="android:Theme">
   <item name="android:buttonStyle">@style/Your button style</item>
   </style>

source:How do I apply a style to all buttons of an Android application

Community
  • 1
  • 1
marduc812
  • 1,177
  • 17
  • 26