slidrawer从android左到右在android

问题描述:

谁能给出一个简单的例子,说明如何在android上从左到右制作滑行者 我在网上搜索了很多东西,但是找不到合适的解决方案。 等待您的答复。 谢谢:)slidrawer从android左到右在android

请使用下面的代码水平滑动抽屉。

main.xml中

<?xml version="1.0" encoding="utf-8"?> 
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 

    <ImageView 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:src="@drawable/icon"/> 

    <SlidingDrawer 
     android:id="@+id/drawer" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:orientation="horizontal" 
     android:handle="@+id/handle" 
     android:content="@+id/content"> 
     <ImageView 
      android:id="@id/handle" 
      android:layout_width="wrap_content" 
      android:layout_height="fill_parent" 
      android:src="@drawable/icon"/> 
     <LinearLayout 
      android:id="@id/content" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
      android:orientation="vertical" 
      android:padding="10dp" 
      android:background="#55000000"> 
      <Button 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:text=" - Button - "/> 
      <Button 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:text=" - Button - "/> 
      <Button 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:text=" - Button - "/> 
      <Button 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:text=" - Button - "/> 
      <Button 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:text=" - Button - "/> 
      <Button 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:text=" - Button - "/> 
     </LinearLayout> 
    </SlidingDrawer> 
</FrameLayout> 

使用下面的示例链接借鉴。

SlidingDrawer in horizontal - 1

SlidingDrawer in horizontal - 2

+0

**我有此之前,我想从左至右** – hari 2012-07-12 11:39:43

+0

确定幻灯片得到了你的第二个链接的答案http://www.anddev.org/ viewtopic.php?p值= 16622 – hari 2012-07-12 11:48:44