• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Seekbar not showing in layout editor

Hello folks, I have a problem.
I had a SeekBar, and everything was ok. But then I moved some of it's attributes to a style and gave the SeekBar that style.
and now it doesn't show up in the layout designer, although the AVD emulator and my android phone display it just fine.
Can anyone tell me what am I doing wrong?

(I'm using Eclipse 3.5 with ADT 0.9.9 BTW.)

This is the relevant part of the layout code:
Code:
	<RelativeLayout android:id="@+id/RelativeLayout01" 
		style="@style/edit_alarm_segment"
		android:layout_width="wrap_content" 
		android:layout_height="wrap_content">

		<! -- some irrelevant stuff --> 

		<SeekBar android:id="@+id/ea_radius" 
			style="@style/seek_bar"
			android:layout_below="@+id/TextView05"/>
			
	</RelativeLayout>

And this is the relevant part of the style code:
Code:
	<style name="seek_bar">
		<item name="android:paddingLeft">10dp</item>
		<item name="android:paddingRight">10dp</item>
		<item name="android:layout_height">wrap_content</item>
		<item name="android:layout_width">fill_parent</item>
	</style>
 
Back
Top Bottom