gpt4 book ai didi

android - Xamarin、C#、Google Maps fragment 不响应任何命令。 (即移动相机)

转载 作者:搜寻专家 更新时间:2023-11-01 09:26:06 25 4
gpt4 key购买 nike

我有一个用户在登录后切换到的 Activity ,它有一个 Google map fragment ,我也想更改 map 加载的默认位置,但是, map 似乎没有响应任何命令。下面是整个 Activity 的代码,我还没有太多。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using Android.App;
using Android.Content;
using Android.Gms.Maps;
using Android.Gms.Maps.Model;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;

namespace TriTrack
{
[Activity(Label = "MapsActivity")]
public class MapsActivity : Activity, IOnMapReadyCallback
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
SetContentView(Resource.Layout.Map);
MapFragment mapFragment = (MapFragment)FragmentManager.FindFragmentById(Resource.Id.map);
mapFragment.GetMapAsync(this);
}

public void OnMapReady(GoogleMap googleMap)
{
LatLng latlng = new LatLng(Convert.ToDouble(13.0291), Convert.ToDouble(10.2083));
CameraUpdate camera = CameraUpdateFactory.NewLatLngZoom(latlng, 15);
googleMap.MoveCamera(camera);
MarkerOptions options = new MarkerOptions().SetPosition(latlng).SetTitle("Chennai");
googleMap.AddMarker(options);
}
}
}

map 不会移动,也不会放置标记。有任何想法吗?提前致谢。

最佳答案

您还没有显示您的配置,所以我将向您展示我创建应用程序的过程:

这是我的 list :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1"
android:versionName="1.0"
package="App46.App46"
android:installLocation="auto">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="27" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<application android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data android:name="com.google.android.geo.API_KEY" android:value="@string/google_maps_key" />
</application>
</manifest>

布局:

<?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/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />

主要 Activity :

using Android.App;
using Android.Widget;
using Android.OS;
using Android.Support.V7.App;
using Android.Gms.Maps;
using Android.Gms.Maps.Model;
using System;

namespace App46
{
[Activity(Label = "@string/app_name", Theme = "@style/AppTheme", MainLauncher = true)]
public class MainActivity : AppCompatActivity, IOnMapReadyCallback
{
public void OnMapReady(GoogleMap googleMap)
{
LatLng latlng = new LatLng(Convert.ToDouble(13.0291), Convert.ToDouble(10.2083));
CameraUpdate camera = CameraUpdateFactory.NewLatLngZoom(latlng, 15);
googleMap.MoveCamera(camera);
MarkerOptions options = new MarkerOptions().SetPosition(latlng).SetTitle("Chennai");
googleMap.AddMarker(options);
}

protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);

// Set our view from the "main" layout resource
SetContentView(Resource.Layout.activity_main);
SupportMapFragment mapFragment = (SupportMapFragment)SupportFragmentManager.FindFragmentById(Resource.Id.map);
mapFragment.GetMapAsync(this);
}
}
}

此外,我在 github 上提供了一个演示供您测试。

关于android - Xamarin、C#、Google Maps fragment 不响应任何命令。 (即移动相机),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50558863/

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