gpt4 book ai didi

java - 一个向上滑动的面板,就像具有中间状态的谷歌地图应用程序

转载 作者:行者123 更新时间:2023-11-29 06:29:53 27 4
gpt4 key购买 nike

我想要 Google map 应用的业务页面所具有的确切内容。

我在我的项目中使用 SlidingUpPanel ( lib )。我有一个 map Activity ,我想要一个像谷歌地图一样的向上滑动面板,在我的滑动面板顶部有一个很棒的按钮。 this is what i want

这是我的布局 XML:

<com.sothree.slidinguppanel.SlidingUpPanelLayout
xmlns:sothree="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/tools"
android:id="@+id/SlidingPanel"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="bottom"
sothree:umanoPanelHeight="96dp"
sothree:umanoShadowHeight="4dp"
sothree:umanoAnchorPoint="0.7"
sothree:umanoParallaxOffset="100dp"
sothree:umanoOverlay="true">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:minHeight="?attr/actionBarSize"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:titleTextColor="@android:color/white"
app:layout_scrollFlags="scroll|enterAlways"
android:background="?attr/colorPrimary">
</android.support.v7.widget.Toolbar>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/NestedScrollView">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.v7.widget.Toolbar
android:id="@+id/SlidingPanelToolbar"
android:minHeight="?attr/actionBarSize"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary">
</android.support.v7.widget.Toolbar>

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/aaa"
android:background="@android:color/white"/>

</LinearLayout>

</android.support.v4.widget.NestedScrollView>

</LinearLayout>

问题是这个向上滑动没有任何中间状态。它要么打开要么关闭,但我也需要半开状态。

最佳答案

您需要的是 BottomSheet用户界面模式。

它被添加到 Google's Design Support Libraryversion 23.2

Here是关于如何使用它的示例教程。

关于java - 一个向上滑动的面板,就像具有中间状态的谷歌地图应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38291397/

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