Reputation: 840
I'm using themes to style widgets in Android.
With the code:
<item name="android:width">200px</item>
... i can set the width of the widget to 200px.
But how can I specify "wrap_content" and "fill_parent"?
Strings are not allowed there!
Upvotes: 0
Views: 172
Reputation: 391
wrap_content
and fill_parent
are valid for layout_height
and layout_width
not width.
Upvotes: 2