簡體   English   中英

Android 谷歌地圖片段問題

[英]Android google maps fragment issue

我正在我的 android 應用程序中實現谷歌地圖。 它運行良好,但有時應用程序崩潰並給我這個錯誤:(由:android.view.InflateException:二進制 XML 文件第 2 行錯誤膨脹類片段)。 我嘗試了所有建議的解決方案,但大多數都是舊的,我仍然遇到同樣的問題。 你能幫我解決這個問題嗎,它仍然會導致應用程序崩潰。

這是谷歌地圖中使用的代碼:

  @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        binding = ActivityTruckLocationBinding.inflate(getLayoutInflater());
        setContentView(binding.getRoot());
        lat=lang="0";

        // Obtain the SupportMapFragment and get notified when the map is ready to be used.
        SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
                .findFragmentById(R.id.map2);
        mapFragment.getMapAsync(this);
    }

    @Override
    public void onMapReady(GoogleMap googleMap) {
        mMap = googleMap;

        LatLng myplace = new LatLng(29.2722744, 47.8585885);
        //mMap.addMarker(new MarkerOptions().position(myplace).title("Marker in myplace"));
        mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(myplace,11));
        mMap.setOnMapLongClickListener(new GoogleMap.OnMapLongClickListener() {
            @Override
            public void onMapLongClick(@NonNull LatLng latLng) {
                lat=String.valueOf(latLng.latitude);
                lang=String.valueOf(latLng.longitude);
                redirect();
            }
        });

    }
    public void redirect(){
        Intent intent=new Intent(TruckLocation.this,Truck_Profile.class);
        intent.putExtra("intenttype","location");
        intent.putExtra("lat",lat);
        intent.putExtra("lang",lang);
        startActivity(intent);
        finish();
    }

這是 XML 代碼:

<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/map2"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".TruckLocation" />

您在 TruckLocationActivity.xml 中遇到問題,您可以與我們共享此 xml 以幫助您。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM