Скользящий выдвижной ящик скрывает ListView - PullRequest
1 голос
/ 15 июня 2011

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

Кто-нибудь может сказать мне, где я иду не так?

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


       <ListView 
                android:id="@android:id/list"
               android:layout_width="match_parent"
               android:layout_height="match_parent"
               android:background="#988767"
               android:divider="#00000000"
               android:dividerHeight="10dip"
               android:layout_margin="10dip"
               android:cacheColorHint="#988767"/>

  <SlidingDrawer
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:id="@+id/drawer"
      android:handle="@+id/handle"
      android:content="@+id/content"
      >
  <ImageView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:id="@+id/handle"
      android:src="@drawable/arrowup"
      />
  <RelativeLayout
      android:background="#000000"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:orientation="vertical"
      android:id="@+id/content">
  <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="This is some text"
      android:id="@+id/txt"/>
  </RelativeLayout>

  </SlidingDrawer>


</RelativeLayout>

Ответы [ 2 ]

1 голос
/ 18 ноября 2011

набор android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" в выдвижном ящике

0 голосов
/ 15 июня 2011

С помощью FrameLayout вы можете отобразить SlidingDrawer над списком.Следующая ссылка - статья о FrameLayout.

...