gpt4 book ai didi

Android Activity 从左到右在前面

转载 作者:太空狗 更新时间:2023-10-29 16:05:23 24 4
gpt4 key购买 nike

我想知道图像中实现的 Android Activity 的类型是什么,您可以在其中放置示例配置并使用滑动手势将其隐藏

enter image description here

最佳答案

Navigation Drawer从屏幕左边缘过渡并显示应用程序主要导航选项的面板。

enter image description here

您可以找到如何 Create a Navigation Drawer here

<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- The main content view -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- The navigation drawer -->
<ListView android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:background="#111"/>
</android.support.v4.widget.DrawerLayout>

抽屉 View (ListView)必须使用 android:layout_gravity 属性指定其水平引力。要支持从右到左 (RTL) 语言,请使用“start”而不是“left”指定值(这样当布局为 RTL 时抽屉显示在右侧)。

关于Android Activity 从左到右在前面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16705450/

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