Android:SlidingDrawer在SurfaceView下消失

时间:2011-01-07 20:09:44

标签: android slidingdrawer

我正在尝试通过FrameLayout创建一个包含LinearLayout内容的SlidingDrawer。

一开始看起来一切都很好,我在屏幕底部得到了SlidingDrawer的句柄。 但是,如果我开始向上拖动手柄并且内容开始显示,它将被手柄的边框矩形剪切。如果我一直向上拖动手柄,最终会显示整个内容,但是如果我现在向下拖动手柄,它将被内容的边框矩形剪切。此外,如果手柄一直向上,一旦我开始拖动它,整个内容就会消失 我仍然可以点击手柄应该在屏幕上的位置,拖动它并显示内容,但我需要猜测手柄的位置。

似乎导致这种情况的原因是我在SlidingDrawer之前的xml文件中有一个SurfaceView。
从xml中删除视图可以解决此问题,但我需要此视图。

这是xml:

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent">

    <!--  Removing this DrawView from here solves the problem -->
    <com.package.DrawView 
        android:id="@+id/main"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
    />

    <SlidingDrawer  
        android:id="@+id/SlidingDrawer"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:allowSingleTap="true"
        android:animateOnClick="true"
        android:handle="@+id/slideHandleButton"
        android:content="@+id/contentLayout" 
        android:padding="10dip">

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

        <LinearLayout
            android:id="@+id/contentLayout"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <Button 
                android:id="@+id/clearButton" 
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Test">
            </Button>

        </LinearLayout>

    </SlidingDrawer>

</FrameLayout>   

爪哇:

package com.package;

import android.app.Activity;
import android.os.Bundle;

public class SlideTest extends Activity 
{
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.main);
    }
}

package com.package;

import android.content.Context;
import android.util.AttributeSet;
import android.view.SurfaceView;

public class DrawView extends SurfaceView
{
    public DrawView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }
}

编辑:我刚注意到,如果DrawView扩展View而不是SurfaceView,这个问题就会消失。 但是,我使用专用的绘图线程并根据文档(和LunarLander示例)使用专用绘图线程时,它应该绘制到SurfaceView。

非常感谢任何帮助!

2 个答案:

答案 0 :(得分:14)

机器人:背景= “#00000000”

背景颜色是问题。

答案 1 :(得分:3)

SurfaceView通过在窗口中切出一个“洞”来显示另一个表面(你绘制的那个表面)。这就是导致SlidingDrawer的抽屉被剪裁的原因。我很遗憾地说你将无法同时使用这两种观点。