Merge "New development setting for ANRs."

This commit is contained in:
Dianne Hackborn
2011-08-02 16:58:30 -07:00
committed by Android (Google) Code Review
3 changed files with 32 additions and 0 deletions

View File

@@ -3389,6 +3389,12 @@ found in the list of installed applications.</string>
<!-- UI debug setting: limit number of running background processes [CHAR LIMIT=25] -->
<string name="app_process_limit_title">Background process limit</string>
<!-- UI debug setting: show all ANRs? [CHAR LIMIT=25] -->
<string name="show_all_anrs">Show all ANRs</string>
<!-- UI debug setting: show all ANRs summary [CHAR LIMIT=50] -->
<string name="show_all_anrs_summary">Show Application Not Responding dialog
for background apps</string>
<!-- Activity title for network data usage summary. [CHAR LIMIT=25] -->
<string name="data_usage_summary_title">Data usage</string>
<!-- Title for option to pick visible time range from a list available usage periods. [CHAR LIMIT=25] -->

View File

@@ -93,6 +93,11 @@
android:entries="@array/app_process_limit_entries"
android:entryValues="@array/app_process_limit_values" />
<CheckBoxPreference
android:key="show_all_anrs"
android:title="@string/show_all_anrs"
android:summary="@string/show_all_anrs_summary"/>
</PreferenceCategory>
</PreferenceScreen>