我们如何在Android中使用从左到右方向的滑块抽屉

时间:2013-01-18 06:46:36

标签: android slider

我们如何在Android平板电脑中从左到右流动使用滑块抽屉。 默认情况下,滑块从下到上流动,但是当我们给它水平方向时,它的滑动流程将从右到左。 但我需要它从左到右流动。

先谢谢

2 个答案:

答案 0 :(得分:2)

你可以找到here的非常好的例子。

您可以从中下载源代码并运行它。

您还可以签入此link

答案 1 :(得分:-1)

enter image description here

你需要这样的东西..

 <com.example.example.SlidingDrawer
     xmlns:my="http://schemas.android.com/apk/res/com.example.example"
     android:id="@+id/drawer"
     android:layout_width="301dp"
     android:layout_height="wrap_content"
     my:content="@+id/content"
     my:direction="leftToRight"
     my:handle="@+id/handle" >
      <ImageView 
   android:id="@+id/handle"
   android:layout_width="wrap_content"
   android:layout_height="fill_parent" 
   android:src="@drawable/tags"/>

  <LinearLayout
      android:id="@+id/content"
      android:layout_width="wrap_content"
      android:layout_height="fill_parent"
      android:background="@drawable/slidimage"
      android:orientation="vertical"
      android:layout_gravity="right"
      android:padding="10dp" >
</LinearLayout>
    </com.example.example.SlidingDrawer>

Here you can find example.