diff options
author | Mark Womack <> | 2009-03-25 16:10:13 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-03-25 16:10:13 -0700 |
commit | 78ef45602aad6dff0f6b61f2a327aec87c0f5fce (patch) | |
tree | bb28d71524230a5013afc1a78b54551e80dcc7e4 /core | |
parent | a7f7dee1e24b1e33c1a198b5b7843ca72344da0c (diff) | |
download | frameworks_base-78ef45602aad6dff0f6b61f2a327aec87c0f5fce.zip frameworks_base-78ef45602aad6dff0f6b61f2a327aec87c0f5fce.tar.gz frameworks_base-78ef45602aad6dff0f6b61f2a327aec87c0f5fce.tar.bz2 |
Automated import from //branches/master/...@142755,142755
Diffstat (limited to 'core')
-rw-r--r-- | core/java/android/provider/Settings.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 68eeccd..4c9471c 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -2537,6 +2537,31 @@ public final class Settings { "vending_use_checkout_qa_service"; /** + * Default value to use for all/free/priced filter in Market. + * Valid values: ALL, FREE, PAID (case insensitive) + */ + public static final String VENDING_DEFAULT_FILTER = "vending_default_filter"; + /** + * Ranking type value to use for the first category tab (currently popular) + */ + public static final String VENDING_TAB_1_RANKING_TYPE = "vending_tab_1_ranking_type"; + + /** + * Title string to use for first category tab. + */ + public static final String VENDING_TAB_1_TITLE = "vending_tab_1_title"; + + /** + * Ranking type value to use for the second category tab (currently newest) + */ + public static final String VENDING_TAB_2_RANKING_TYPE = "vending_tab_2_ranking_type"; + + /** + * Title string to use for second category tab. + */ + public static final String VENDING_TAB_2_TITLE = "vending_tab_2_title"; + + /** * URL that points to the legal terms of service to display in Settings. * <p> * This should be a https URL. For a pretty user-friendly URL, use |