增加天气显示

This commit is contained in:
2026-03-06 09:50:58 +08:00
parent 962a022bf9
commit 0f2adad060
30 changed files with 5567 additions and 64 deletions

View File

@@ -5,4 +5,32 @@ public class CommonConfig {
public static final String CONTACT_HOME_PAGE = "contact_home_page_key";
public static final String MANUALLY_SELECT_LOCATION = "manually_select_location_key";
/*地址改变时发送*/
public static final String LOCATION_CHANGED_KEY = "map_location_changed";
public static final String LOCATION_ID_CHANGED_KEY = "map_Location_ID_changed";
/*当前定位地址*/
public static final String CURRENT_LOCATION_MAP_ADDRESS_KEY = "current_map_location_map_address";
public static final String CURRENT_LOCATION_MAP_LOCATION_DESCRIBE_KEY = "current_map_location_map_location_describe";
/*省*/
public static final String CURRENT_LOCATION_PROVINCE_KEY = "current_map_location_province";
/*市*/
public static final String CURRENT_LOCATION_CITY_KEY = "current_map_location_city";
/*区*/
public static final String CURRENT_LOCATION_DISTRICT_KEY = "current_map_location_district";
public static final String CURRENT_LOCATION_TOWN_KEY = "current_map_location_town";
public static final String CURRENT_LOCATION_STREET_KEY = "current_map_location_street";
/*当前定位经度*/
public static final String CURRENT_LOCATION_LONGITUDE_KEY = "current_map_location_longitude";
/*当前定位纬度*/
public static final String CURRENT_LOCATION_LATITUDE_KEY = "current_map_location_latitude";
/*当前ad_code*/
public static final String CURRENT_LOCATION_AD_CODE_KEY = "current_map_location_ad_code";
/*当前LocationID*/
@Deprecated
public static final String CURRENT_LOCATION_ID_KEY = "current_map_location_ID";
}