航海UI修改
This commit is contained in:
@@ -492,21 +492,21 @@ public class UriProvider {
|
||||
* 航海帮助
|
||||
*/
|
||||
public static String getRadishHelp() {
|
||||
return JAVA_WEB_URL.concat("/yinyou/modules/rule/radishRule.html");
|
||||
return JAVA_WEB_URL.concat("/yinyou/activity/act-sail/play_explain.html");
|
||||
}
|
||||
|
||||
/**
|
||||
* 航海记录
|
||||
*/
|
||||
public static String getRadishHistory() {
|
||||
return JAVA_WEB_URL.concat("/yinyou/modules/rank/index.html#/RadishRecord");
|
||||
return JAVA_WEB_URL.concat("/yinyou/activity/act-sail/win_record.html");
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取航海钥匙
|
||||
*/
|
||||
public static String getRadishKey() {
|
||||
return JAVA_WEB_URL.concat("/yinyou/activity/radish/index.html");
|
||||
return JAVA_WEB_URL.concat("/yinyou/activity/act-sail/more.html");
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -54,6 +54,8 @@ public class DemoCache {
|
||||
private static final String KEY_ANCHOR_CARD_VIEW = "key_anchor_card_view";
|
||||
private static final String KEY_ANCHOR_CARD_VIEW_TIME = "key_anchor_card_view_time";
|
||||
private static final String KEY_LAUNCH_COUNT = "key_launch_count";
|
||||
private static final String KEY_RADISH_TIPS = "key_radish_tips";
|
||||
|
||||
private static StatusBarNotificationConfig notificationConfig;
|
||||
|
||||
public static Long readSpeedyMessageGoneTime() {
|
||||
@@ -293,5 +295,13 @@ public class DemoCache {
|
||||
return SettingsPref.instance().getInt(KEY_LAUNCH_COUNT, -1);
|
||||
}
|
||||
|
||||
public static void saveRadishTips(boolean value) {
|
||||
SettingsPref.instance().putBoolean(KEY_RADISH_TIPS, value);
|
||||
}
|
||||
|
||||
public static boolean readRadishTips() {
|
||||
return SettingsPref.instance().getBoolean(KEY_RADISH_TIPS, true);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user