gpt4 book ai didi

android - Android 中 map fragment 上显示的黑线

转载 作者:行者123 更新时间:2023-11-29 14:25:09 24 4
gpt4 key购买 nike

我正在 Android 中开发一个 fragment 。在我的选项卡中有四个 fragment ,其中一个是 map fragment 。

使用这个 map fragment :

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment" />

任务完成得很完美。

问题是当用户滑动时, map fragment 上显示一条黑线 1 秒。我已经在网上对此进行了研究,但找不到防止这种情况发生的方法?为什么会发生这种情况,我该如何解决?

最佳答案

也面临这个奇怪的问题。通过在 mapview fragment 上应用透明 View 来修复它似乎解决了这个问题。这是一种技巧。看看它是否适合你

<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="300dp" >

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

<View
android:id="@+id/imageView123"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent" />
</RelativeLayout>

关于android - Android 中 map fragment 上显示的黑线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14941651/

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