StykPohlavsson
StykPohlavsson

Reputation: 306

Android | Custom style as parent for another custom style

Hi I am new to Android is it possible in Android to make your own defined style as parent of another style?

      <style name="style1">
        .
        .
        .
        .
      </style>
      <style name="extendedStyle1" parent="@style/style1">
        .
        .
        .
        .
      </style>

Upvotes: 0

Views: 75

Answers (1)

StykPohlavsson
StykPohlavsson

Reputation: 306

Ok I found an answer, Thanks to everybody.

     <style name="style1">
        .
        .
        .
        .
      </style>
      <style name="style1.extended">
        .
        .
        .
        .
      </style>

Upvotes: 1

Related Questions