为了账号安全,请及时绑定邮箱和手机立即绑定

Google 地图不显示在片段中

Google 地图不显示在片段中

函数式编程 2023-11-01 22:43:18
如果我发布的问题与许多其他问题类似,但每个问题都有不同的谷歌地图实现,并且尝试所有方法都意味着完全破坏我的代码,我很抱歉,因为我是 Android 开发新手,所以我宁愿如果你能帮我找出我的地图出了什么问题,就不要冒险了。谢谢。当我运行我的应用程序时,我得到的是: 这是我的 Gradle.build(应用程序):apply plugin: 'com.android.application'android {    compileSdkVersion 28    buildToolsVersion "29.0.2"    defaultConfig {        applicationId "com.example.binfo"        minSdkVersion 27        targetSdkVersion 28        versionCode 1        versionName "1.0"        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"    }    buildTypes {        release {            minifyEnabled false            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'        }    }}dependencies {    implementation fileTree(dir: 'libs', include: ['*.jar'])    implementation 'androidx.appcompat:appcompat:1.0.2'    implementation 'androidx.legacy:legacy-support-v4:1.0.0'    implementation 'com.google.android.material:material:1.0.0'    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'    implementation 'androidx.navigation:navigation-fragment:2.0.0'    implementation 'androidx.navigation:navigation-ui:2.0.0'    implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'    testImplementation 'junit:junit:4.12'    androidTestImplementation 'androidx.test:runner:1.1.1'    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'    implementation 'com.google.android.gms:play-services-maps:17.0.0'//    implementation 'com.google.android.gms:play-services:12.0.1'    implementation 'com.google.firebase:firebase-analytics:17.2.0'    implementation 'com.google.firebase:firebase-firestore:21.1.1'}apply plugin: 'com.google.gms.google-services'
查看完整描述

2 回答

?
牛魔王的故事

TA贡献1830条经验 获得超3个赞

根据您的代码,我没有发现任何错误,但根据您的屏幕截图,您的互联网连接似乎丢失了,所以您能否先提供正确的互联网连接并检查一下。



查看完整回答
反对 回复 2023-11-01
?
不负相思意

TA贡献1777条经验 获得超10个赞

在您的片段中使用 MapView:


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    tools:context=".HomeFragment">


    <com.google.android.gms.maps.MapView

        android:id="@+id/mapView"

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:layout_below="@+id/llSelectDetails" />


</RelativeLayout>

在您的片段中使用:


  public class HomeFragment extends Fragment implements OnMapReadyCallback {


    private GoogleMap mMap;

    private MapView mMapView;


    @Override

        public View onCreateView(LayoutInflater inflater, ViewGroup container,

                                 Bundle savedInstanceState) {

            // Inflate the layout for this fragment

            View rootView = inflater.inflate(R.layout.fragment_home, container, false)


             /*

             * Configure Mapview and sync to google map.

             */

            mMapView = rootView.findViewById(R.id.mapView);

            mMapView.onCreate(savedInstanceState);

            mMapView.getMapAsync(this);

            mMapView.onResume(); // needed to get the map to display immediately


             //your code

            return rootView;

    }


    @Override

        public void onMapReady(GoogleMap googleMap) {

            this.mMap = googleMap;

        }

    }

它会工作得很好。另外,请检查您的地图密钥和互联网连接。


查看完整回答
反对 回复 2023-11-01
  • 2 回答
  • 0 关注
  • 113 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信