add window manager dialog

This commit is contained in:
wangcongtao
2020-05-15 17:00:47 +08:00
parent 696491509c
commit 8d7e09f81d
30 changed files with 455 additions and 1985 deletions

View File

@@ -160,9 +160,11 @@ public interface IMogoServiceApis extends IProvider {
/**
* 地址操作
* Deprecated, use {@link IMogoSearchManager} instead.
*
* @return
*/
@Deprecated
IMogoAddressManager getAddressManagerApi();
/**

View File

@@ -41,6 +41,7 @@ public interface IMogoMapService extends IProvider {
* @param context
* @return 定位实例
*/
@Deprecated
IMogoLocationClient getLocationClient( Context context );
/**

View File

@@ -6,22 +6,28 @@ import com.mogo.map.MogoLatLng;
/**
* @author zyz
* 2020-01-12.
* <p>
* Deprecated, use {@link IMogoSearchManager} instead."
*/
@Deprecated
public interface IMogoAddressManager extends IProvider {
/**
* 回家
*/
@Deprecated
void goHome();
/**
* 去公司
*/
@Deprecated
void goCompany();
/**
* 打开搜索
*/
@Deprecated
void goSearch();
/**
@@ -29,12 +35,15 @@ public interface IMogoAddressManager extends IProvider {
*
* @param destination 目的地
*/
@Deprecated
void calculatePath( MogoLatLng destination );
/**
* 分类搜索
*/
void categorySearch(String category);
@Deprecated
void categorySearch( String category );
@Deprecated
void goSettings();
}

View File

@@ -1,6 +1,7 @@
package com.mogo.service.module;
import com.alibaba.android.arouter.facade.template.IProvider;
import com.mogo.map.MogoLatLng;
/**
* @author zyz
@@ -8,11 +9,41 @@ import com.alibaba.android.arouter.facade.template.IProvider;
*/
public interface IMogoSearchManager extends IProvider {
/**
* 回家
*/
void goHome();
/**
* 去公司
*/
void goCompany();
/**
* 打开搜索
*/
void showSearch();
void showMain();
void speakDraft();
void speakDetail();
void showCategory(String keyword);
/**
* 规划路线
*
* @param destination 目的地
*/
void calculatePath( MogoLatLng destination );
/**
* 分类搜索
*/
void categorySearch( String keyword );
/**
* 打开导航设置
*/
void goSettings();
}