diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerActivitiesScope.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerActivitiesScope.java index 85567b97a5..293a299196 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerActivitiesScope.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerActivitiesScope.java @@ -9,7 +9,7 @@ public class MarkerActivitiesScope { @SerializedName("content") private String mContent; @SerializedName("isCheck") - private Long mIsCheck; + private int mIsCheck; public String getContent() { return mContent; @@ -19,11 +19,11 @@ public class MarkerActivitiesScope { mContent = content; } - public Long getIsCheck() { + public int getIsCheck() { return mIsCheck; } - public void setIsCheck(Long isCheck) { + public void setIsCheck(int isCheck) { mIsCheck = isCheck; } diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerDynamicData.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerDynamicData.java index 0e9080d565..7fb1ad72dc 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerDynamicData.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerDynamicData.java @@ -11,7 +11,7 @@ public class MarkerDynamicData { @SerializedName("name") private String mName; @SerializedName("type") - private Long mType; + private int mType; public String getId() { return mId; @@ -29,11 +29,11 @@ public class MarkerDynamicData { mName = name; } - public Long getType() { + public int getType() { return mType; } - public void setType(Long type) { + public void setType(int type) { mType = type; } diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerHobbyDatum.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerHobbyDatum.java index 73af126e75..fbb50bde19 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerHobbyDatum.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerHobbyDatum.java @@ -9,7 +9,7 @@ public class MarkerHobbyDatum { @SerializedName("content") private String mContent; @SerializedName("isCheck") - private Long mIsCheck; + private int mIsCheck; public String getContent() { return mContent; @@ -19,11 +19,11 @@ public class MarkerHobbyDatum { mContent = content; } - public Long getIsCheck() { + public int getIsCheck() { return mIsCheck; } - public void setIsCheck(Long isCheck) { + public void setIsCheck(int isCheck) { mIsCheck = isCheck; } diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerOnlineCar.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerOnlineCar.java index 46e1c4b9fb..caf5579119 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerOnlineCar.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerOnlineCar.java @@ -12,13 +12,13 @@ public class MarkerOnlineCar { @SerializedName("carInfo") private MarkerCarInfo mCarInfo; @SerializedName("compatibility") - private Long mCompatibility; + private int mCompatibility; @SerializedName("dynamicData") private MarkerDynamicData mDynamicData; @SerializedName("hobbyData") private List mHobbyData; @SerializedName("isFocus") - private Long mIsFocus; + private int mIsFocus; @SerializedName("location") private MarkerLocation mLocation; @SerializedName("type") @@ -42,11 +42,11 @@ public class MarkerOnlineCar { mCarInfo = carInfo; } - public Long getCompatibility() { + public int getCompatibility() { return mCompatibility; } - public void setCompatibility(Long compatibility) { + public void setCompatibility(int compatibility) { mCompatibility = compatibility; } @@ -66,11 +66,11 @@ public class MarkerOnlineCar { mHobbyData = hobbyData; } - public Long getIsFocus() { + public int getIsFocus() { return mIsFocus; } - public void setIsFocus(Long isFocus) { + public void setIsFocus(int isFocus) { mIsFocus = isFocus; } diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerResponse.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerResponse.java index 67af7725bd..0591349344 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerResponse.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerResponse.java @@ -7,7 +7,7 @@ import com.google.gson.annotations.SerializedName; public class MarkerResponse { @SerializedName("code") - private Long mCode; + private int mCode; @SerializedName("msg") private String mMsg; @SerializedName("result") @@ -15,11 +15,11 @@ public class MarkerResponse { @SerializedName("sign") private String mSign; - public Long getCode() { + public int getCode() { return mCode; } - public void setCode(Long code) { + public void setCode(int code) { mCode = code; } diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerShareMusic.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerShareMusic.java index 4bf58b6150..06295dcbfa 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerShareMusic.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerShareMusic.java @@ -9,7 +9,7 @@ public class MarkerShareMusic { @SerializedName("id") private String mId; @SerializedName("likeNumber") - private Long mLikeNumber; + private int mLikeNumber; @SerializedName("location") private MarkerLocation mLocation; @SerializedName("musicName") @@ -29,11 +29,11 @@ public class MarkerShareMusic { mId = id; } - public Long getLikeNumber() { + public int getLikeNumber() { return mLikeNumber; } - public void setLikeNumber(Long likeNumber) { + public void setLikeNumber(int likeNumber) { mLikeNumber = likeNumber; } diff --git a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerUserInfo.java b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerUserInfo.java index ca83979c02..c0d7c20577 100644 --- a/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerUserInfo.java +++ b/modules/mogo-module-service/src/main/java/com/mogo/module/service/entity/MarkerUserInfo.java @@ -7,31 +7,31 @@ import com.google.gson.annotations.SerializedName; public class MarkerUserInfo { @SerializedName("age") - private Long mAge; + private String mAge; @SerializedName("gender") - private Long mGender; + private int mGender; @SerializedName("sn") private String mSn; @SerializedName("userHead") private String mUserHead; @SerializedName("userId") - private Long mUserId; + private int mUserId; @SerializedName("userName") private String mUserName; - public Long getAge() { + public String getAge() { return mAge; } - public void setAge(Long age) { + public void setAge(String age) { mAge = age; } - public Long getGender() { + public int getGender() { return mGender; } - public void setGender(Long gender) { + public void setGender(int gender) { mGender = gender; } @@ -51,11 +51,11 @@ public class MarkerUserInfo { mUserHead = userHead; } - public Long getUserId() { + public int getUserId() { return mUserId; } - public void setUserId(Long userId) { + public void setUserId(int userId) { mUserId = userId; } diff --git a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_blue.9.png b/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_blue.9.png deleted file mode 100644 index 7fe7c84231..0000000000 Binary files a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_blue.9.png and /dev/null differ diff --git a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_blue.png b/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_blue.png new file mode 100644 index 0000000000..d1e30fb103 Binary files /dev/null and b/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_blue.png differ diff --git a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_blue_info.9.png b/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_blue_info.9.png deleted file mode 100644 index 5e0d729a31..0000000000 Binary files a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_blue_info.9.png and /dev/null differ diff --git a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_green.9.png b/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_green.9.png deleted file mode 100644 index 29becca453..0000000000 Binary files a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_green.9.png and /dev/null differ diff --git a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_green.png b/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_green.png new file mode 100644 index 0000000000..3e9e8a7ea3 Binary files /dev/null and b/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_green.png differ diff --git a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_green_info.9.png b/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_green_info.9.png deleted file mode 100644 index 8b919cc1fc..0000000000 Binary files a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_green_info.9.png and /dev/null differ diff --git a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_purple.9.png b/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_purple.9.png deleted file mode 100644 index 96eb49645b..0000000000 Binary files a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_purple.9.png and /dev/null differ diff --git a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_purple.png b/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_purple.png new file mode 100644 index 0000000000..fdcb1b68bd Binary files /dev/null and b/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_purple.png differ diff --git a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_purple_info.9.png b/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_purple_info.9.png deleted file mode 100644 index 084202a382..0000000000 Binary files a/modules/mogo-module-service/src/main/res/drawable-xhdpi/bg_map_marker_purple_info.9.png and /dev/null differ diff --git a/modules/mogo-module-service/src/main/res/drawable-xhdpi/icon_map_marker_listen.png b/modules/mogo-module-service/src/main/res/drawable-xhdpi/icon_map_marker_listen.png new file mode 100644 index 0000000000..a2b097eb26 Binary files /dev/null and b/modules/mogo-module-service/src/main/res/drawable-xhdpi/icon_map_marker_listen.png differ diff --git a/modules/mogo-module-service/src/main/res/drawable-xhdpi/icon_map_marker_misic.png b/modules/mogo-module-service/src/main/res/drawable-xhdpi/icon_map_marker_misic.png new file mode 100644 index 0000000000..eac62954aa Binary files /dev/null and b/modules/mogo-module-service/src/main/res/drawable-xhdpi/icon_map_marker_misic.png differ diff --git a/modules/mogo-module-service/src/main/res/drawable-xhdpi/icon_map_marker_news.png b/modules/mogo-module-service/src/main/res/drawable-xhdpi/icon_map_marker_news.png new file mode 100644 index 0000000000..a832ba97e2 Binary files /dev/null and b/modules/mogo-module-service/src/main/res/drawable-xhdpi/icon_map_marker_news.png differ diff --git a/modules/mogo-module-service/src/main/res/drawable/bg_map_marker_blue_info.xml b/modules/mogo-module-service/src/main/res/drawable/bg_map_marker_blue_info.xml new file mode 100644 index 0000000000..509b6d57fc --- /dev/null +++ b/modules/mogo-module-service/src/main/res/drawable/bg_map_marker_blue_info.xml @@ -0,0 +1,15 @@ + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-service/src/main/res/drawable/bg_map_marker_green_info.xml b/modules/mogo-module-service/src/main/res/drawable/bg_map_marker_green_info.xml new file mode 100644 index 0000000000..0d30f36cf0 --- /dev/null +++ b/modules/mogo-module-service/src/main/res/drawable/bg_map_marker_green_info.xml @@ -0,0 +1,15 @@ + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-service/src/main/res/drawable/bg_map_marker_purple_info.xml b/modules/mogo-module-service/src/main/res/drawable/bg_map_marker_purple_info.xml new file mode 100644 index 0000000000..c777037c20 --- /dev/null +++ b/modules/mogo-module-service/src/main/res/drawable/bg_map_marker_purple_info.xml @@ -0,0 +1,15 @@ + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-service/src/main/res/drawable/bg_shape_reverse_triangle_blue.xml b/modules/mogo-module-service/src/main/res/drawable/bg_shape_reverse_triangle_blue.xml new file mode 100644 index 0000000000..8926a9e9c0 --- /dev/null +++ b/modules/mogo-module-service/src/main/res/drawable/bg_shape_reverse_triangle_blue.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/modules/mogo-module-service/src/main/res/drawable/bg_shape_reverse_triangle_green.xml b/modules/mogo-module-service/src/main/res/drawable/bg_shape_reverse_triangle_green.xml new file mode 100644 index 0000000000..052144cb95 --- /dev/null +++ b/modules/mogo-module-service/src/main/res/drawable/bg_shape_reverse_triangle_green.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/modules/mogo-module-service/src/main/res/drawable/bg_shape_reverse_triangle_purple.xml b/modules/mogo-module-service/src/main/res/drawable/bg_shape_reverse_triangle_purple.xml new file mode 100644 index 0000000000..125579bde5 --- /dev/null +++ b/modules/mogo-module-service/src/main/res/drawable/bg_shape_reverse_triangle_purple.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/modules/mogo-module-service/src/main/res/layout/view_map_marker.xml b/modules/mogo-module-service/src/main/res/layout/view_map_marker.xml index eb046bd455..c831059662 100644 --- a/modules/mogo-module-service/src/main/res/layout/view_map_marker.xml +++ b/modules/mogo-module-service/src/main/res/layout/view_map_marker.xml @@ -1,15 +1,30 @@ - + + + android:layout_marginTop="@dimen/dp_6" + android:src="@drawable/icon_default" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> - \ No newline at end of file + \ No newline at end of file diff --git a/modules/mogo-module-service/src/main/res/layout/view_map_marker_info.xml b/modules/mogo-module-service/src/main/res/layout/view_map_marker_info.xml index 4904aab108..c4e0a7e62c 100644 --- a/modules/mogo-module-service/src/main/res/layout/view_map_marker_info.xml +++ b/modules/mogo-module-service/src/main/res/layout/view_map_marker_info.xml @@ -1,23 +1,32 @@ - - - + android:textSize="@dimen/sp_32" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> - \ No newline at end of file + + \ No newline at end of file diff --git a/modules/mogo-module-tanlu/build.gradle b/modules/mogo-module-tanlu/build.gradle index 4110051bd6..6bb1edb229 100644 --- a/modules/mogo-module-tanlu/build.gradle +++ b/modules/mogo-module-tanlu/build.gradle @@ -46,12 +46,14 @@ dependencies { implementation rootProject.ext.dependencies.mogocommons implementation rootProject.ext.dependencies.mogoserviceapi implementation rootProject.ext.dependencies.modulecommon + implementation rootProject.ext.dependencies.moduleservice } else { implementation project(":libraries:mogo-map") implementation project(":foudations:mogo-utils") api project(":foudations:mogo-commons") implementation project(':services:mogo-service-api') implementation project(':modules:mogo-module-common') + implementation project(':modules:mogo-module-service') } implementation rootProject.ext.dependencies.androidxappcompat implementation rootProject.ext.dependencies.androidxconstraintlayout diff --git a/modules/mogo-module-tanlu/src/main/java/com/mogo/tanlu/fragment/TanluCardViewFragment.java b/modules/mogo-module-tanlu/src/main/java/com/mogo/tanlu/fragment/TanluCardViewFragment.java index df85830cf9..3abfaf7578 100644 --- a/modules/mogo-module-tanlu/src/main/java/com/mogo/tanlu/fragment/TanluCardViewFragment.java +++ b/modules/mogo-module-tanlu/src/main/java/com/mogo/tanlu/fragment/TanluCardViewFragment.java @@ -25,6 +25,7 @@ import com.mogo.map.search.geo.MogoPoiItem; import com.mogo.map.search.poisearch.IMogoPoiSearchListener; import com.mogo.map.search.poisearch.MogoPoiResult; import com.mogo.map.uicontroller.EnumMapUI; +import com.mogo.module.service.entity.MarkerExploreWay; import com.mogo.service.MogoServicePaths; import com.mogo.service.imageloader.IMogoImageLoaderListener; import com.mogo.service.imageloader.IMogoImageloader; @@ -60,13 +61,12 @@ public class TanluCardViewFragment extends MvpFragment> //map private IMogoMarker mPoiMarker; -// private int position = -1; + // private int position = -1; private IMogoMarkerManager mMarkerManager; private IMogoMapService mMogoMapService; //media private GSYVideoOptionBuilder gsyVideoOptionBuilder = new GSYVideoOptionBuilder(); - // private String videoUrl = ""; private String videoUrl = "http://ivi.bupt.edu.cn/hls/cctv1hd.m3u8"; private String imageUrl = "https://oimagec4.ydstatic.com/image?id=-5397300958976572132&product=adpublish&w=520&h=347"; SimpleCoverVideoPlayer simpleCoverVideoPlayer; @@ -75,6 +75,7 @@ public class TanluCardViewFragment extends MvpFragment> private TextView mPreviousTv; private TextView mNextTv; + private List markerExploreWayList; @Override protected int getLayoutId() { @@ -189,11 +190,26 @@ public class TanluCardViewFragment extends MvpFragment> */ @Override public boolean onMarkerClicked(IMogoMarker marker) { - marker.getObject(); + //点击marker以后,确认他的位置?然后点击下一个操作 + MarkerExploreWay exploreWay = (MarkerExploreWay) marker.getObject(); + return true; } + /** + * 刷新单个数据,更新位置positon TODO + */ +// private void refreshSingleData() { +// markerExploreWayList +// } + + /** + * + * @return + */ +// private void + @NonNull @Override diff --git a/modules/mogo-module-tanlu/src/main/res/drawable/shape_bg_222533.xml b/modules/mogo-module-tanlu/src/main/res/drawable/shape_bg_222533.xml index 18f8f6ba5b..12b869a5ff 100644 --- a/modules/mogo-module-tanlu/src/main/res/drawable/shape_bg_222533.xml +++ b/modules/mogo-module-tanlu/src/main/res/drawable/shape_bg_222533.xml @@ -1,5 +1,5 @@ - - + + \ No newline at end of file diff --git a/modules/mogo-module-tanlu/src/main/res/drawable/shape_bg_222533_10px.xml b/modules/mogo-module-tanlu/src/main/res/drawable/shape_bg_222533_10px.xml new file mode 100644 index 0000000000..793a82f62b --- /dev/null +++ b/modules/mogo-module-tanlu/src/main/res/drawable/shape_bg_222533_10px.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-tanlu/src/main/res/drawable/shape_bg_222533_6px_top.xml b/modules/mogo-module-tanlu/src/main/res/drawable/shape_bg_222533_6px_top.xml deleted file mode 100644 index 2835c0389f..0000000000 --- a/modules/mogo-module-tanlu/src/main/res/drawable/shape_bg_222533_6px_top.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - \ No newline at end of file diff --git a/modules/mogo-module-tanlu/src/main/res/drawable/shape_bg_222533_9px.xml b/modules/mogo-module-tanlu/src/main/res/drawable/shape_bg_222533_9px.xml new file mode 100644 index 0000000000..3ac5215724 --- /dev/null +++ b/modules/mogo-module-tanlu/src/main/res/drawable/shape_bg_222533_9px.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-tanlu/src/main/res/layout/tanlu_activity_media_full.xml b/modules/mogo-module-tanlu/src/main/res/layout/tanlu_activity_media_full.xml index aada8efa34..a90d871523 100644 --- a/modules/mogo-module-tanlu/src/main/res/layout/tanlu_activity_media_full.xml +++ b/modules/mogo-module-tanlu/src/main/res/layout/tanlu_activity_media_full.xml @@ -15,21 +15,20 @@ android:clickable="true" android:longClickable="true" /> - @@ -54,12 +53,12 @@ diff --git a/modules/mogo-module-tanlu/src/main/res/layout/tanlu_item_main_media_recycler.xml b/modules/mogo-module-tanlu/src/main/res/layout/tanlu_item_main_media_recycler.xml index 49a58a51d0..a04b8566c3 100644 --- a/modules/mogo-module-tanlu/src/main/res/layout/tanlu_item_main_media_recycler.xml +++ b/modules/mogo-module-tanlu/src/main/res/layout/tanlu_item_main_media_recycler.xml @@ -1,46 +1,63 @@ + android:layout_width="330dp" + android:layout_height="330dp" + android:background="@drawable/shape_bg_222533_10px"> - + android:layout_height="wrap_content"> + android:textColor="@color/color_3" + android:textStyle="bold" + android:textSize="18dp" /> + android:layout_marginLeft="16dp" + android:layout_marginTop="2dp" + android:layout_marginBottom="5dp" + android:text="666KM" + android:textColor="@color/color_666666" + android:textStyle="bold" + android:textSize="13dp" /> + + - - - - - - - - + android:layout_height="wrap_content" + android:layout_marginTop="10dp" + android:layout_marginBottom="21dp" + android:layout_below="@+id/media_layout"> - + android:drawableLeft="@drawable/default_image" + android:text="@string/tanlu_previous" + android:textColor="@color/color_545362" + android:textSize="13dp" /> - + android:drawableRight="@drawable/default_image" + android:text="@string/tanlu_next" + android:paddingRight="10dp" + android:textColor="@color/color_545362" + android:textSize="13dp" /> \ No newline at end of file diff --git a/modules/mogo-module-tanlu/src/main/res/values/colors.xml b/modules/mogo-module-tanlu/src/main/res/values/colors.xml index 0ed1b64aeb..6c0dd2590f 100644 --- a/modules/mogo-module-tanlu/src/main/res/values/colors.xml +++ b/modules/mogo-module-tanlu/src/main/res/values/colors.xml @@ -25,8 +25,16 @@ #213142 #33FFFFFF #B3000000 - #333333 #0091FF #d9000000 #FF1B1B + + #F8F8F8 + #333333 + #DADAE2 + #545362 + #99191C25 + #666666 + #999999 + diff --git a/modules/mogo-module-tanlu/src/main/res/values/strings.xml b/modules/mogo-module-tanlu/src/main/res/values/strings.xml index 624c47aa7f..b6fc8a1bd9 100644 --- a/modules/mogo-module-tanlu/src/main/res/values/strings.xml +++ b/modules/mogo-module-tanlu/src/main/res/values/strings.xml @@ -15,6 +15,9 @@ 为您找到%s条路况信息 开启小智车联 共享计划 + 上一条 + 下一条 + 正在为您搜索路况