opt
This commit is contained in:
@@ -8,6 +8,9 @@ buildscript {
|
||||
maven {
|
||||
url 'http://maven.aliyun.com/nexus/content/groups/public/'
|
||||
}
|
||||
maven {
|
||||
url 'http://nexus.zhidaoauto.com/repository/maven-snapshots/'
|
||||
}
|
||||
maven {
|
||||
url 'http://nexus.zhidaoauto.com/repository/maven-releases/'
|
||||
}
|
||||
@@ -31,6 +34,9 @@ allprojects {
|
||||
maven {
|
||||
url 'http://maven.aliyun.com/nexus/content/groups/public/'
|
||||
}
|
||||
maven {
|
||||
url 'http://nexus.zhidaoauto.com/repository/maven-snapshots/'
|
||||
}
|
||||
maven {
|
||||
url 'http://nexus.zhidaoauto.com/repository/maven-releases/'
|
||||
}
|
||||
|
||||
@@ -139,7 +139,7 @@ public class AMapNaviViewWrapper implements IMogoMapView,
|
||||
mMapView.setCarOverlayVisible( false );
|
||||
mMapView.setNaviMode( AMapNaviView.CAR_UP_MODE );
|
||||
|
||||
setRenderFps( 20 );
|
||||
setRenderFps( 10 );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -39,9 +39,20 @@ public class AppNavigatorPresenter extends Presenter< AppNavigatorView > impleme
|
||||
super.onCreate( owner );
|
||||
mIntentManager = ( IMogoIntentManager ) ARouter.getInstance().build( MogoServicePaths.PATH_INTENT_MANAGER ).navigation( getContext() );
|
||||
mMogoStatusManager = ( IMogoStatusManager ) ARouter.getInstance().build( MogoServicePaths.PATH_STATUS_MANAGER ).navigation( getContext() );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onResume( @NonNull LifecycleOwner owner ) {
|
||||
super.onResume( owner );
|
||||
mIntentManager.registerIntentListener( AppsConst.COMMAND_OPERATION, this );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPause( @NonNull LifecycleOwner owner ) {
|
||||
super.onPause( owner );
|
||||
mIntentManager.unregisterIntentListener( AppsConst.COMMAND_OPERATION, this );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onIntentReceived( String intentStr, Intent intent ) {
|
||||
if ( !AppsConst.COMMAND_OPERATION.equals( intentStr ) ) {
|
||||
|
||||
@@ -459,7 +459,7 @@
|
||||
android:maxHeight="@dimen/dp_11"
|
||||
android:progressDrawable="@drawable/shape_seek_bar"
|
||||
android:thumb="@mipmap/icon_pb_thumb"
|
||||
android:progress="20"
|
||||
android:progress="10"
|
||||
app:layout_constraintLeft_toRightOf="@id/iv_navi_sound_low"
|
||||
app:layout_constraintRight_toLeftOf="@id/iv_navi_sound_high"
|
||||
app:layout_constraintTop_toTopOf="@id/iv_navi_sound_low"
|
||||
|
||||
Reference in New Issue
Block a user