gpt4 book ai didi

android - 单击标记从谷歌地图底部滑入 View

转载 作者:太空狗 更新时间:2023-10-29 15:51:45 24 4
gpt4 key购买 nike

我想实现以下目标: GMaps slide in mockup

当我点击标记时,信息 View 应该从底部滑入。黑色圆圈是一个 float 操作按钮,应该与信息窗口一起上升到顶部,并以其中心位于信息窗口的上边框。

当我点击信息窗口以外的任何地方时,它应该滑回并消失。

你能给我一些起点吗?我已经阅读了有关对象动画师和 CoordinatorLayout 的内容,但我不知道从哪里开始。

最佳答案

您可以自己实现它,方法是将 bottomsheet 元素添加到 MapFragment 的父布局,然后设置自定义 OnMarkerClickListener

要使底部工作表正常工作,您应该为 MapFragment 的父级使用 CoordinatorLayout。要创建 bottomsheet 元素,您应该将 app:layout_behavior="android.support.design.widget.BottomSheetBehavior 设置为布局元素,例如 NestedScrollView

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:fitsSystemWindows="true"
tools:context=".MainActivity">

<include layout="@layout/content_main" />

<android.support.v4.widget.NestedScrollView android:id="@+id/bottom_sheet"
android:layout_width="match_parent" android:layout_height="550dp"
android:background="@android:color/white" android:clipToPadding="true"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">


<TextView android:id="@+id/detail_name" android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_margin="25dp"
android:layout_weight="3" android:gravity="center_vertical"
android:textAppearance="?android:textAppearanceLarge" />

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

map fragment :

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MainActivity"
tools:showIn="@layout/app_bar_main">

<fragment
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"/>

</RelativeLayout>

然后在你的activity类中,你可以在onCreate()中设置bottom sheet的初始行为:

private BottomSheetBehavior bottomSheetBehavior;
private View bottomSheet;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

bottomSheet = findViewById(R.id.bottom_sheet);
bottomSheetBehavior = BottomSheetBehavior.from(bottomSheet);
bottomSheetBehavior.setPeekHeight(200);
bottomSheetBehavior.setHideable(true);
bottomSheetBehavior.setState(BottomSheetBehavior.STATE_HIDDEN);
}

然后在onMapReady()中修改 map 行为:

@Override
public void onMapReady(GoogleMap googleMap) {
map = googleMap;
map.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener() {
@Override
public boolean onMarkerClick(Marker marker) {
updateBottomSheetContent(marker);
return true;
}
});
map.setOnMapClickListener(new GoogleMap.OnMapClickListener() {
@Override
public void onMapClick(LatLng latLng) {
bottomSheetBehavior.setState(BottomSheetBehavior.STATE_HIDDEN);
}
});
}

private void updateBottomSheetContent(Marker marker) {
TextView name = (TextView) bottomSheet.findViewById(R.id.detail_name);
name.setText(marker.getTitle());
bottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
}

当然你也可以使用marker中保存的一些数据查询你的数据库或者ContentProvider进行适当的记录,然后使用返回的数据在底部设置更多的文字,图片等表。

关于android - 单击标记从谷歌地图底部滑入 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33736605/

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