diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 02c90b4843f27..0ff197606906f 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -2564,6 +2564,14 @@ public final class Settings { public static final String WIFI_NETWORKS_AVAILABLE_REPEAT_DELAY = "wifi_networks_available_repeat_delay"; + /** + * Whether to nofity the user of WiMAX network. + * If WiMAX is connected or disconnected, we will put this notification up. + * @hide + */ + public static final String WIMAX_NETWORKS_AVAILABLE_NOTIFICATION_ON = + "wimax_networks_available_notification_on"; + /** * The number of radio channels that are allowed in the local * 802.11 regulatory domain. @@ -2700,6 +2708,12 @@ public final class Settings { public static final String WIFI_MOBILE_DATA_TRANSITION_WAKELOCK_TIMEOUT_MS = "wifi_mobile_data_transition_wakelock_timeout_ms"; + /** + * Whether the Wimax should be on. Only the WiMAX service should touch this. + * @hide + */ + public static final String WIMAX_ON = "wimax_on"; + /** * Whether background data usage is allowed by the user. See * ConnectivityManager for more info. diff --git a/core/res/res/drawable-hdpi/stat_sys_data_fully_inandout_4g.png b/core/res/res/drawable-hdpi/stat_sys_data_fully_inandout_4g.png new file mode 100644 index 0000000000000..4ff7db3b4e61b Binary files /dev/null and b/core/res/res/drawable-hdpi/stat_sys_data_fully_inandout_4g.png differ diff --git a/core/res/res/drawable-hdpi/stat_sys_data_inandout_4g.png b/core/res/res/drawable-hdpi/stat_sys_data_inandout_4g.png new file mode 100644 index 0000000000000..c5edf2c19e3f6 Binary files /dev/null and b/core/res/res/drawable-hdpi/stat_sys_data_inandout_4g.png differ diff --git a/core/res/res/drawable-mdpi/stat_sys_data_fully_inandout_4g.png b/core/res/res/drawable-mdpi/stat_sys_data_fully_inandout_4g.png new file mode 100644 index 0000000000000..de8c5ee5bc588 Binary files /dev/null and b/core/res/res/drawable-mdpi/stat_sys_data_fully_inandout_4g.png differ diff --git a/core/res/res/drawable-mdpi/stat_sys_data_inandout_4g.png b/core/res/res/drawable-mdpi/stat_sys_data_inandout_4g.png new file mode 100644 index 0000000000000..f407bc97ae0a9 Binary files /dev/null and b/core/res/res/drawable-mdpi/stat_sys_data_inandout_4g.png differ