Im using a slidingDrawer on my application. In portrait mode the handle is placed at the center-bottom. When in landscape mode i would like to have it placed at the center-left. When i change my xml layout and set the orientation of the slidingDrawer to be horizontal, its automatically placed on the center-right... Is there a way to place it on the left?
This i my XML that does not work. (its still placing the handler on the right)
- Code: Select all
<SlidingDrawer
android:id="@+id/l_drawer"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:handle="@+id/l_handle"
android:content="@+id/l_content"
android:orientation="horizontal"
android:layout_gravity="left"
>
Hoping you android sdk gurus got a tip for me!
Thanks

