gpt4 book ai didi

Android SlidingDrawer 操作方法

转载 作者:搜寻专家 更新时间:2023-11-01 09:16:50 26 4
gpt4 key购买 nike

我看了很多地方,但找不到关于如何为我的应用程序制作 SlidingDrawer 的像样的教程。

假设我已经有一个 XML 文件,我想向其中添加一个滑动抽屉...我还想添加一个 TextView 和 ListView 对象,以及其中的一些按钮...我该怎么做呢?

任何帮助将不胜感激!

最佳答案

这是一个SlidingDrawer sample app .特别是,这里是布局:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FF4444CC"
>
<SlidingDrawer
android:id="@+id/drawer"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:handle="@+id/handle"
android:content="@+id/content">
<ImageView
android:id="@id/handle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/tray_handle_normal"
/>
<Button
android:id="@id/content"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="I'm in here!"
/>
</SlidingDrawer>
</FrameLayout>

现在,在这种情况下,整个 Activity 只是一个 SlidingDrawer。这是相对不寻常的 -- 这个示例很短,因为它来自一本书。

更常见的是,我希望您将 SlidingDrawer 作为 RelativeLayout 的子级,这样您就可以拥有 RelativeLayout 的其他子级> 并在打开时让抽屉滑过它们的顶部。我相信在这种情况下,您需要将 SlidingDrawer 作为 RelativeLayout 的最后一个子元素。

关于Android SlidingDrawer 操作方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4072057/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com