android Возможно ли иметь несколько SlidingDrawer - PullRequest
4 голосов
/ 19 июня 2011

Вид нового для многих вещей в Android, и вот один.

Игра с помощью виджета Android SlidingDrawer.
Очень бы хотелось, чтобы 4 из них были справа от экрана.
Каждый из них заполняет экран, когда вы вытаскиваете их.

Я пытаюсь в своем R.layout.main создать 4 из них, но появляется только один.

Я здесь не по тому пути?

здесь xml файл с двумя SlidingDrawer
пытаясь заставить оба показать на правой стороне

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

 <SlidingDrawer android:id="@+id/SlidingDrawer2" 
        android:layout_width="wrap_content" 
        android:handle="@+id/slideHandleButton2" 
        android:content="@+id/contentLayout2" 
        android:layout_weight="1"
        android:layout_height="wrap_content" 
        android:orientation="horizontal">

        <Button android:id="@+id/slideHandleButton2"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:topOffset="10dip"
            android:background="@drawable/icon">
        </Button>

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

       <ImageView android:id="@+id/f" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:text="Content"
            android:src="@drawable/arrow_top_right">>
        </ImageView>

    </RelativeLayout>
 </SlidingDrawer>


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

        <Button android:id="@+id/slideHandleButton"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:background="@drawable/icon"
            android:topOffset="40dip">
        </Button>

        <RelativeLayout 
            android:layout_width="wrap_content" 
            android:id="@+id/contentLayout" 
            android:orientation="horizontal" 
            android:padding="10dip" 
            android:background="#C0C0C0" 
            android:layout_height="wrap_content">

         <ImageView android:id="@+id/Button03" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:text="Content"
            android:src="@drawable/arrow_top_right">
        </ImageView>
    </RelativeLayout>
 </SlidingDrawer>
</LinearLayout>

1 Ответ

4 голосов
/ 20 июня 2011

Я не думаю, что это только один отображается. Я думаю, что два отображаются один поверх другого. Попробуйте сместить ручки, чтобы вы могли видеть обе ручки. Попробуйте добавить этот атрибут с разными смещениями к обоим скользящим лоткам:

android:topOffset="10dip"

Если это не сработает, попробуйте добавить это к обоим слайдерам:

android:layout_weight="1"
android:layout_height="0"
...