如何确定SlidingDrawer手柄的屏幕位置/高度?

发布于 2024-11-14 02:27:30 字数 1463 浏览 2 评论 0原文

大家好,

我正在使用带有自定义 SurfaceView 的 SlidingDrawer 并遇到了问题。 问题是SurfaceView不知道剩余的视图区域 当SlidingDrawer的手柄被上下拖动时。

有没有办法根据手柄当前高度设置 SurfaceView 高度?

布局 XML:

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

    <and.dev.test.CustomSurfaceView android:id="@+id/flock"
        android:layout_width="fill_parent" android:layout_height="fill_parent" />

<SlidingDrawer android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:id="@+id/drawer"
    android:handle="@+id/handle" android:content="@+id/content"
    android:layout_gravity="fill">

    <LinearLayout android:id="@id/handle"
        android:orientation="horizontal" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:gravity="center_horizontal"
        android:background="#FFFFFFFF">

        <TextView android:background="@drawable/bird_blue"
            android:layout_width="wrap_content" android:layout_height="wrap_content" />
    </LinearLayout>

    <LinearLayout android:id="@id/content"
        android:orientation="vertical" android:layout_width="fill_parent"
        android:layout_height="wrap_content">


    </LinearLayout>
</SlidingDrawer> </FrameLayout>

HI Guys,

I'm using SlidingDrawer with a custom SurfaceView and ran into a problem.
The problem is that the SurfaceView doesn't know about the remaining view area
when the handle of the SlidingDrawer is being drag up and down.

Is there a way to set my SurfaceView height base on where the handle current height?

Layout XML:

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

    <and.dev.test.CustomSurfaceView android:id="@+id/flock"
        android:layout_width="fill_parent" android:layout_height="fill_parent" />

<SlidingDrawer android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:id="@+id/drawer"
    android:handle="@+id/handle" android:content="@+id/content"
    android:layout_gravity="fill">

    <LinearLayout android:id="@id/handle"
        android:orientation="horizontal" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:gravity="center_horizontal"
        android:background="#FFFFFFFF">

        <TextView android:background="@drawable/bird_blue"
            android:layout_width="wrap_content" android:layout_height="wrap_content" />
    </LinearLayout>

    <LinearLayout android:id="@id/content"
        android:orientation="vertical" android:layout_width="fill_parent"
        android:layout_height="wrap_content">


    </LinearLayout>
</SlidingDrawer> </FrameLayout>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤檠 2024-11-21 02:27:30

SlidingDrawer 只能用作布局上的叠加层。这几乎意味着您只能将其放入 FrameLayoutRelativeLayout 中。

只需将自定义 SurfaceViewSlidingDrawer 放入 XML 中的 FrameLayout 中即可,无需担心调整高度大小或其他任何问题。

希望有帮助

SlidingDrawer can only be used as an overlay over layouts. That pretty much means that you can only put it inside a FrameLayout or a RelativeLayout.

Just put your custom SurfaceView and SlidingDrawer in a FrameLayout in your XML and you'll be fine and wont have to worry about resizing heights or anything.

Hope that helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文