- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
几个星期以来,当程序试图在 map 上放置一个标记时,我遇到了空指针异常。我不知道为什么,我尝试了几个解决方案,但它们没有用。我在多个设备上收到此错误。例如,在 100 台设备上没有错误,但在 5 台或更多设备中出现此错误。
我也无法使用 .getMap() 函数。只有 getMapAsync 可用。
这是我从 Firebase 获得的错误:
Fatal Exception: java.lang.NullPointerException
Attempt to invoke virtual method 'void com.google.android.gms.maps.GoogleMap.animateCamera(com.google.android.gms.maps.CameraUpdate)' on a null object reference
这是谷歌地图 fragment :
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map1"
class="com.google.android.gms.maps.SupportMapFragment"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.ahmetbesli.eczanem.MapsActivityPicker"
/>
这是我的程序代码:
public class MapsActivityPicker extends FragmentActivity implements OnMapReadyCallback, GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener, View.OnClickListener {
SharedPreferences sharedPreferences;
GoogleMap mGoogleMap;
SupportMapFragment mapFrag;
LocationRequest mLocationRequest;
GoogleApiClient mGoogleApiClient;
Location mLastLocation;
Marker mCurrLocationMarker;
FusedLocationProviderClient mFusedLocationClient;
LocationManager mLocationManager;
ArrayList<MarkerData> markers = new ArrayList<>();
int counter = 1;
int resumeCounter = 2;
boolean add = true;
LatLng midLatLng;
LatLng latLngMaps;
ImageView direction;
ImageView bullet;
ImageView share;
ImageView nearMe;
ImageView call;
CountDownTimer timer;
String pharmacyName;
String pharmacyAddress;
String markerPhone = null;
Double markerLatitude;
Double markerLongitude;
private InterstitialAd mInterstitialAd;
String shortURL;
LocationCallback mLocationCallback;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps_picker);
mFusedLocationClient = LocationServices.getFusedLocationProviderClient(this);
mapFrag = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map1);
buildGoogleApiClient();
mapFrag.getMapAsync(this);
mLocationManager = (LocationManager) MapsActivityPicker.this
.getSystemService(Context.LOCATION_SERVICE);
direction = findViewById(R.id.directionPicker);
bullet = findViewById(R.id.bulletPicker);
share = findViewById(R.id.sharePicker);
nearMe = findViewById(R.id.accessPicker);
call = findViewById(R.id.callPicker);
direction.setOnClickListener(this);
bullet.setOnClickListener(this);
share.setOnClickListener(this);
nearMe.setOnClickListener(this);
call.setOnClickListener(this);
sharedPreferences = this.getApplication().getSharedPreferences(Config.app_name,MODE_PRIVATE);
mInterstitialAd = new InterstitialAd(this);
mInterstitialAd.setAdUnitId("xxxxxxxxxx");
mInterstitialAd.loadAd(new AdRequest.Builder().build());
timer = new CountDownTimer(5000, 1000)
{
public void onTick(long millisUntilFinished) {
}
public void onFinish() {
if (add) {
if (mInterstitialAd != null) {
if (mInterstitialAd.isLoaded()) {
mInterstitialAd.show();
}
}
}
}
};
timer.start();
}
@Override
public void onPause() {
super.onPause();
if (mFusedLocationClient != null) {
mFusedLocationClient.removeLocationUpdates(mLocationCallback);
}
}
@Override
public void onMapReady(final GoogleMap googleMap) {
mGoogleMap = googleMap;
mGoogleMap.getUiSettings().setMapToolbarEnabled(false);
mGoogleMap.setInfoWindowAdapter(new CustomInfoWindowAdapter(MapsActivityPicker.this));
mGoogleMap.setOnMapClickListener(new GoogleMap.OnMapClickListener() {
public void onMapClick(LatLng latLng) {
bullet.setVisibility(View.VISIBLE);
share.setVisibility(View.GONE);
direction.setVisibility(View.GONE);
nearMe.setVisibility(View.VISIBLE);
call.setVisibility(View.GONE);
}
});
mGoogleMap.setOnInfoWindowClickListener(new GoogleMap.OnInfoWindowClickListener() {
@Override
public void onInfoWindowClick(Marker marker) {
Intent intent = new Intent(MapsActivityPicker.this, HomePageShared.class);
intent.putExtra("name",marker.getTitle());
intent.putExtra("address",marker.getSnippet());
intent.putExtra("phone",markerPhone);
intent.putExtra("latitude",marker.getPosition().latitude);
intent.putExtra("longitude",marker.getPosition().longitude);
intent.putExtra("userLatitude", midLatLng.latitude);
intent.putExtra("userLongitude",midLatLng.longitude);
startActivity(intent);
}
});
mGoogleMap.setOnMarkerClickListener(new GoogleMap.OnMarkerClickListener() {
Marker currentShown;
@Override
public boolean onMarkerClick(Marker marker) {
if (marker.equals(currentShown)) {
marker.hideInfoWindow();
currentShown = null;
} else {
marker.showInfoWindow();
currentShown = marker;
}
pharmacyName = marker.getTitle();
pharmacyAddress = marker.getSnippet();
markerLatitude = marker.getPosition().latitude;
markerLongitude = marker.getPosition().longitude;
for(int i = 0; i < markers.size(); i++){
if(markers.get(i).getName().equals(pharmacyName)){
markerPhone = markers.get(i).getPhone();
}
}
shortURL = "http://maps.google.com/maps?daddr=" + markerLatitude + "," + markerLongitude;
latLngMaps = marker.getPosition();
share.setVisibility(View.VISIBLE);
direction.setVisibility(View.VISIBLE);
bullet.setVisibility(View.GONE);
nearMe.setVisibility(View.GONE);
call.setVisibility(View.VISIBLE);
return true;
}
});
googleMap.setOnCameraIdleListener(new GoogleMap.OnCameraIdleListener() {
@Override
public void onCameraIdle() {
//get latlng at the center by calling
midLatLng = googleMap.getCameraPosition().target;
//request();
requestRetrofit();
googleMap.clear();
}
});
if(sharedPreferences.getBoolean(Config.theme,false)){
mGoogleMap.setMapStyle(MapStyleOptions.loadRawResourceStyle(this, R.raw.night_mode));
}
}
protected void getGPS() {
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(
this);
alertDialogBuilder
.setMessage("Konum Servisiniz kapalı. Eczaneleri görebilmek için lütfen açınız.")
.setCancelable(false)
.setPositiveButton("Konum Servisini Aç",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int id) {
Intent callGPSSettingIntent = new Intent(
android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS);
MapsActivityPicker.this.startActivity(callGPSSettingIntent);
}
});
alertDialogBuilder.setNegativeButton("Kapalı Kalsın",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
AlertDialog alert = alertDialogBuilder.create();
alert.show();
}
public void requestRetrofit(){
ApiInterface apiInterface = ApiClient.getRetrofit().create(ApiInterface.class);
Call<ArrayList<Eczane>> call = apiInterface.getPharmacies(new com.ahmetbesli.eczanem.Request(String.valueOf(midLatLng.latitude),String.valueOf(midLatLng.longitude)));
call.enqueue(new Callback<ArrayList<Eczane>>() {
@Override
public void onResponse(Call<ArrayList<Eczane>> call, retrofit2.Response<ArrayList<Eczane>> response) {
markers.clear();
if (response.body().get(0) != null) {
for (int i = 0; i < 5; i++) {
if (!response.body().get(i).getLatitude().equals("undefined") && !response.body().get(i).getLongitude().equals("undefined") && !response.body().get(i).getLatitude().equals("") && !response.body().get(i).getLongitude().equals("")) {
createMarker(Double.valueOf(response.body().get(i).getLatitude()),
Double.valueOf(response.body().get(i).getLongitude()), response.body().get(i).getName(),
response.body().get(i).getAdress(), response.body().get(i).getPhone(), R.mipmap.marker);
}
}
}
}
@Override
public void onFailure(Call<ArrayList<Eczane>> call, Throwable t) {
}
});
}
protected void starter() {
//Initialize Google Play Services
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
if (ContextCompat.checkSelfPermission(this,
Manifest.permission.ACCESS_FINE_LOCATION)
== PackageManager.PERMISSION_GRANTED) {
//Location Permission already granted
buildGoogleApiClient();
} else {
//Request Location Permission
checkLocationPermission();
}
} else {
buildGoogleApiClient();
}
}
protected synchronized void buildGoogleApiClient() {
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(LocationServices.API)
.build();
mGoogleApiClient.connect();
}
@Override
public void onConnected(Bundle bundle) {
mLocationRequest = LocationRequest.create();
mLocationRequest.setInterval(120000); // two minute interval
mLocationRequest.setFastestInterval(120000);
mLocationRequest.setPriority(LocationRequest.PRIORITY_BALANCED_POWER_ACCURACY);
if (ContextCompat.checkSelfPermission(this,
Manifest.permission.ACCESS_FINE_LOCATION)
== PackageManager.PERMISSION_GRANTED) {
mFusedLocationClient.requestLocationUpdates(mLocationRequest, mLocationCallback, Looper.myLooper());
}
}
@Override
public void onConnectionSuspended(int i) {
}
@Override
public void onConnectionFailed(@NonNull ConnectionResult connectionResult) {
}
public static final int MY_PERMISSIONS_REQUEST_LOCATION = 99;
private void checkLocationPermission() {
if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
!= PackageManager.PERMISSION_GRANTED) {
// Should we show an explanation?
if (ActivityCompat.shouldShowRequestPermissionRationale(this,
Manifest.permission.ACCESS_FINE_LOCATION)) {
// Show an explanation to the user *asynchronously* -- don't block
// this thread waiting for the user's response! After the user
// sees the explanation, try again to request the permission.
new AlertDialog.Builder(this)
.setTitle("Konum Servisi için izin gerekli.")
.setMessage("Bu uygulama konum servisi iznine ihtiyaç duymaktadır. Lütfen kabul ediniz.")
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
//Prompt the user once explanation has been shown
ActivityCompat.requestPermissions(MapsActivityPicker.this,
new String[]{Manifest.permission.ACCESS_FINE_LOCATION},
MY_PERMISSIONS_REQUEST_LOCATION);
}
})
.create()
.show();
} else {
// No explanation needed, we can request the permission.
ActivityCompat.requestPermissions(this,
new String[]{Manifest.permission.ACCESS_FINE_LOCATION},
MY_PERMISSIONS_REQUEST_LOCATION);
}
}
}
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String permissions[], @NonNull int[] grantResults) {
switch (requestCode) {
case MY_PERMISSIONS_REQUEST_LOCATION: {
// If request is cancelled, the result arrays are empty.
if (grantResults.length > 0
&& grantResults[0] == PackageManager.PERMISSION_GRANTED) {
// permission was granted, yay! Do the
// location-related task you need to do.
if (ContextCompat.checkSelfPermission(this,
Manifest.permission.ACCESS_FINE_LOCATION)
== PackageManager.PERMISSION_GRANTED) {
if (mGoogleApiClient == null) {
buildGoogleApiClient();
}
}
} else {
// permission denied, boo! Disable the
// functionality that depends on this permission.
Toast.makeText(this, "İzin Reddedildi", Toast.LENGTH_LONG).show();
}
}
// other 'case' lines to check for other
// permissions this app might request
}
}
@Override
public void onResume() {
super.onResume();
if (resumeCounter <= 2) {
starter();
resumeCounter++;
}
if (counter == 0) {
if (mLocationManager.isProviderEnabled(LocationManager.GPS_PROVIDER)) {
starter();
counter++;
} else {
getGPS();
counter++;
}
}
}
protected void createMarker(double latitude, double longitude, String title, String snippet, String phone, int iconResID) {
MarkerData marker = new MarkerData(title, snippet, phone, latitude, longitude);
markers.add(marker);
mGoogleMap.addMarker(new MarkerOptions()
.position(new LatLng(latitude, longitude))
.anchor(0.5f, 0.5f)
.title(title)
.snippet(snippet)
.icon(BitmapDescriptorFactory.fromResource(iconResID)));
}
@Override
protected void onStart(){
super.onStart();
mLocationCallback = new LocationCallback() {
@Override
public void onLocationResult(LocationResult locationResult) {
for (Location location : locationResult.getLocations()) {
mLastLocation = location;
if (mCurrLocationMarker != null) {
mCurrLocationMarker.remove();
}
mGoogleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(location.getLatitude(), location.getLongitude()), 10.7f));
}
}
};
}
}
最佳答案
在您的 onStart
方法中,您调用 mGoogleMap.animateCamera()
的时间可能未分配。它正在 onMapReady
中分配您需要检查它是否为空。
if(mGoogleMap != null){
mGoogleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(location.getLatitude(), location.getLongitude()), 10.7f));
}
我怀疑您存在竞争条件:在某些设备上,onMapReady()
方法在 onLocationResult()
之前被调用...因此一切正常。但在其他设备上,onLocationResult()
在 onMapReady()
方法之前被调用,因此 mGoogleMap 为 null
!因此,您必须检查是否已分配“mGoogleMap”。
改为这样做:
//create a class variable mLatLng
private LatLng mLatLng;
现在将 onLocationResult()
方法中的代码更改为如下所示:
public void onLocationResult(LocationResult locationResult) {
for (Location location : locationResult.getLocations()) {
mLastLocation = location;
if (mCurrLocationMarker != null) {
mCurrLocationMarker.remove();
}
mLatLng = new LatLng(location.getLatitude(), location.getLongitude());
moveMapTo();
}
添加方法:
private void moveMapTo(){
if(mLatLng == null) return;
if(mGoogleMap != null){
mGoogleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(latLng, 10.7f));
}
}
在 onMapReady()
方法中,您只需添加:
moveMapTo();
这样,当在 onMapReady()
之前调用 onLocationResult()
时,变量“mLatLng”已定义且有效,但“mGoogleMap”为空——这会导致一个错误。一旦在 onMapReady()
中正确定义了“mGoogleMap”,就会再次调用 moveMapTo()
并将您的动画移动到正确的位置。但是,如果 onMapReady()
在 onLocationResult()
之前被调用,则“mGoogleMap”已被分配并且在 onLocationResult()
中一切正常.
关于android - 谷歌地图在位置更新时返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50379271/
SQLite、Content provider 和 Shared Preference 之间的所有已知区别。 但我想知道什么时候需要根据情况使用 SQLite 或 Content Provider 或
警告:我正在使用一个我无法完全控制的后端,所以我正在努力解决 Backbone 中的一些注意事项,这些注意事项可能在其他地方更好地解决......不幸的是,我别无选择,只能在这里处理它们! 所以,我的
我一整天都在挣扎。我的预输入搜索表达式与远程 json 数据完美配合。但是当我尝试使用相同的 json 数据作为预取数据时,建议为空。点击第一个标志后,我收到预定义消息“无法找到任何内容...”,结果
我正在制作一个模拟 NHL 选秀彩票的程序,其中屏幕右侧应该有一个 JTextField,并且在左侧绘制弹跳的选秀球。我创建了一个名为 Ball 的类,它实现了 Runnable,并在我的主 Draf
这个问题已经有答案了: How can I calculate a time span in Java and format the output? (18 个回答) 已关闭 9 年前。 这是我的代码
我有一个 ASP.NET Web API 应用程序在我的本地 IIS 实例上运行。 Web 应用程序配置有 CORS。我调用的 Web API 方法类似于: [POST("/API/{foo}/{ba
我将用户输入的时间和日期作为: DatePicker dp = (DatePicker) findViewById(R.id.datePicker); TimePicker tp = (TimePic
放宽“邻居”的标准是否足够,或者是否有其他标准行动可以采取? 最佳答案 如果所有相邻解决方案都是 Tabu,则听起来您的 Tabu 列表的大小太长或您的释放策略太严格。一个好的 Tabu 列表长度是
我正在阅读来自 cppreference 的代码示例: #include #include #include #include template void print_queue(T& q)
我快疯了,我试图理解工具提示的行为,但没有成功。 1. 第一个问题是当我尝试通过插件(按钮 1)在点击事件中使用它时 -> 如果您转到 Fiddle,您会在“内容”内看到该函数' 每次点击都会调用该属
我在功能组件中有以下代码: const [ folder, setFolder ] = useState([]); const folderData = useContext(FolderContex
我在使用预签名网址和 AFNetworking 3.0 从 S3 获取图像时遇到问题。我可以使用 NSMutableURLRequest 和 NSURLSession 获取图像,但是当我使用 AFHT
我正在使用 Oracle ojdbc 12 和 Java 8 处理 Oracle UCP 管理器的问题。当 UCP 池启动失败时,我希望关闭它创建的连接。 当池初始化期间遇到 ORA-02391:超过
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve
引用这个plunker: https://plnkr.co/edit/GWsbdDWVvBYNMqyxzlLY?p=preview 我在 styles.css 文件和 src/app.ts 文件中指定
为什么我的条形这么细?我尝试将宽度设置为 1,它们变得非常厚。我不知道还能尝试什么。默认厚度为 0.8,这是应该的样子吗? import matplotlib.pyplot as plt import
当我编写时,查询按预期执行: SELECT id, day2.count - day1.count AS diff FROM day1 NATURAL JOIN day2; 但我真正想要的是右连接。当
我有以下时间数据: 0 08/01/16 13:07:46,335437 1 18/02/16 08:40:40,565575 2 14/01/16 22:2
一些背景知识 -我的 NodeJS 服务器在端口 3001 上运行,我的 React 应用程序在端口 3000 上运行。我在 React 应用程序 package.json 中设置了一个代理来代理对端
我面临着一个愚蠢的问题。我试图在我的 Angular 应用程序中延迟加载我的图像,我已经尝试过这个2: 但是他们都设置了 src attr 而不是 data-src,我在这里遗漏了什么吗?保留 d
我是一名优秀的程序员,十分优秀!