前提・実現したいこと
Android studio 4.2.2でgoogle Mapを取り入れた実装をしています.
私が実装したい機能として,ユーザの向きを取得する度に,マップ UI上で向きが分かるよう反映させたいです.
しかし,向きを取得する毎にsetOrientation()を呼ぶため,膨大な数の
I/Counters: exceeded sample count in FrameTime
が呼ばれます. いずれ,処理が重いと判断され,アプリが落ちることはあるでしょうか.
向きは,onSensorChanged(SensorEvent event) で内の処理で取得しています.
以下のLogは,地図の状態が変わる度に呼ばれるのですが,何故こんなに呼ばれるのでしょうか.
そもそもFrameTime以内に,カメラ位置・拡大縮小・markerの変更による描画を終えることは可能なのでしょうか.
私の原因は,FrameTimeでのsample数を越えたことが原因です.
一様このLogは無視して構わないという情報を見たのですが,スレッドの表示限界に達することでアプリが落ちる様な気がするので,
できれば検出されないようにしたいです.
大量にはかれるLog
以下のように,zoomIn/Out, カメラ位置を動かす,Markerの状態が変わるなどをすると,大量に検出します.
I/Counters: exceeded sample count in FrameTime I/Counters: exceeded sample count in FrameTime I/Counters: exceeded sample count in FrameTime I/Counters: exceeded sample count in FrameTime I/Counters: exceeded sample count in FrameTime I/Counters: exceeded sample count in FrameTime I/chatty: uid=10116(u0_a116) androidmapsapi- identical 21 lines I/Counters: exceeded sample count in FrameTime I/Counters: exceeded sample count in FrameTime I/Counters: exceeded sample count in FrameTime I/Counters: exceeded sample count in FrameTime I/Counters: exceeded sample count in FrameTime I/Counters: exceeded sample count in FrameTime I/chatty: uid=10116(u0_a116) androidmapsapi- identical 59 lines I/Counters: exceeded sample count in FrameTime I/Counters: exceeded sample count in FrameTime I/chatty: uid=10116(u0_a116) androidmapsapi- identical 4 lines I/Counters: exceeded sample count in FrameTime I/Counters: exceeded sample count in FrameTime I/chatty: uid=10116(u0_a116) androidmapsapi- identical 64 lines I/Counters: exceeded sample count in FrameTime I/Counters: exceeded sample count in FrameTime I/chatty: uid=10116(u0_a116) androidmapsapi- identical 2 lines I/Counters: exceeded sample count in FrameTime I/Counters: exceeded sample count in FrameTime I/chatty: uid=10116(u0_a116) androidmapsapi- identical 32 lines I/Counters: exceeded sample count in FrameTime
該当のソースコード
Mapに関わるコードを載せています.
// onMapReadyが呼ばれたとき,1度だけ実行 public void onMapStart() { // marker my location in map //setPinOnMap(myUserInfo); onLocationChanged(myUserInfo); // marker group area in map createCircle(); mMap.getUiSettings().setScrollGesturesEnabled(false); } public void onLocationChanged(UserInfo userInfo) { Marker marker = markerHashMap.get(userInfo.getPeerId()); if (null != marker) { marker.remove(); Log.d("onLocationChanged()", userInfo.getPeerId() + "さんのMarkerをremove()します"); } LatLng currentLocation = new LatLng(userInfo.getLatitude(), userInfo.getLongitude()); marker = mMap.addMarker(new MarkerOptions() .position(currentLocation) .title(userInfo.getPeerId())); markerHashMap.put(userInfo.getPeerId(), marker); Log.d("onLocationChanged()", userInfo.getPeerId() + "さんのMarkerを更新しました"); Log.d("onLocationChanged()", "markerの数は" + markerHashMap.size() + "です"); if (userInfo.getPeerId().equals(myUserInfo.getPeerId())) { marker.setIcon(BitmapDescriptorFactory.fromResource(R.drawable.my_pin)); mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(currentLocation, 18)); } // 他端末のPinは緑色が基本 else { marker.setIcon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_GREEN)); marker.setAlpha(0.7f); markerList.add(marker); markerHashMap.put(marker.getTitle(), marker); } } // 視覚的方向変更 public void setOrientation(float dirAngle) { Marker marker = markerHashMap.get(myUserInfo.getPeerId()); if (null != marker) { marker.setRotation(dirAngle); } } private void createCircle() { CircleOptions circleOptions = new CircleOptions() .center(new LatLng(groupInfo.getLatitude(), groupInfo.getLongitude())) .radius(groupInfo.getAreaSize()) //.fillColor(Color.argb(59, 255, 255, 0)) .strokeColor(Color.RED) .zIndex(1.0f); mMap.addCircle(circleOptions); }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。