Android - Verschieben der Schublade von links nach rechts

Ich habe "Sliding Drawer" in meiner Anwendung mit dem folgenden XML-Layout implementiert: (Ich habe dieses Beispiel von androidpeople.com erhalten.)

<LinearLayout android:id="@+id/LinearLayout01"
 android:layout_width="fill_parent" android:layout_height="fill_parent"
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:background="@drawable/androidpeople">

 <SlidingDrawer 
  android:layout_width="wrap_content" 
  android:id="@+id/SlidingDrawer" 
  android:handle="@+id/slideHandleButton" 
  android:content="@+id/contentLayout" 
  android:layout_height="75dip"
  android:orientation="horizontal">

  <Button 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:id="@+id/slideHandleButton" 
   android:background="@drawable/closearrow">
  </Button>

  <LinearLayout 
   android:layout_width="wrap_content" 
   android:id="@+id/contentLayout" 
   android:orientation="horizontal" 
   android:gravity="center|top" 
   android:padding="10dip" 
   android:background="#C0C0C0" 
   android:layout_height="wrap_content">


   <Button android:id="@+id/Button01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Content"></Button>
   <Button android:id="@+id/Button02" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Content"></Button>
   <Button android:id="@+id/Button03" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Content"></Button>

  </LinearLayout>

 </SlidingDrawer>
</LinearLayout>

Aber ich möchte, dass die Schublade von links nach rechts (horizontal) anstatt von rechts nach links verschoben wird. Wie kann ich die Schublade so einstellen, dass sie von links nach rechts verschoben wird?

Bitte teilen Sie mir Ihre Idee / Ansicht / Meinung / Problem mit und finden Sie mich aus diesem Problem heraus.

Antworten auf die Frage(10)

Ihre Antwort auf die Frage