Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to extend Android's small button style. I can do it inline:

<Button android:id="@+id/myButton"
        style="?android:attr/buttonStyleSmall"
        android:layout_alignParentRight="true"
        android:layout_gravity="right"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:textSize="10dp"
        android:text="Click Here"/>

But in the interest of reusability, I want to transfer these styles to a custom style. How can I add buttonStyleSmall (or Widget.Button.Small?) as a parent to a style? Something like this in my custom style XML:

<style name="RightLink" parent="?android:attr/buttonStyleSmall">
  <item name="android:layout_alignParentRight">true</item>
  <item name="android:layout_gravity">right</item>
  <item name="android:layout_height">wrap_content</item>
  <item name="android:layout_width">wrap_content</item>
  <item name="android:paddingLeft">2dp</item>
  <item name="android:paddingRight">2dp</item>
  <item name="android:textSize">10dp</item>
</style>

with the button declaration using that style:

<Button android:id="@+id/myButton"
        style="@style/RightLink"
        android:text="Click Here"/>

EDIT

Using the correct syntax as described by Lukas below (use @android:attr/buttonStyleSmall as the parent), I'm still seeing a difference between the two:

Button with buttonStyleSmall as style and inline styles added:

pic1

Custom style with buttonStyleSmall as the parent:

pic2

What am I missing?

share|improve this question
Hi, what is the entire solution for this? Can you post full code? – Emerald214 Aug 31 '11 at 8:44

1 Answer

up vote 3 down vote accepted

So you try to inherit style informations from a standard Android style. For this manner, you'll need to use the parent-attribute as you already did.

The only exception to your code is, that when inheriting a standard style, you don't use the ? at the beginning but an @:

<style name="RightLink" parent="@android:attr/buttonStyleSmall">

A little more about how to do that for platform styles (because that differs from styles you created yourself) can be found here.


After playing around with it i found that the way you inhirate is correct, but the recourse is wrong:

<style name="RightLink" parent="@android:style/Widget.Button.Small">

This works.

The difference seams to be that the integer-constant which is used to add this by using the style-attribute and in code is declared in Androids R-class in the attr-subclass.

The XML-Style definitions (from which you can actually inherit) are stored in the style-subclass of the R-class. So the above line should solve your problem.

share|improve this answer
Hi Lukas, thanks for the tip. I edited my question to show what's happening when I try that. Could you take a look? I appreciate it. – annie Aug 24 '11 at 18:35
I added the solution to my post. – Lukas Knuth Aug 24 '11 at 22:50
Thanks! That did the trick. – annie Aug 25 '11 at 4:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.