动态设置滑动抽屉高度

发布于 2024-10-22 17:17:00 字数 1062 浏览 1 评论 0原文

我想动态或静态地定义滑动抽屉高度的高度。 下面是我的 xml 布局文件。任何建议将不胜感激。

<?xml version="1.0" encoding="utf-8"?>

    <SlidingDrawer android:layout_width="fill_parent"
        android:id="@+id/SlidingDrawer" android:handle="@+id/slideHandleButton"
        android:content="@+id/contentLayout" android:layout_height="wrap_content">
        <ImageView android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:id="@+id/slideHandleButton"
            android:background="@drawable/icon_movie"></ImageView>
        <LinearLayout android:layout_width="fill_parent"
            android:id="@+id/contentLayout" android:gravity="center"
            android:background="#C0C0C0" android:layout_height="wrap_content">
            <Gallery android:id="@+id/gallery" android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
        </LinearLayout>
    </SlidingDrawer>
</FrameLayout>

I would like to define the height of sliding drawer height dynamically or statically whatever.
Below is my xml layout file. Any suggestion would be appreciate.

<?xml version="1.0" encoding="utf-8"?>

    <SlidingDrawer android:layout_width="fill_parent"
        android:id="@+id/SlidingDrawer" android:handle="@+id/slideHandleButton"
        android:content="@+id/contentLayout" android:layout_height="wrap_content">
        <ImageView android:layout_width="fill_parent"
            android:layout_height="wrap_content" android:id="@+id/slideHandleButton"
            android:background="@drawable/icon_movie"></ImageView>
        <LinearLayout android:layout_width="fill_parent"
            android:id="@+id/contentLayout" android:gravity="center"
            android:background="#C0C0C0" android:layout_height="wrap_content">
            <Gallery android:id="@+id/gallery" android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
        </LinearLayout>
    </SlidingDrawer>
</FrameLayout>

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

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

发布评论

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

评论(3

琉璃繁缕 2024-10-29 17:17:00

您可以将高度设置为特定高度,例如 200dp,也可以使用类似 如果您想使用 wrap_content,请使用此解决方法

You can set the height to a specific height such as 200dp, or you can use something like this workaround if you want to use wrap_content.

人间不值得 2024-10-29 17:17:00

只需在 xml 中的滑动抽屉中设置 pmargin

android:layout_marginTop="50dip"

just set to pmargin in sliding drawer in your xml

android:layout_marginTop="50dip"
油焖大侠 2024-10-29 17:17:00

使用 SlidingDrawer 的 topOffset 属性。

像这样...

<SlidingDrawer 
...
android:topOffset="800px"

Use topOffset attribute for SlidingDrawer.

like this...

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