Browse Source

Prima versione usabile

gine 9 years ago
parent
commit
52b4f99512
51 changed files with 9554 additions and 1 deletions
  1. 38 0
      AndroidManifest.xml
  2. 11 1
      README.md
  3. 38 0
      bin/AndroidManifest.xml
  4. 1020 0
      bin/R.txt
  5. BIN
      bin/StatusReader.apk
  6. BIN
      bin/classes.dex
  7. 5 0
      bin/jarlist.cache
  8. BIN
      bin/res/crunch/drawable-hdpi/green_btn.png
  9. BIN
      bin/res/crunch/drawable-hdpi/ic_launcher.png
  10. BIN
      bin/res/crunch/drawable-hdpi/ic_menu_refresh.png
  11. BIN
      bin/res/crunch/drawable-hdpi/ic_menu_settings.png
  12. BIN
      bin/res/crunch/drawable-hdpi/red_btn.png
  13. BIN
      bin/res/crunch/drawable-hdpi/software.png
  14. BIN
      bin/res/crunch/drawable-mdpi/ic_launcher.png
  15. BIN
      bin/res/crunch/drawable-xhdpi/ic_launcher.png
  16. BIN
      bin/res/crunch/drawable-xxhdpi/ic_launcher.png
  17. BIN
      bin/resources.ap_
  18. 1001 0
      gen/android/support/v7/appcompat/R.java
  19. 6 0
      gen/net/indivia/hacklabbo/statusreader/BuildConfig.java
  20. 6348 0
      gen/net/indivia/hacklabbo/statusreader/R.java
  21. BIN
      ic_launcher-web.png
  22. 20 0
      proguard-project.txt
  23. 15 0
      project.properties
  24. BIN
      res/drawable-hdpi/green_btn.png
  25. BIN
      res/drawable-hdpi/ic_launcher.png
  26. BIN
      res/drawable-hdpi/ic_menu_refresh.png
  27. BIN
      res/drawable-hdpi/ic_menu_settings.png
  28. BIN
      res/drawable-hdpi/red_btn.png
  29. BIN
      res/drawable-hdpi/software.png
  30. BIN
      res/drawable-mdpi/ic_launcher.png
  31. BIN
      res/drawable-xhdpi/ic_launcher.png
  32. BIN
      res/drawable-xxhdpi/ic_launcher.png
  33. 98 0
      res/layout/activity_main.xml
  34. 19 0
      res/menu/main.xml
  35. 11 0
      res/values-v11/styles.xml
  36. 12 0
      res/values-v14/styles.xml
  37. 10 0
      res/values-w820dp/dimens.xml
  38. 7 0
      res/values/dimens.xml
  39. 12 0
      res/values/keys.xml
  40. 21 0
      res/values/prefs.xml
  41. 17 0
      res/values/prefs_arrays.xml
  42. 11 0
      res/values/strings.xml
  43. 20 0
      res/values/styles.xml
  44. 38 0
      res/xml/prefs.xml
  45. 145 0
      src/net/indivia/hacklabbo/statusreader/CheckUpdate.java
  46. 97 0
      src/net/indivia/hacklabbo/statusreader/Downloader.java
  47. 130 0
      src/net/indivia/hacklabbo/statusreader/MainActivity.java
  48. 67 0
      src/net/indivia/hacklabbo/statusreader/PrefScreen.java
  49. 99 0
      src/net/indivia/hacklabbo/statusreader/SNetwork.java
  50. 54 0
      src/net/indivia/hacklabbo/statusreader/SUtility.java
  51. 184 0
      src/net/indivia/hacklabbo/statusreader/StatusUpdate.java

+ 38 - 0
AndroidManifest.xml

@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="net.indivia.hacklabbo.statusreader"
+    android:versionCode="1"
+    android:versionName="1.0" >
+    <!-- check per la rete -->
+    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
+    <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
+    <!-- accedere alla rete -->
+    <uses-permission android:name="android.permission.INTERNET" />
+    <!-- scrivere su sd (download) -->
+    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+    
+    <uses-sdk
+        android:minSdkVersion="8"
+        android:targetSdkVersion="22" />
+
+    <application
+        android:allowBackup="true"
+        android:icon="@drawable/ic_launcher"
+        android:label="@string/app_name"
+        android:theme="@style/AppTheme" >
+        <service android:name=".Downloader" />
+        <service android:name=".CheckUpdate" />
+        <service android:name=".StatusUpdate" />
+        <activity
+            android:name="net.indivia.hacklabbo.statusreader.MainActivity"
+            android:label="@string/app_name" >
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
+        <activity android:name="net.indivia.hacklabbo.statusreader.PrefScreen" />
+    </application>
+
+</manifest>

+ 11 - 1
README.md

@@ -1,4 +1,14 @@
 StatusReader
 ============
 
-Aggiorna lo stato dell'Activity leggendo un file in formato JSON.
+Aggiorna lo stato dell'Activity leggendo un file in formato JSON da una pagina web con il seguente formato:
+
+<pre>
+{"open":true,"date":"2015-04-03T00:43:18+02:00"}
+</pre>
+
+Sono settabili:
+- Da quale url deve essere preso il file JSON
+- Se l'applicazione deve aggiornare lo stato in background
+- Ogni quanto tempo il servizio in background deve verificare il cambiamento di stato
+- Se l'applicazione deve informare all'avvio che ci sono degli aggiornamenti di se stessa

+ 38 - 0
bin/AndroidManifest.xml

@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="net.indivia.hacklabbo.statusreader"
+    android:versionCode="1"
+    android:versionName="1.0" >
+    <!-- check per la rete -->
+    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
+    <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
+    <!-- accedere alla rete -->
+    <uses-permission android:name="android.permission.INTERNET" />
+    <!-- scrivere su sd (download) -->
+    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+    
+    <uses-sdk
+        android:minSdkVersion="8"
+        android:targetSdkVersion="22" />
+
+    <application
+        android:allowBackup="true"
+        android:icon="@drawable/ic_launcher"
+        android:label="@string/app_name"
+        android:theme="@style/AppTheme" >
+        <service android:name=".Downloader" />
+        <service android:name=".CheckUpdate" />
+        <service android:name=".StatusUpdate" />
+        <activity
+            android:name="net.indivia.hacklabbo.statusreader.MainActivity"
+            android:label="@string/app_name" >
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
+        <activity android:name="net.indivia.hacklabbo.statusreader.PrefScreen" />
+    </application>
+
+</manifest>

+ 1020 - 0
bin/R.txt

@@ -0,0 +1,1020 @@
+int anim abc_fade_in 0x7f040000
+int anim abc_fade_out 0x7f040001
+int anim abc_grow_fade_in_from_bottom 0x7f040002
+int anim abc_shrink_fade_out_from_bottom 0x7f040003
+int anim abc_slide_in_bottom 0x7f040004
+int anim abc_slide_in_top 0x7f040005
+int anim abc_slide_out_bottom 0x7f040006
+int anim abc_slide_out_top 0x7f040007
+int array prefs_refresh_time 0x7f0d0000
+int array prefs_refresh_time_value 0x7f0d0001
+int attr actionBarDivider 0x7f010015
+int attr actionBarItemBackground 0x7f010016
+int attr actionBarPopupTheme 0x7f01000f
+int attr actionBarSize 0x7f010014
+int attr actionBarSplitStyle 0x7f010011
+int attr actionBarStyle 0x7f010010
+int attr actionBarTabBarStyle 0x7f01000b
+int attr actionBarTabStyle 0x7f01000a
+int attr actionBarTabTextStyle 0x7f01000c
+int attr actionBarTheme 0x7f010012
+int attr actionBarWidgetTheme 0x7f010013
+int attr actionButtonStyle 0x7f01002d
+int attr actionDropDownStyle 0x7f010028
+int attr actionLayout 0x7f010072
+int attr actionMenuTextAppearance 0x7f010017
+int attr actionMenuTextColor 0x7f010018
+int attr actionModeBackground 0x7f01001b
+int attr actionModeCloseButtonStyle 0x7f01001a
+int attr actionModeCloseDrawable 0x7f01001d
+int attr actionModeCopyDrawable 0x7f01001f
+int attr actionModeCutDrawable 0x7f01001e
+int attr actionModeFindDrawable 0x7f010023
+int attr actionModePasteDrawable 0x7f010020
+int attr actionModePopupWindowStyle 0x7f010025
+int attr actionModeSelectAllDrawable 0x7f010021
+int attr actionModeShareDrawable 0x7f010022
+int attr actionModeSplitBackground 0x7f01001c
+int attr actionModeStyle 0x7f010019
+int attr actionModeWebSearchDrawable 0x7f010024
+int attr actionOverflowButtonStyle 0x7f01000d
+int attr actionOverflowMenuStyle 0x7f01000e
+int attr actionProviderClass 0x7f010074
+int attr actionViewClass 0x7f010073
+int attr activityChooserViewStyle 0x7f010034
+int attr background 0x7f01005d
+int attr backgroundSplit 0x7f01005f
+int attr backgroundStacked 0x7f01005e
+int attr barSize 0x7f01009f
+int attr buttonBarButtonStyle 0x7f01002f
+int attr buttonBarStyle 0x7f01002e
+int attr closeIcon 0x7f01007c
+int attr closeItemLayout 0x7f01006d
+int attr collapseContentDescription 0x7f010094
+int attr collapseIcon 0x7f010093
+int attr color 0x7f010099
+int attr colorAccent 0x7f01004f
+int attr colorButtonNormal 0x7f010053
+int attr colorControlActivated 0x7f010051
+int attr colorControlHighlight 0x7f010052
+int attr colorControlNormal 0x7f010050
+int attr colorPrimary 0x7f01004d
+int attr colorPrimaryDark 0x7f01004e
+int attr colorSwitchThumbNormal 0x7f010054
+int attr commitIcon 0x7f010080
+int attr contentInsetEnd 0x7f010068
+int attr contentInsetLeft 0x7f010069
+int attr contentInsetRight 0x7f01006a
+int attr contentInsetStart 0x7f010067
+int attr customNavigationLayout 0x7f010060
+int attr disableChildrenWhenDisabled 0x7f010078
+int attr displayOptions 0x7f010056
+int attr divider 0x7f01005c
+int attr dividerHorizontal 0x7f010033
+int attr dividerPadding 0x7f010089
+int attr dividerVertical 0x7f010032
+int attr drawableSize 0x7f01009b
+int attr drawerArrowStyle 0x7f0100a1
+int attr dropDownListViewStyle 0x7f010045
+int attr dropdownListPreferredItemHeight 0x7f010029
+int attr editTextBackground 0x7f01003a
+int attr editTextColor 0x7f010039
+int attr elevation 0x7f01006b
+int attr expandActivityOverflowButtonDrawable 0x7f010085
+int attr gapBetweenBars 0x7f01009c
+int attr goIcon 0x7f01007d
+int attr height 0x7f010001
+int attr hideOnContentScroll 0x7f010066
+int attr homeAsUpIndicator 0x7f01002c
+int attr homeLayout 0x7f010061
+int attr icon 0x7f01005a
+int attr iconifiedByDefault 0x7f01007a
+int attr indeterminateProgressStyle 0x7f010063
+int attr initialActivityCount 0x7f010084
+int attr isLightTheme 0x7f010002
+int attr itemPadding 0x7f010065
+int attr layout 0x7f010079
+int attr listChoiceBackgroundIndicator 0x7f01004c
+int attr listPopupWindowStyle 0x7f010046
+int attr listPreferredItemHeight 0x7f010040
+int attr listPreferredItemHeightLarge 0x7f010042
+int attr listPreferredItemHeightSmall 0x7f010041
+int attr listPreferredItemPaddingLeft 0x7f010043
+int attr listPreferredItemPaddingRight 0x7f010044
+int attr logo 0x7f01005b
+int attr maxButtonHeight 0x7f010091
+int attr measureWithLargestChild 0x7f010087
+int attr middleBarArrowSize 0x7f01009e
+int attr navigationContentDescription 0x7f010096
+int attr navigationIcon 0x7f010095
+int attr navigationMode 0x7f010055
+int attr overlapAnchor 0x7f010098
+int attr paddingEnd 0x7f01006f
+int attr paddingStart 0x7f01006e
+int attr panelBackground 0x7f010049
+int attr panelMenuListTheme 0x7f01004b
+int attr panelMenuListWidth 0x7f01004a
+int attr popupMenuStyle 0x7f010037
+int attr popupPromptView 0x7f010077
+int attr popupTheme 0x7f01006c
+int attr popupWindowStyle 0x7f010038
+int attr preserveIconSpacing 0x7f010070
+int attr progressBarPadding 0x7f010064
+int attr progressBarStyle 0x7f010062
+int attr prompt 0x7f010075
+int attr queryBackground 0x7f010082
+int attr queryHint 0x7f01007b
+int attr searchIcon 0x7f01007e
+int attr searchViewStyle 0x7f01003f
+int attr selectableItemBackground 0x7f010030
+int attr selectableItemBackgroundBorderless 0x7f010031
+int attr showAsAction 0x7f010071
+int attr showDividers 0x7f010088
+int attr showText 0x7f0100a8
+int attr spinBars 0x7f01009a
+int attr spinnerDropDownItemStyle 0x7f01002b
+int attr spinnerMode 0x7f010076
+int attr spinnerStyle 0x7f01002a
+int attr splitTrack 0x7f0100a7
+int attr state_above_anchor 0x7f010097
+int attr submitBackground 0x7f010083
+int attr subtitle 0x7f010057
+int attr subtitleTextAppearance 0x7f01008b
+int attr subtitleTextStyle 0x7f010059
+int attr suggestionRowLayout 0x7f010081
+int attr switchMinWidth 0x7f0100a5
+int attr switchPadding 0x7f0100a6
+int attr switchStyle 0x7f01003b
+int attr switchTextAppearance 0x7f0100a4
+int attr textAllCaps 0x7f010086
+int attr textAppearanceLargePopupMenu 0x7f010026
+int attr textAppearanceListItem 0x7f010047
+int attr textAppearanceListItemSmall 0x7f010048
+int attr textAppearanceSearchResultSubtitle 0x7f01003d
+int attr textAppearanceSearchResultTitle 0x7f01003c
+int attr textAppearanceSmallPopupMenu 0x7f010027
+int attr textColorSearchUrl 0x7f01003e
+int attr theme 0x7f010092
+int attr thickness 0x7f0100a0
+int attr thumbTextPadding 0x7f0100a3
+int attr title 0x7f010000
+int attr titleMarginBottom 0x7f010090
+int attr titleMarginEnd 0x7f01008e
+int attr titleMarginStart 0x7f01008d
+int attr titleMarginTop 0x7f01008f
+int attr titleMargins 0x7f01008c
+int attr titleTextAppearance 0x7f01008a
+int attr titleTextStyle 0x7f010058
+int attr toolbarNavigationButtonStyle 0x7f010036
+int attr toolbarStyle 0x7f010035
+int attr topBottomBarArrowSize 0x7f01009d
+int attr track 0x7f0100a2
+int attr voiceIcon 0x7f01007f
+int attr windowActionBar 0x7f010003
+int attr windowActionBarOverlay 0x7f010004
+int attr windowActionModeOverlay 0x7f010005
+int attr windowFixedHeightMajor 0x7f010009
+int attr windowFixedHeightMinor 0x7f010007
+int attr windowFixedWidthMajor 0x7f010006
+int attr windowFixedWidthMinor 0x7f010008
+int bool abc_action_bar_embed_tabs 0x7f060000
+int bool abc_action_bar_embed_tabs_pre_jb 0x7f060001
+int bool abc_action_bar_expanded_action_views_exclusive 0x7f060002
+int bool abc_config_actionMenuItemAllCaps 0x7f060005
+int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060004
+int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060003
+int color abc_background_cache_hint_selector_material_dark 0x7f070031
+int color abc_background_cache_hint_selector_material_light 0x7f070032
+int color abc_input_method_navigation_guard 0x7f070003
+int color abc_primary_text_disable_only_material_dark 0x7f070033
+int color abc_primary_text_disable_only_material_light 0x7f070034
+int color abc_primary_text_material_dark 0x7f070035
+int color abc_primary_text_material_light 0x7f070036
+int color abc_search_url_text 0x7f070037
+int color abc_search_url_text_normal 0x7f070000
+int color abc_search_url_text_pressed 0x7f070002
+int color abc_search_url_text_selected 0x7f070001
+int color abc_secondary_text_material_dark 0x7f070038
+int color abc_secondary_text_material_light 0x7f070039
+int color accent_material_dark 0x7f07000f
+int color accent_material_light 0x7f07000e
+int color background_floating_material_dark 0x7f070006
+int color background_floating_material_light 0x7f070007
+int color background_material_dark 0x7f070004
+int color background_material_light 0x7f070005
+int color bright_foreground_disabled_material_dark 0x7f070016
+int color bright_foreground_disabled_material_light 0x7f070017
+int color bright_foreground_inverse_material_dark 0x7f070018
+int color bright_foreground_inverse_material_light 0x7f070019
+int color bright_foreground_material_dark 0x7f070014
+int color bright_foreground_material_light 0x7f070015
+int color button_material_dark 0x7f070010
+int color button_material_light 0x7f070011
+int color dim_foreground_disabled_material_dark 0x7f07001c
+int color dim_foreground_disabled_material_light 0x7f07001d
+int color dim_foreground_material_dark 0x7f07001a
+int color dim_foreground_material_light 0x7f07001b
+int color highlighted_text_material_dark 0x7f070020
+int color highlighted_text_material_light 0x7f070021
+int color hint_foreground_material_dark 0x7f07001e
+int color hint_foreground_material_light 0x7f07001f
+int color link_text_material_dark 0x7f070022
+int color link_text_material_light 0x7f070023
+int color material_blue_grey_800 0x7f07002e
+int color material_blue_grey_900 0x7f07002f
+int color material_blue_grey_950 0x7f070030
+int color material_deep_teal_200 0x7f07002c
+int color material_deep_teal_500 0x7f07002d
+int color primary_dark_material_dark 0x7f07000a
+int color primary_dark_material_light 0x7f07000b
+int color primary_material_dark 0x7f070008
+int color primary_material_light 0x7f070009
+int color primary_text_default_material_dark 0x7f070026
+int color primary_text_default_material_light 0x7f070024
+int color primary_text_disabled_material_dark 0x7f07002a
+int color primary_text_disabled_material_light 0x7f070028
+int color ripple_material_dark 0x7f07000c
+int color ripple_material_light 0x7f07000d
+int color secondary_text_default_material_dark 0x7f070027
+int color secondary_text_default_material_light 0x7f070025
+int color secondary_text_disabled_material_dark 0x7f07002b
+int color secondary_text_disabled_material_light 0x7f070029
+int color switch_thumb_normal_material_dark 0x7f070012
+int color switch_thumb_normal_material_light 0x7f070013
+int dimen abc_action_bar_default_height_material 0x7f080019
+int dimen abc_action_bar_default_padding_material 0x7f08001a
+int dimen abc_action_bar_icon_vertical_padding_material 0x7f08001b
+int dimen abc_action_bar_progress_bar_size 0x7f080005
+int dimen abc_action_bar_stacked_max_height 0x7f080004
+int dimen abc_action_bar_stacked_tab_max_width 0x7f080003
+int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f08001d
+int dimen abc_action_bar_subtitle_top_margin_material 0x7f08001c
+int dimen abc_action_button_min_height_material 0x7f080020
+int dimen abc_action_button_min_width_material 0x7f08001f
+int dimen abc_action_button_min_width_overflow_material 0x7f08001e
+int dimen abc_button_inset_horizontal_material 0x7f080011
+int dimen abc_button_inset_vertical_material 0x7f080010
+int dimen abc_button_padding_horizontal_material 0x7f080013
+int dimen abc_button_padding_vertical_material 0x7f080012
+int dimen abc_config_prefDialogWidth 0x7f080002
+int dimen abc_control_corner_material 0x7f080016
+int dimen abc_control_inset_material 0x7f080014
+int dimen abc_control_padding_material 0x7f080015
+int dimen abc_dropdownitem_icon_width 0x7f08000b
+int dimen abc_dropdownitem_text_padding_left 0x7f080009
+int dimen abc_dropdownitem_text_padding_right 0x7f08000a
+int dimen abc_panel_menu_list_width 0x7f080006
+int dimen abc_search_view_preferred_width 0x7f080008
+int dimen abc_search_view_text_min_width 0x7f080007
+int dimen abc_text_size_body_1_material 0x7f08002a
+int dimen abc_text_size_body_2_material 0x7f080029
+int dimen abc_text_size_button_material 0x7f08002c
+int dimen abc_text_size_caption_material 0x7f08002b
+int dimen abc_text_size_display_1_material 0x7f080024
+int dimen abc_text_size_display_2_material 0x7f080023
+int dimen abc_text_size_display_3_material 0x7f080022
+int dimen abc_text_size_display_4_material 0x7f080021
+int dimen abc_text_size_headline_material 0x7f080025
+int dimen abc_text_size_large_material 0x7f08002d
+int dimen abc_text_size_medium_material 0x7f08002e
+int dimen abc_text_size_menu_material 0x7f080028
+int dimen abc_text_size_small_material 0x7f08002f
+int dimen abc_text_size_subhead_material 0x7f080027
+int dimen abc_text_size_subtitle_material_toolbar 0x7f080018
+int dimen abc_text_size_title_material 0x7f080026
+int dimen abc_text_size_title_material_toolbar 0x7f080017
+int dimen activity_horizontal_margin 0x7f080030
+int dimen activity_vertical_margin 0x7f080031
+int dimen dialog_fixed_height_major 0x7f08000e
+int dimen dialog_fixed_height_minor 0x7f08000f
+int dimen dialog_fixed_width_major 0x7f08000c
+int dimen dialog_fixed_width_minor 0x7f08000d
+int dimen disabled_alpha_material_dark 0x7f080001
+int dimen disabled_alpha_material_light 0x7f080000
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
+int drawable abc_btn_check_material 0x7f020001
+int drawable abc_btn_check_to_on_mtrl_000 0x7f020002
+int drawable abc_btn_check_to_on_mtrl_015 0x7f020003
+int drawable abc_btn_default_mtrl_shape 0x7f020004
+int drawable abc_btn_radio_material 0x7f020005
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f020006
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f020007
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f020008
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f020009
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000a
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000b
+int drawable abc_cab_background_internal_bg 0x7f02000c
+int drawable abc_cab_background_top_material 0x7f02000d
+int drawable abc_cab_background_top_mtrl_alpha 0x7f02000e
+int drawable abc_edit_text_material 0x7f02000f
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020010
+int drawable abc_ic_clear_mtrl_alpha 0x7f020011
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020012
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020013
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f020014
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f020015
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f020016
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f020017
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f020018
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f020019
+int drawable abc_ic_search_api_mtrl_alpha 0x7f02001a
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f02001b
+int drawable abc_item_background_holo_dark 0x7f02001c
+int drawable abc_item_background_holo_light 0x7f02001d
+int drawable abc_list_divider_mtrl_alpha 0x7f02001e
+int drawable abc_list_focused_holo 0x7f02001f
+int drawable abc_list_longpressed_holo 0x7f020020
+int drawable abc_list_pressed_holo_dark 0x7f020021
+int drawable abc_list_pressed_holo_light 0x7f020022
+int drawable abc_list_selector_background_transition_holo_dark 0x7f020023
+int drawable abc_list_selector_background_transition_holo_light 0x7f020024
+int drawable abc_list_selector_disabled_holo_dark 0x7f020025
+int drawable abc_list_selector_disabled_holo_light 0x7f020026
+int drawable abc_list_selector_holo_dark 0x7f020027
+int drawable abc_list_selector_holo_light 0x7f020028
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f020029
+int drawable abc_popup_background_mtrl_mult 0x7f02002a
+int drawable abc_ratingbar_full_material 0x7f02002b
+int drawable abc_spinner_mtrl_am_alpha 0x7f02002c
+int drawable abc_spinner_textfield_background_material 0x7f02002d
+int drawable abc_switch_thumb_material 0x7f02002e
+int drawable abc_switch_track_mtrl_alpha 0x7f02002f
+int drawable abc_tab_indicator_material 0x7f020030
+int drawable abc_tab_indicator_mtrl_alpha 0x7f020031
+int drawable abc_textfield_activated_mtrl_alpha 0x7f020032
+int drawable abc_textfield_default_mtrl_alpha 0x7f020033
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020034
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f020035
+int drawable abc_textfield_search_material 0x7f020036
+int drawable green_btn 0x7f020037
+int drawable ic_launcher 0x7f020038
+int drawable ic_menu_refresh 0x7f020039
+int drawable ic_menu_settings 0x7f02003a
+int drawable red_btn 0x7f02003b
+int drawable software 0x7f02003c
+int id action_bar 0x7f0a0031
+int id action_bar_activity_content 0x7f0a0003
+int id action_bar_container 0x7f0a0030
+int id action_bar_root 0x7f0a002c
+int id action_bar_spinner 0x7f0a0002
+int id action_bar_subtitle 0x7f0a001f
+int id action_bar_title 0x7f0a001e
+int id action_context_bar 0x7f0a0032
+int id action_menu_divider 0x7f0a0005
+int id action_menu_presenter 0x7f0a0006
+int id action_mode_bar 0x7f0a002e
+int id action_mode_bar_stub 0x7f0a002d
+int id action_mode_close_button 0x7f0a0020
+int id action_refresh 0x7f0a0049
+int id action_settings 0x7f0a0048
+int id activity_chooser_view_content 0x7f0a0021
+int id always 0x7f0a0014
+int id beginning 0x7f0a001b
+int id checkbox 0x7f0a0029
+int id collapseActionView 0x7f0a0015
+int id decor_content_parent 0x7f0a002f
+int id default_activity_button 0x7f0a0024
+int id dialog 0x7f0a0019
+int id disableHome 0x7f0a000d
+int id dropdown 0x7f0a001a
+int id edit_query 0x7f0a0033
+int id end 0x7f0a001c
+int id expand_activities_button 0x7f0a0022
+int id expanded_menu 0x7f0a0028
+int id home 0x7f0a0000
+int id homeAsUp 0x7f0a000e
+int id icon 0x7f0a0026
+int id ifRoom 0x7f0a0016
+int id image 0x7f0a0023
+int id last_refresh_label 0x7f0a0046
+int id last_refresh_value 0x7f0a0047
+int id last_status_change_label 0x7f0a0044
+int id last_status_change_value 0x7f0a0045
+int id listMode 0x7f0a000a
+int id list_item 0x7f0a0025
+int id middle 0x7f0a001d
+int id never 0x7f0a0017
+int id none 0x7f0a000f
+int id normal 0x7f0a000b
+int id progress_circular 0x7f0a0007
+int id progress_horizontal 0x7f0a0008
+int id radio 0x7f0a002b
+int id search_badge 0x7f0a0035
+int id search_bar 0x7f0a0034
+int id search_button 0x7f0a0036
+int id search_close_btn 0x7f0a003b
+int id search_edit_frame 0x7f0a0037
+int id search_go_btn 0x7f0a003d
+int id search_mag_icon 0x7f0a0038
+int id search_plate 0x7f0a0039
+int id search_src_text 0x7f0a003a
+int id search_voice_btn 0x7f0a003e
+int id server_label 0x7f0a0040
+int id server_value 0x7f0a0041
+int id shortcut 0x7f0a002a
+int id showCustom 0x7f0a0010
+int id showHome 0x7f0a0011
+int id showTitle 0x7f0a0012
+int id split_action_bar 0x7f0a0004
+int id status_btn 0x7f0a003f
+int id status_label 0x7f0a0042
+int id status_value 0x7f0a0043
+int id submit_area 0x7f0a003c
+int id tabMode 0x7f0a000c
+int id title 0x7f0a0027
+int id up 0x7f0a0001
+int id useLogo 0x7f0a0013
+int id withText 0x7f0a0018
+int id wrap_content 0x7f0a0009
+int integer abc_config_activityDefaultDur 0x7f090001
+int integer abc_config_activityShortDur 0x7f090000
+int integer abc_max_action_buttons 0x7f090002
+int layout abc_action_bar_title_item 0x7f030000
+int layout abc_action_bar_up_container 0x7f030001
+int layout abc_action_bar_view_list_nav_layout 0x7f030002
+int layout abc_action_menu_item_layout 0x7f030003
+int layout abc_action_menu_layout 0x7f030004
+int layout abc_action_mode_bar 0x7f030005
+int layout abc_action_mode_close_item_material 0x7f030006
+int layout abc_activity_chooser_view 0x7f030007
+int layout abc_activity_chooser_view_list_item 0x7f030008
+int layout abc_expanded_menu_layout 0x7f030009
+int layout abc_list_menu_item_checkbox 0x7f03000a
+int layout abc_list_menu_item_icon 0x7f03000b
+int layout abc_list_menu_item_layout 0x7f03000c
+int layout abc_list_menu_item_radio 0x7f03000d
+int layout abc_popup_menu_item_layout 0x7f03000e
+int layout abc_screen_content_include 0x7f03000f
+int layout abc_screen_simple 0x7f030010
+int layout abc_screen_simple_overlay_action_mode 0x7f030011
+int layout abc_screen_toolbar 0x7f030012
+int layout abc_search_dropdown_item_icons_2line 0x7f030013
+int layout abc_search_view 0x7f030014
+int layout abc_simple_dropdown_hint 0x7f030015
+int layout activity_main 0x7f030016
+int layout support_simple_spinner_dropdown_item 0x7f030017
+int menu main 0x7f0e0000
+int string abc_action_bar_home_description 0x7f0b0001
+int string abc_action_bar_home_description_format 0x7f0b0005
+int string abc_action_bar_home_subtitle_description_format 0x7f0b0006
+int string abc_action_bar_up_description 0x7f0b0002
+int string abc_action_menu_overflow_description 0x7f0b0003
+int string abc_action_mode_done 0x7f0b0000
+int string abc_activity_chooser_view_see_all 0x7f0b000d
+int string abc_activitychooserview_choose_application 0x7f0b000c
+int string abc_searchview_description_clear 0x7f0b0009
+int string abc_searchview_description_query 0x7f0b0008
+int string abc_searchview_description_search 0x7f0b0007
+int string abc_searchview_description_submit 0x7f0b000a
+int string abc_searchview_description_voice 0x7f0b000b
+int string abc_shareactionprovider_share_with 0x7f0b000f
+int string abc_shareactionprovider_share_with_application 0x7f0b000e
+int string abc_toolbar_collapse_description 0x7f0b0004
+int string app_name 0x7f0b0023
+int string app_update_new_version 0x7f0b002a
+int string app_update_notify_title 0x7f0b0029
+int string close 0x7f0b0025
+int string key_last_refresh 0x7f0b0015
+int string key_refresh_service 0x7f0b0010
+int string key_refresh_status_time 0x7f0b0011
+int string key_server_name 0x7f0b0012
+int string key_states 0x7f0b0013
+int string key_status 0x7f0b0014
+int string key_status_changed 0x7f0b0016
+int string key_update_service 0x7f0b0017
+int string mai 0x7f0b0026
+int string menu_action_refresh 0x7f0b0028
+int string menu_action_settings 0x7f0b0027
+int string open 0x7f0b0024
+int string prefs_app_category 0x7f0b001e
+int string prefs_refresh_category 0x7f0b0018
+int string prefs_refresh_service_summary 0x7f0b001a
+int string prefs_refresh_service_title 0x7f0b0019
+int string prefs_refresh_status_time_dialogTitle 0x7f0b001c
+int string prefs_refresh_status_time_summary 0x7f0b001d
+int string prefs_refresh_status_time_title 0x7f0b001b
+int string prefs_server_name_summary 0x7f0b0020
+int string prefs_server_name_title 0x7f0b001f
+int string prefs_update_summary 0x7f0b0022
+int string prefs_update_title 0x7f0b0021
+int style Animation_AppCompat_DropDownUp 0x7f0c00cf
+int style AppBaseTheme 0x7f0c00f8
+int style AppTheme 0x7f0c00f9
+int style Base_Animation_AppCompat_DropDownUp 0x7f0c00df
+int style Base_TextAppearance_AppCompat 0x7f0c00a3
+int style Base_TextAppearance_AppCompat_Body1 0x7f0c00ae
+int style Base_TextAppearance_AppCompat_Body2 0x7f0c00ad
+int style Base_TextAppearance_AppCompat_Button 0x7f0c00b1
+int style Base_TextAppearance_AppCompat_Caption 0x7f0c00af
+int style Base_TextAppearance_AppCompat_Display1 0x7f0c00a7
+int style Base_TextAppearance_AppCompat_Display2 0x7f0c00a6
+int style Base_TextAppearance_AppCompat_Display3 0x7f0c00a5
+int style Base_TextAppearance_AppCompat_Display4 0x7f0c00a4
+int style Base_TextAppearance_AppCompat_Headline 0x7f0c00a8
+int style Base_TextAppearance_AppCompat_Inverse 0x7f0c00b2
+int style Base_TextAppearance_AppCompat_Large 0x7f0c00b3
+int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0c00b4
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0c008c
+int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0c008d
+int style Base_TextAppearance_AppCompat_Medium 0x7f0c00b5
+int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0c00b6
+int style Base_TextAppearance_AppCompat_Menu 0x7f0c00b0
+int style Base_TextAppearance_AppCompat_SearchResult 0x7f0c008e
+int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0c0090
+int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0c008f
+int style Base_TextAppearance_AppCompat_Small 0x7f0c00b7
+int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0c00b8
+int style Base_TextAppearance_AppCompat_Subhead 0x7f0c00ab
+int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0c00ac
+int style Base_TextAppearance_AppCompat_Title 0x7f0c00a9
+int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0c00aa
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0c0076
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0c0078
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0c007a
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0c0077
+int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0c0079
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0c0075
+int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0c0074
+int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0c0082
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0c008a
+int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0c008b
+int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0c009d
+int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0c00a2
+int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0c0083
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0c0097
+int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0c0096
+int style Base_Theme_AppCompat 0x7f0c00db
+int style Base_Theme_AppCompat_CompactMenu 0x7f0c00de
+int style Base_Theme_AppCompat_Dialog 0x7f0c00e1
+int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0c00e3
+int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0c00e5
+int style Base_Theme_AppCompat_Light 0x7f0c00dc
+int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0c00dd
+int style Base_Theme_AppCompat_Light_Dialog 0x7f0c00e2
+int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0c00e4
+int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0c00e6
+int style Base_ThemeOverlay_AppCompat 0x7f0c00e7
+int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0c00ea
+int style Base_ThemeOverlay_AppCompat_Dark 0x7f0c00e9
+int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0c00eb
+int style Base_ThemeOverlay_AppCompat_Light 0x7f0c00e8
+int style Base_V11_Theme_AppCompat 0x7f0c00ec
+int style Base_V11_Theme_AppCompat_Dialog 0x7f0c00ee
+int style Base_V11_Theme_AppCompat_Light 0x7f0c00ed
+int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f0c00ef
+int style Base_V14_Theme_AppCompat 0x7f0c00f0
+int style Base_V14_Theme_AppCompat_Dialog 0x7f0c00f2
+int style Base_V14_Theme_AppCompat_Light 0x7f0c00f1
+int style Base_V14_Theme_AppCompat_Light_Dialog 0x7f0c00f3
+int style Base_V21_Theme_AppCompat 0x7f0c00f4
+int style Base_V21_Theme_AppCompat_Dialog 0x7f0c00f6
+int style Base_V21_Theme_AppCompat_Light 0x7f0c00f5
+int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0c00f7
+int style Base_V7_Theme_AppCompat 0x7f0c00d9
+int style Base_V7_Theme_AppCompat_Dialog 0x7f0c00e0
+int style Base_V7_Theme_AppCompat_Light 0x7f0c00da
+int style Base_Widget_AppCompat_ActionBar 0x7f0c0065
+int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0c0067
+int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0c006c
+int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0c0070
+int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0c006e
+int style Base_Widget_AppCompat_ActionButton 0x7f0c0069
+int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0c006a
+int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0c006b
+int style Base_Widget_AppCompat_ActionMode 0x7f0c0073
+int style Base_Widget_AppCompat_ActivityChooserView 0x7f0c0092
+int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0c0091
+int style Base_Widget_AppCompat_Button 0x7f0c009f
+int style Base_Widget_AppCompat_Button_Small 0x7f0c00a0
+int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0c009c
+int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0c009b
+int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0c009a
+int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0c0080
+int style Base_Widget_AppCompat_EditText 0x7f0c0099
+int style Base_Widget_AppCompat_Light_ActionBar 0x7f0c0066
+int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0c0068
+int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0c006d
+int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0c0071
+int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0c0072
+int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0c006f
+int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0c0089
+int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0c0087
+int style Base_Widget_AppCompat_ListPopupWindow 0x7f0c0085
+int style Base_Widget_AppCompat_ListView_DropDown 0x7f0c0081
+int style Base_Widget_AppCompat_ListView_Menu 0x7f0c0084
+int style Base_Widget_AppCompat_PopupMenu 0x7f0c0088
+int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0c0086
+int style Base_Widget_AppCompat_PopupWindow 0x7f0c0093
+int style Base_Widget_AppCompat_ProgressBar 0x7f0c007c
+int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0c007b
+int style Base_Widget_AppCompat_RatingBar 0x7f0c009e
+int style Base_Widget_AppCompat_SearchView 0x7f0c0098
+int style Base_Widget_AppCompat_Spinner 0x7f0c007d
+int style Base_Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0c007f
+int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0c007e
+int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0c00a1
+int style Base_Widget_AppCompat_Toolbar 0x7f0c0094
+int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0c0095
+int style Platform_AppCompat 0x7f0c00d5
+int style Platform_AppCompat_Dialog 0x7f0c00d7
+int style Platform_AppCompat_Light 0x7f0c00d6
+int style Platform_AppCompat_Light_Dialog 0x7f0c00d8
+int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0c00bf
+int style RtlOverlay_Widget_AppCompat_ActionButton_CloseMode 0x7f0c00c0
+int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f0c00c1
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0c00c2
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0c00c3
+int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0c00c4
+int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0c00ba
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0c00bc
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0c00bd
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0c00bb
+int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0c00be
+int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0c00b9
+int style TextAppearance_AppCompat 0x7f0c003b
+int style TextAppearance_AppCompat_Body1 0x7f0c0046
+int style TextAppearance_AppCompat_Body2 0x7f0c0045
+int style TextAppearance_AppCompat_Button 0x7f0c0050
+int style TextAppearance_AppCompat_Caption 0x7f0c0047
+int style TextAppearance_AppCompat_Display1 0x7f0c003f
+int style TextAppearance_AppCompat_Display2 0x7f0c003e
+int style TextAppearance_AppCompat_Display3 0x7f0c003d
+int style TextAppearance_AppCompat_Display4 0x7f0c003c
+int style TextAppearance_AppCompat_Headline 0x7f0c0040
+int style TextAppearance_AppCompat_Inverse 0x7f0c0049
+int style TextAppearance_AppCompat_Large 0x7f0c004a
+int style TextAppearance_AppCompat_Large_Inverse 0x7f0c004b
+int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0c0057
+int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0c0056
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0c002a
+int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0c002b
+int style TextAppearance_AppCompat_Medium 0x7f0c004c
+int style TextAppearance_AppCompat_Medium_Inverse 0x7f0c004d
+int style TextAppearance_AppCompat_Menu 0x7f0c0048
+int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0c002d
+int style TextAppearance_AppCompat_SearchResult_Title 0x7f0c002c
+int style TextAppearance_AppCompat_Small 0x7f0c004e
+int style TextAppearance_AppCompat_Small_Inverse 0x7f0c004f
+int style TextAppearance_AppCompat_Subhead 0x7f0c0043
+int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0c0044
+int style TextAppearance_AppCompat_Title 0x7f0c0041
+int style TextAppearance_AppCompat_Title_Inverse 0x7f0c0042
+int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0c0015
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0c0005
+int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0c0007
+int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0c0004
+int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0c0006
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0c0018
+int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0c005a
+int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0c0017
+int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0c0059
+int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0c0019
+int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0c0028
+int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0c0029
+int style TextAppearance_AppCompat_Widget_Switch 0x7f0c0051
+int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0c0052
+int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0c0020
+int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0c003a
+int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0c0039
+int style Theme_AppCompat 0x7f0c00c5
+int style Theme_AppCompat_CompactMenu 0x7f0c00ce
+int style Theme_AppCompat_Dialog 0x7f0c00cc
+int style Theme_AppCompat_DialogWhenLarge 0x7f0c00ca
+int style Theme_AppCompat_Light 0x7f0c00c6
+int style Theme_AppCompat_Light_DarkActionBar 0x7f0c00c7
+int style Theme_AppCompat_Light_Dialog 0x7f0c00cd
+int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0c00cb
+int style Theme_AppCompat_Light_NoActionBar 0x7f0c00c9
+int style Theme_AppCompat_NoActionBar 0x7f0c00c8
+int style ThemeOverlay_AppCompat 0x7f0c00d0
+int style ThemeOverlay_AppCompat_ActionBar 0x7f0c00d3
+int style ThemeOverlay_AppCompat_Dark 0x7f0c00d2
+int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0c00d4
+int style ThemeOverlay_AppCompat_Light 0x7f0c00d1
+int style Widget_AppCompat_ActionBar 0x7f0c0000
+int style Widget_AppCompat_ActionBar_Solid 0x7f0c0002
+int style Widget_AppCompat_ActionBar_TabBar 0x7f0c000d
+int style Widget_AppCompat_ActionBar_TabText 0x7f0c0011
+int style Widget_AppCompat_ActionBar_TabView 0x7f0c000f
+int style Widget_AppCompat_ActionButton 0x7f0c000a
+int style Widget_AppCompat_ActionButton_CloseMode 0x7f0c000b
+int style Widget_AppCompat_ActionButton_Overflow 0x7f0c000c
+int style Widget_AppCompat_ActionMode 0x7f0c0016
+int style Widget_AppCompat_ActivityChooserView 0x7f0c002f
+int style Widget_AppCompat_AutoCompleteTextView 0x7f0c002e
+int style Widget_AppCompat_Button 0x7f0c0034
+int style Widget_AppCompat_Button_Small 0x7f0c0035
+int style Widget_AppCompat_CompoundButton_Switch 0x7f0c0032
+int style Widget_AppCompat_DrawerArrowToggle 0x7f0c0012
+int style Widget_AppCompat_DropDownItem_Spinner 0x7f0c001e
+int style Widget_AppCompat_EditText 0x7f0c0031
+int style Widget_AppCompat_Light_ActionBar 0x7f0c0001
+int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0c0003
+int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0c0053
+int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0c000e
+int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0c0054
+int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0c0013
+int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0c0014
+int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0c0010
+int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0c0055
+int style Widget_AppCompat_Light_ActionButton 0x7f0c005d
+int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0c005f
+int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0c005e
+int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0c0058
+int style Widget_AppCompat_Light_ActivityChooserView 0x7f0c0064
+int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0c0063
+int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0c005b
+int style Widget_AppCompat_Light_ListPopupWindow 0x7f0c0062
+int style Widget_AppCompat_Light_ListView_DropDown 0x7f0c0061
+int style Widget_AppCompat_Light_PopupMenu 0x7f0c0025
+int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0c0023
+int style Widget_AppCompat_Light_SearchView 0x7f0c005c
+int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0c0060
+int style Widget_AppCompat_ListPopupWindow 0x7f0c0021
+int style Widget_AppCompat_ListView_DropDown 0x7f0c001f
+int style Widget_AppCompat_ListView_Menu 0x7f0c0026
+int style Widget_AppCompat_PopupMenu 0x7f0c0024
+int style Widget_AppCompat_PopupMenu_Overflow 0x7f0c0022
+int style Widget_AppCompat_PopupWindow 0x7f0c0027
+int style Widget_AppCompat_ProgressBar 0x7f0c0009
+int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0c0008
+int style Widget_AppCompat_RatingBar 0x7f0c0033
+int style Widget_AppCompat_SearchView 0x7f0c0030
+int style Widget_AppCompat_Spinner 0x7f0c001a
+int style Widget_AppCompat_Spinner_DropDown 0x7f0c001c
+int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0c001d
+int style Widget_AppCompat_Spinner_Underlined 0x7f0c001b
+int style Widget_AppCompat_TextView_SpinnerItem 0x7f0c0036
+int style Widget_AppCompat_Toolbar 0x7f0c0037
+int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0c0038
+int[] styleable ActionBar { 0x7f010000, 0x7f010001, 0x7f01002c, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c }
+int styleable ActionBar_background 11
+int styleable ActionBar_backgroundSplit 13
+int styleable ActionBar_backgroundStacked 12
+int styleable ActionBar_contentInsetEnd 22
+int styleable ActionBar_contentInsetLeft 23
+int styleable ActionBar_contentInsetRight 24
+int styleable ActionBar_contentInsetStart 21
+int styleable ActionBar_customNavigationLayout 14
+int styleable ActionBar_displayOptions 4
+int styleable ActionBar_divider 10
+int styleable ActionBar_elevation 25
+int styleable ActionBar_height 1
+int styleable ActionBar_hideOnContentScroll 20
+int styleable ActionBar_homeAsUpIndicator 2
+int styleable ActionBar_homeLayout 15
+int styleable ActionBar_icon 8
+int styleable ActionBar_indeterminateProgressStyle 17
+int styleable ActionBar_itemPadding 19
+int styleable ActionBar_logo 9
+int styleable ActionBar_navigationMode 3
+int styleable ActionBar_popupTheme 26
+int styleable ActionBar_progressBarPadding 18
+int styleable ActionBar_progressBarStyle 16
+int styleable ActionBar_subtitle 5
+int styleable ActionBar_subtitleTextStyle 7
+int styleable ActionBar_title 0
+int styleable ActionBar_titleTextStyle 6
+int[] styleable ActionBarLayout { 0x010100b3 }
+int styleable ActionBarLayout_android_layout_gravity 0
+int[] styleable ActionMenuItemView { 0x0101013f }
+int styleable ActionMenuItemView_android_minWidth 0
+int[] styleable ActionMenuView { }
+int[] styleable ActionMode { 0x7f010001, 0x7f010058, 0x7f010059, 0x7f01005d, 0x7f01005f, 0x7f01006d }
+int styleable ActionMode_background 3
+int styleable ActionMode_backgroundSplit 4
+int styleable ActionMode_closeItemLayout 5
+int styleable ActionMode_height 0
+int styleable ActionMode_subtitleTextStyle 2
+int styleable ActionMode_titleTextStyle 1
+int[] styleable ActivityChooserView { 0x7f010084, 0x7f010085 }
+int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
+int styleable ActivityChooserView_initialActivityCount 0
+int[] styleable CompatTextView { 0x7f010086 }
+int styleable CompatTextView_textAllCaps 0
+int[] styleable DrawerArrowToggle { 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0 }
+int styleable DrawerArrowToggle_barSize 6
+int styleable DrawerArrowToggle_color 0
+int styleable DrawerArrowToggle_drawableSize 2
+int styleable DrawerArrowToggle_gapBetweenBars 3
+int styleable DrawerArrowToggle_middleBarArrowSize 5
+int styleable DrawerArrowToggle_spinBars 1
+int styleable DrawerArrowToggle_thickness 7
+int styleable DrawerArrowToggle_topBottomBarArrowSize 4
+int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01005c, 0x7f010087, 0x7f010088, 0x7f010089 }
+int styleable LinearLayoutCompat_android_baselineAligned 2
+int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
+int styleable LinearLayoutCompat_android_gravity 0
+int styleable LinearLayoutCompat_android_orientation 1
+int styleable LinearLayoutCompat_android_weightSum 4
+int styleable LinearLayoutCompat_divider 5
+int styleable LinearLayoutCompat_dividerPadding 8
+int styleable LinearLayoutCompat_measureWithLargestChild 6
+int styleable LinearLayoutCompat_showDividers 7
+int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
+int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
+int styleable LinearLayoutCompat_Layout_android_layout_height 2
+int styleable LinearLayoutCompat_Layout_android_layout_weight 3
+int styleable LinearLayoutCompat_Layout_android_layout_width 1
+int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
+int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
+int styleable ListPopupWindow_android_dropDownVerticalOffset 1
+int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
+int styleable MenuGroup_android_checkableBehavior 5
+int styleable MenuGroup_android_enabled 0
+int styleable MenuGroup_android_id 1
+int styleable MenuGroup_android_menuCategory 3
+int styleable MenuGroup_android_orderInCategory 4
+int styleable MenuGroup_android_visible 2
+int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074 }
+int styleable MenuItem_actionLayout 14
+int styleable MenuItem_actionProviderClass 16
+int styleable MenuItem_actionViewClass 15
+int styleable MenuItem_android_alphabeticShortcut 9
+int styleable MenuItem_android_checkable 11
+int styleable MenuItem_android_checked 3
+int styleable MenuItem_android_enabled 1
+int styleable MenuItem_android_icon 0
+int styleable MenuItem_android_id 2
+int styleable MenuItem_android_menuCategory 5
+int styleable MenuItem_android_numericShortcut 10
+int styleable MenuItem_android_onClick 12
+int styleable MenuItem_android_orderInCategory 6
+int styleable MenuItem_android_title 7
+int styleable MenuItem_android_titleCondensed 8
+int styleable MenuItem_android_visible 4
+int styleable MenuItem_showAsAction 13
+int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010070 }
+int styleable MenuView_android_headerBackground 4
+int styleable MenuView_android_horizontalDivider 2
+int styleable MenuView_android_itemBackground 5
+int styleable MenuView_android_itemIconDisabledAlpha 6
+int styleable MenuView_android_itemTextAppearance 1
+int styleable MenuView_android_verticalDivider 3
+int styleable MenuView_android_windowAnimationStyle 0
+int styleable MenuView_preserveIconSpacing 7
+int[] styleable PopupWindow { 0x01010176, 0x7f010098 }
+int styleable PopupWindow_android_popupBackground 0
+int styleable PopupWindow_overlapAnchor 1
+int[] styleable PopupWindowBackgroundState { 0x7f010097 }
+int styleable PopupWindowBackgroundState_state_above_anchor 0
+int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083 }
+int styleable SearchView_android_focusable 0
+int styleable SearchView_android_imeOptions 3
+int styleable SearchView_android_inputType 2
+int styleable SearchView_android_maxWidth 1
+int styleable SearchView_closeIcon 7
+int styleable SearchView_commitIcon 11
+int styleable SearchView_goIcon 8
+int styleable SearchView_iconifiedByDefault 5
+int styleable SearchView_layout 4
+int styleable SearchView_queryBackground 13
+int styleable SearchView_queryHint 6
+int styleable SearchView_searchIcon 9
+int styleable SearchView_submitBackground 14
+int styleable SearchView_suggestionRowLayout 12
+int styleable SearchView_voiceIcon 10
+int[] styleable Spinner { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078 }
+int styleable Spinner_android_background 1
+int styleable Spinner_android_dropDownHorizontalOffset 5
+int styleable Spinner_android_dropDownSelector 2
+int styleable Spinner_android_dropDownVerticalOffset 6
+int styleable Spinner_android_dropDownWidth 4
+int styleable Spinner_android_gravity 0
+int styleable Spinner_android_popupBackground 3
+int styleable Spinner_disableChildrenWhenDisabled 10
+int styleable Spinner_popupPromptView 9
+int styleable Spinner_prompt 7
+int styleable Spinner_spinnerMode 8
+int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8 }
+int styleable SwitchCompat_android_textOff 1
+int styleable SwitchCompat_android_textOn 0
+int styleable SwitchCompat_android_thumb 2
+int styleable SwitchCompat_showText 9
+int styleable SwitchCompat_splitTrack 8
+int styleable SwitchCompat_switchMinWidth 6
+int styleable SwitchCompat_switchPadding 7
+int styleable SwitchCompat_switchTextAppearance 5
+int styleable SwitchCompat_thumbTextPadding 4
+int styleable SwitchCompat_track 3
+int[] styleable SwitchCompatTextAppearance { 0x01010095, 0x01010098, 0x7f010086 }
+int styleable SwitchCompatTextAppearance_android_textColor 1
+int styleable SwitchCompatTextAppearance_android_textSize 0
+int styleable SwitchCompatTextAppearance_textAllCaps 2
+int[] styleable Theme { 0x01010057, 0x010100ae, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054 }
+int styleable Theme_actionBarDivider 20
+int styleable Theme_actionBarItemBackground 21
+int styleable Theme_actionBarPopupTheme 14
+int styleable Theme_actionBarSize 19
+int styleable Theme_actionBarSplitStyle 16
+int styleable Theme_actionBarStyle 15
+int styleable Theme_actionBarTabBarStyle 10
+int styleable Theme_actionBarTabStyle 9
+int styleable Theme_actionBarTabTextStyle 11
+int styleable Theme_actionBarTheme 17
+int styleable Theme_actionBarWidgetTheme 18
+int styleable Theme_actionButtonStyle 44
+int styleable Theme_actionDropDownStyle 39
+int styleable Theme_actionMenuTextAppearance 22
+int styleable Theme_actionMenuTextColor 23
+int styleable Theme_actionModeBackground 26
+int styleable Theme_actionModeCloseButtonStyle 25
+int styleable Theme_actionModeCloseDrawable 28
+int styleable Theme_actionModeCopyDrawable 30
+int styleable Theme_actionModeCutDrawable 29
+int styleable Theme_actionModeFindDrawable 34
+int styleable Theme_actionModePasteDrawable 31
+int styleable Theme_actionModePopupWindowStyle 36
+int styleable Theme_actionModeSelectAllDrawable 32
+int styleable Theme_actionModeShareDrawable 33
+int styleable Theme_actionModeSplitBackground 27
+int styleable Theme_actionModeStyle 24
+int styleable Theme_actionModeWebSearchDrawable 35
+int styleable Theme_actionOverflowButtonStyle 12
+int styleable Theme_actionOverflowMenuStyle 13
+int styleable Theme_activityChooserViewStyle 51
+int styleable Theme_android_windowAnimationStyle 1
+int styleable Theme_android_windowIsFloating 0
+int styleable Theme_buttonBarButtonStyle 46
+int styleable Theme_buttonBarStyle 45
+int styleable Theme_colorAccent 78
+int styleable Theme_colorButtonNormal 82
+int styleable Theme_colorControlActivated 80
+int styleable Theme_colorControlHighlight 81
+int styleable Theme_colorControlNormal 79
+int styleable Theme_colorPrimary 76
+int styleable Theme_colorPrimaryDark 77
+int styleable Theme_colorSwitchThumbNormal 83
+int styleable Theme_dividerHorizontal 50
+int styleable Theme_dividerVertical 49
+int styleable Theme_dropDownListViewStyle 68
+int styleable Theme_dropdownListPreferredItemHeight 40
+int styleable Theme_editTextBackground 57
+int styleable Theme_editTextColor 56
+int styleable Theme_homeAsUpIndicator 43
+int styleable Theme_listChoiceBackgroundIndicator 75
+int styleable Theme_listPopupWindowStyle 69
+int styleable Theme_listPreferredItemHeight 63
+int styleable Theme_listPreferredItemHeightLarge 65
+int styleable Theme_listPreferredItemHeightSmall 64
+int styleable Theme_listPreferredItemPaddingLeft 66
+int styleable Theme_listPreferredItemPaddingRight 67
+int styleable Theme_panelBackground 72
+int styleable Theme_panelMenuListTheme 74
+int styleable Theme_panelMenuListWidth 73
+int styleable Theme_popupMenuStyle 54
+int styleable Theme_popupWindowStyle 55
+int styleable Theme_searchViewStyle 62
+int styleable Theme_selectableItemBackground 47
+int styleable Theme_selectableItemBackgroundBorderless 48
+int styleable Theme_spinnerDropDownItemStyle 42
+int styleable Theme_spinnerStyle 41
+int styleable Theme_switchStyle 58
+int styleable Theme_textAppearanceLargePopupMenu 37
+int styleable Theme_textAppearanceListItem 70
+int styleable Theme_textAppearanceListItemSmall 71
+int styleable Theme_textAppearanceSearchResultSubtitle 60
+int styleable Theme_textAppearanceSearchResultTitle 59
+int styleable Theme_textAppearanceSmallPopupMenu 38
+int styleable Theme_textColorSearchUrl 61
+int styleable Theme_toolbarNavigationButtonStyle 53
+int styleable Theme_toolbarStyle 52
+int styleable Theme_windowActionBar 2
+int styleable Theme_windowActionBarOverlay 3
+int styleable Theme_windowActionModeOverlay 4
+int styleable Theme_windowFixedHeightMajor 8
+int styleable Theme_windowFixedHeightMinor 6
+int styleable Theme_windowFixedWidthMajor 5
+int styleable Theme_windowFixedWidthMinor 7
+int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010000, 0x7f010057, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006c, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 }
+int styleable Toolbar_android_gravity 0
+int styleable Toolbar_android_minHeight 1
+int styleable Toolbar_collapseContentDescription 19
+int styleable Toolbar_collapseIcon 18
+int styleable Toolbar_contentInsetEnd 5
+int styleable Toolbar_contentInsetLeft 6
+int styleable Toolbar_contentInsetRight 7
+int styleable Toolbar_contentInsetStart 4
+int styleable Toolbar_maxButtonHeight 16
+int styleable Toolbar_navigationContentDescription 21
+int styleable Toolbar_navigationIcon 20
+int styleable Toolbar_popupTheme 8
+int styleable Toolbar_subtitle 3
+int styleable Toolbar_subtitleTextAppearance 10
+int styleable Toolbar_theme 17
+int styleable Toolbar_title 2
+int styleable Toolbar_titleMarginBottom 15
+int styleable Toolbar_titleMarginEnd 13
+int styleable Toolbar_titleMarginStart 12
+int styleable Toolbar_titleMarginTop 14
+int styleable Toolbar_titleMargins 11
+int styleable Toolbar_titleTextAppearance 9
+int[] styleable View { 0x010100da, 0x7f01006e, 0x7f01006f }
+int styleable View_android_focusable 0
+int styleable View_paddingEnd 2
+int styleable View_paddingStart 1
+int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
+int styleable ViewStubCompat_android_id 0
+int styleable ViewStubCompat_android_inflatedId 2
+int styleable ViewStubCompat_android_layout 1
+int xml prefs 0x7f050000

BIN
bin/StatusReader.apk


BIN
bin/classes.dex


+ 5 - 0
bin/jarlist.cache

@@ -0,0 +1,5 @@
+# cache for current jar dependency. DO NOT EDIT.
+# format is <lastModified> <length> <SHA-1> <path>
+# Encoding is UTF-8
+1427838941000 1074044 33b27a8d2a5b87e6eb6c60e87a5374ffbfeacc3a /weight/Code/appcompat_v7/libs/android-support-v4.jar
+1427839433000 1074044 33b27a8d2a5b87e6eb6c60e87a5374ffbfeacc3a /weight/Code/StatusReader/libs/android-support-v4.jar

BIN
bin/res/crunch/drawable-hdpi/green_btn.png


BIN
bin/res/crunch/drawable-hdpi/ic_launcher.png


BIN
bin/res/crunch/drawable-hdpi/ic_menu_refresh.png


BIN
bin/res/crunch/drawable-hdpi/ic_menu_settings.png


BIN
bin/res/crunch/drawable-hdpi/red_btn.png


BIN
bin/res/crunch/drawable-hdpi/software.png


BIN
bin/res/crunch/drawable-mdpi/ic_launcher.png


BIN
bin/res/crunch/drawable-xhdpi/ic_launcher.png


BIN
bin/res/crunch/drawable-xxhdpi/ic_launcher.png


BIN
bin/resources.ap_


+ 1001 - 0
gen/android/support/v7/appcompat/R.java

@@ -0,0 +1,1001 @@
+/* AUTO-GENERATED FILE.  DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found.  It
+ * should not be modified by hand.
+ */
+package android.support.v7.appcompat;
+
+public final class R {
+	public static final class anim {
+		public static final int abc_fade_in = 0x7f040000;
+		public static final int abc_fade_out = 0x7f040001;
+		public static final int abc_grow_fade_in_from_bottom = 0x7f040002;
+		public static final int abc_shrink_fade_out_from_bottom = 0x7f040003;
+		public static final int abc_slide_in_bottom = 0x7f040004;
+		public static final int abc_slide_in_top = 0x7f040005;
+		public static final int abc_slide_out_bottom = 0x7f040006;
+		public static final int abc_slide_out_top = 0x7f040007;
+	}
+	public static final class attr {
+		public static final int actionBarDivider = 0x7f010015;
+		public static final int actionBarItemBackground = 0x7f010016;
+		public static final int actionBarPopupTheme = 0x7f01000f;
+		public static final int actionBarSize = 0x7f010014;
+		public static final int actionBarSplitStyle = 0x7f010011;
+		public static final int actionBarStyle = 0x7f010010;
+		public static final int actionBarTabBarStyle = 0x7f01000b;
+		public static final int actionBarTabStyle = 0x7f01000a;
+		public static final int actionBarTabTextStyle = 0x7f01000c;
+		public static final int actionBarTheme = 0x7f010012;
+		public static final int actionBarWidgetTheme = 0x7f010013;
+		public static final int actionButtonStyle = 0x7f01002d;
+		public static final int actionDropDownStyle = 0x7f010028;
+		public static final int actionLayout = 0x7f010072;
+		public static final int actionMenuTextAppearance = 0x7f010017;
+		public static final int actionMenuTextColor = 0x7f010018;
+		public static final int actionModeBackground = 0x7f01001b;
+		public static final int actionModeCloseButtonStyle = 0x7f01001a;
+		public static final int actionModeCloseDrawable = 0x7f01001d;
+		public static final int actionModeCopyDrawable = 0x7f01001f;
+		public static final int actionModeCutDrawable = 0x7f01001e;
+		public static final int actionModeFindDrawable = 0x7f010023;
+		public static final int actionModePasteDrawable = 0x7f010020;
+		public static final int actionModePopupWindowStyle = 0x7f010025;
+		public static final int actionModeSelectAllDrawable = 0x7f010021;
+		public static final int actionModeShareDrawable = 0x7f010022;
+		public static final int actionModeSplitBackground = 0x7f01001c;
+		public static final int actionModeStyle = 0x7f010019;
+		public static final int actionModeWebSearchDrawable = 0x7f010024;
+		public static final int actionOverflowButtonStyle = 0x7f01000d;
+		public static final int actionOverflowMenuStyle = 0x7f01000e;
+		public static final int actionProviderClass = 0x7f010074;
+		public static final int actionViewClass = 0x7f010073;
+		public static final int activityChooserViewStyle = 0x7f010034;
+		public static final int background = 0x7f01005d;
+		public static final int backgroundSplit = 0x7f01005f;
+		public static final int backgroundStacked = 0x7f01005e;
+		public static final int barSize = 0x7f01009f;
+		public static final int buttonBarButtonStyle = 0x7f01002f;
+		public static final int buttonBarStyle = 0x7f01002e;
+		public static final int closeIcon = 0x7f01007c;
+		public static final int closeItemLayout = 0x7f01006d;
+		public static final int collapseContentDescription = 0x7f010094;
+		public static final int collapseIcon = 0x7f010093;
+		public static final int color = 0x7f010099;
+		public static final int colorAccent = 0x7f01004f;
+		public static final int colorButtonNormal = 0x7f010053;
+		public static final int colorControlActivated = 0x7f010051;
+		public static final int colorControlHighlight = 0x7f010052;
+		public static final int colorControlNormal = 0x7f010050;
+		public static final int colorPrimary = 0x7f01004d;
+		public static final int colorPrimaryDark = 0x7f01004e;
+		public static final int colorSwitchThumbNormal = 0x7f010054;
+		public static final int commitIcon = 0x7f010080;
+		public static final int contentInsetEnd = 0x7f010068;
+		public static final int contentInsetLeft = 0x7f010069;
+		public static final int contentInsetRight = 0x7f01006a;
+		public static final int contentInsetStart = 0x7f010067;
+		public static final int customNavigationLayout = 0x7f010060;
+		public static final int disableChildrenWhenDisabled = 0x7f010078;
+		public static final int displayOptions = 0x7f010056;
+		public static final int divider = 0x7f01005c;
+		public static final int dividerHorizontal = 0x7f010033;
+		public static final int dividerPadding = 0x7f010089;
+		public static final int dividerVertical = 0x7f010032;
+		public static final int drawableSize = 0x7f01009b;
+		public static final int drawerArrowStyle = 0x7f0100a1;
+		public static final int dropDownListViewStyle = 0x7f010045;
+		public static final int dropdownListPreferredItemHeight = 0x7f010029;
+		public static final int editTextBackground = 0x7f01003a;
+		public static final int editTextColor = 0x7f010039;
+		public static final int elevation = 0x7f01006b;
+		public static final int expandActivityOverflowButtonDrawable = 0x7f010085;
+		public static final int gapBetweenBars = 0x7f01009c;
+		public static final int goIcon = 0x7f01007d;
+		public static final int height = 0x7f010001;
+		public static final int hideOnContentScroll = 0x7f010066;
+		public static final int homeAsUpIndicator = 0x7f01002c;
+		public static final int homeLayout = 0x7f010061;
+		public static final int icon = 0x7f01005a;
+		public static final int iconifiedByDefault = 0x7f01007a;
+		public static final int indeterminateProgressStyle = 0x7f010063;
+		public static final int initialActivityCount = 0x7f010084;
+		public static final int isLightTheme = 0x7f010002;
+		public static final int itemPadding = 0x7f010065;
+		public static final int layout = 0x7f010079;
+		public static final int listChoiceBackgroundIndicator = 0x7f01004c;
+		public static final int listPopupWindowStyle = 0x7f010046;
+		public static final int listPreferredItemHeight = 0x7f010040;
+		public static final int listPreferredItemHeightLarge = 0x7f010042;
+		public static final int listPreferredItemHeightSmall = 0x7f010041;
+		public static final int listPreferredItemPaddingLeft = 0x7f010043;
+		public static final int listPreferredItemPaddingRight = 0x7f010044;
+		public static final int logo = 0x7f01005b;
+		public static final int maxButtonHeight = 0x7f010091;
+		public static final int measureWithLargestChild = 0x7f010087;
+		public static final int middleBarArrowSize = 0x7f01009e;
+		public static final int navigationContentDescription = 0x7f010096;
+		public static final int navigationIcon = 0x7f010095;
+		public static final int navigationMode = 0x7f010055;
+		public static final int overlapAnchor = 0x7f010098;
+		public static final int paddingEnd = 0x7f01006f;
+		public static final int paddingStart = 0x7f01006e;
+		public static final int panelBackground = 0x7f010049;
+		public static final int panelMenuListTheme = 0x7f01004b;
+		public static final int panelMenuListWidth = 0x7f01004a;
+		public static final int popupMenuStyle = 0x7f010037;
+		public static final int popupPromptView = 0x7f010077;
+		public static final int popupTheme = 0x7f01006c;
+		public static final int popupWindowStyle = 0x7f010038;
+		public static final int preserveIconSpacing = 0x7f010070;
+		public static final int progressBarPadding = 0x7f010064;
+		public static final int progressBarStyle = 0x7f010062;
+		public static final int prompt = 0x7f010075;
+		public static final int queryBackground = 0x7f010082;
+		public static final int queryHint = 0x7f01007b;
+		public static final int searchIcon = 0x7f01007e;
+		public static final int searchViewStyle = 0x7f01003f;
+		public static final int selectableItemBackground = 0x7f010030;
+		public static final int selectableItemBackgroundBorderless = 0x7f010031;
+		public static final int showAsAction = 0x7f010071;
+		public static final int showDividers = 0x7f010088;
+		public static final int showText = 0x7f0100a8;
+		public static final int spinBars = 0x7f01009a;
+		public static final int spinnerDropDownItemStyle = 0x7f01002b;
+		public static final int spinnerMode = 0x7f010076;
+		public static final int spinnerStyle = 0x7f01002a;
+		public static final int splitTrack = 0x7f0100a7;
+		public static final int state_above_anchor = 0x7f010097;
+		public static final int submitBackground = 0x7f010083;
+		public static final int subtitle = 0x7f010057;
+		public static final int subtitleTextAppearance = 0x7f01008b;
+		public static final int subtitleTextStyle = 0x7f010059;
+		public static final int suggestionRowLayout = 0x7f010081;
+		public static final int switchMinWidth = 0x7f0100a5;
+		public static final int switchPadding = 0x7f0100a6;
+		public static final int switchStyle = 0x7f01003b;
+		public static final int switchTextAppearance = 0x7f0100a4;
+		public static final int textAllCaps = 0x7f010086;
+		public static final int textAppearanceLargePopupMenu = 0x7f010026;
+		public static final int textAppearanceListItem = 0x7f010047;
+		public static final int textAppearanceListItemSmall = 0x7f010048;
+		public static final int textAppearanceSearchResultSubtitle = 0x7f01003d;
+		public static final int textAppearanceSearchResultTitle = 0x7f01003c;
+		public static final int textAppearanceSmallPopupMenu = 0x7f010027;
+		public static final int textColorSearchUrl = 0x7f01003e;
+		public static final int theme = 0x7f010092;
+		public static final int thickness = 0x7f0100a0;
+		public static final int thumbTextPadding = 0x7f0100a3;
+		public static final int title = 0x7f010000;
+		public static final int titleMarginBottom = 0x7f010090;
+		public static final int titleMarginEnd = 0x7f01008e;
+		public static final int titleMarginStart = 0x7f01008d;
+		public static final int titleMarginTop = 0x7f01008f;
+		public static final int titleMargins = 0x7f01008c;
+		public static final int titleTextAppearance = 0x7f01008a;
+		public static final int titleTextStyle = 0x7f010058;
+		public static final int toolbarNavigationButtonStyle = 0x7f010036;
+		public static final int toolbarStyle = 0x7f010035;
+		public static final int topBottomBarArrowSize = 0x7f01009d;
+		public static final int track = 0x7f0100a2;
+		public static final int voiceIcon = 0x7f01007f;
+		public static final int windowActionBar = 0x7f010003;
+		public static final int windowActionBarOverlay = 0x7f010004;
+		public static final int windowActionModeOverlay = 0x7f010005;
+		public static final int windowFixedHeightMajor = 0x7f010009;
+		public static final int windowFixedHeightMinor = 0x7f010007;
+		public static final int windowFixedWidthMajor = 0x7f010006;
+		public static final int windowFixedWidthMinor = 0x7f010008;
+	}
+	public static final class bool {
+		public static final int abc_action_bar_embed_tabs = 0x7f060000;
+		public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f060001;
+		public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f060002;
+		public static final int abc_config_actionMenuItemAllCaps = 0x7f060005;
+		public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f060004;
+		public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f060003;
+	}
+	public static final class color {
+		public static final int abc_background_cache_hint_selector_material_dark = 0x7f070031;
+		public static final int abc_background_cache_hint_selector_material_light = 0x7f070032;
+		public static final int abc_input_method_navigation_guard = 0x7f070003;
+		public static final int abc_primary_text_disable_only_material_dark = 0x7f070033;
+		public static final int abc_primary_text_disable_only_material_light = 0x7f070034;
+		public static final int abc_primary_text_material_dark = 0x7f070035;
+		public static final int abc_primary_text_material_light = 0x7f070036;
+		public static final int abc_search_url_text = 0x7f070037;
+		public static final int abc_search_url_text_normal = 0x7f070000;
+		public static final int abc_search_url_text_pressed = 0x7f070002;
+		public static final int abc_search_url_text_selected = 0x7f070001;
+		public static final int abc_secondary_text_material_dark = 0x7f070038;
+		public static final int abc_secondary_text_material_light = 0x7f070039;
+		public static final int accent_material_dark = 0x7f07000f;
+		public static final int accent_material_light = 0x7f07000e;
+		public static final int background_floating_material_dark = 0x7f070006;
+		public static final int background_floating_material_light = 0x7f070007;
+		public static final int background_material_dark = 0x7f070004;
+		public static final int background_material_light = 0x7f070005;
+		public static final int bright_foreground_disabled_material_dark = 0x7f070016;
+		public static final int bright_foreground_disabled_material_light = 0x7f070017;
+		public static final int bright_foreground_inverse_material_dark = 0x7f070018;
+		public static final int bright_foreground_inverse_material_light = 0x7f070019;
+		public static final int bright_foreground_material_dark = 0x7f070014;
+		public static final int bright_foreground_material_light = 0x7f070015;
+		public static final int button_material_dark = 0x7f070010;
+		public static final int button_material_light = 0x7f070011;
+		public static final int dim_foreground_disabled_material_dark = 0x7f07001c;
+		public static final int dim_foreground_disabled_material_light = 0x7f07001d;
+		public static final int dim_foreground_material_dark = 0x7f07001a;
+		public static final int dim_foreground_material_light = 0x7f07001b;
+		public static final int highlighted_text_material_dark = 0x7f070020;
+		public static final int highlighted_text_material_light = 0x7f070021;
+		public static final int hint_foreground_material_dark = 0x7f07001e;
+		public static final int hint_foreground_material_light = 0x7f07001f;
+		public static final int link_text_material_dark = 0x7f070022;
+		public static final int link_text_material_light = 0x7f070023;
+		public static final int material_blue_grey_800 = 0x7f07002e;
+		public static final int material_blue_grey_900 = 0x7f07002f;
+		public static final int material_blue_grey_950 = 0x7f070030;
+		public static final int material_deep_teal_200 = 0x7f07002c;
+		public static final int material_deep_teal_500 = 0x7f07002d;
+		public static final int primary_dark_material_dark = 0x7f07000a;
+		public static final int primary_dark_material_light = 0x7f07000b;
+		public static final int primary_material_dark = 0x7f070008;
+		public static final int primary_material_light = 0x7f070009;
+		public static final int primary_text_default_material_dark = 0x7f070026;
+		public static final int primary_text_default_material_light = 0x7f070024;
+		public static final int primary_text_disabled_material_dark = 0x7f07002a;
+		public static final int primary_text_disabled_material_light = 0x7f070028;
+		public static final int ripple_material_dark = 0x7f07000c;
+		public static final int ripple_material_light = 0x7f07000d;
+		public static final int secondary_text_default_material_dark = 0x7f070027;
+		public static final int secondary_text_default_material_light = 0x7f070025;
+		public static final int secondary_text_disabled_material_dark = 0x7f07002b;
+		public static final int secondary_text_disabled_material_light = 0x7f070029;
+		public static final int switch_thumb_normal_material_dark = 0x7f070012;
+		public static final int switch_thumb_normal_material_light = 0x7f070013;
+	}
+	public static final class dimen {
+		public static final int abc_action_bar_default_height_material = 0x7f080019;
+		public static final int abc_action_bar_default_padding_material = 0x7f08001a;
+		public static final int abc_action_bar_icon_vertical_padding_material = 0x7f08001b;
+		public static final int abc_action_bar_progress_bar_size = 0x7f080005;
+		public static final int abc_action_bar_stacked_max_height = 0x7f080004;
+		public static final int abc_action_bar_stacked_tab_max_width = 0x7f080003;
+		public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f08001d;
+		public static final int abc_action_bar_subtitle_top_margin_material = 0x7f08001c;
+		public static final int abc_action_button_min_height_material = 0x7f080020;
+		public static final int abc_action_button_min_width_material = 0x7f08001f;
+		public static final int abc_action_button_min_width_overflow_material = 0x7f08001e;
+		public static final int abc_button_inset_horizontal_material = 0x7f080011;
+		public static final int abc_button_inset_vertical_material = 0x7f080010;
+		public static final int abc_button_padding_horizontal_material = 0x7f080013;
+		public static final int abc_button_padding_vertical_material = 0x7f080012;
+		public static final int abc_config_prefDialogWidth = 0x7f080002;
+		public static final int abc_control_corner_material = 0x7f080016;
+		public static final int abc_control_inset_material = 0x7f080014;
+		public static final int abc_control_padding_material = 0x7f080015;
+		public static final int abc_dropdownitem_icon_width = 0x7f08000b;
+		public static final int abc_dropdownitem_text_padding_left = 0x7f080009;
+		public static final int abc_dropdownitem_text_padding_right = 0x7f08000a;
+		public static final int abc_panel_menu_list_width = 0x7f080006;
+		public static final int abc_search_view_preferred_width = 0x7f080008;
+		public static final int abc_search_view_text_min_width = 0x7f080007;
+		public static final int abc_text_size_body_1_material = 0x7f08002a;
+		public static final int abc_text_size_body_2_material = 0x7f080029;
+		public static final int abc_text_size_button_material = 0x7f08002c;
+		public static final int abc_text_size_caption_material = 0x7f08002b;
+		public static final int abc_text_size_display_1_material = 0x7f080024;
+		public static final int abc_text_size_display_2_material = 0x7f080023;
+		public static final int abc_text_size_display_3_material = 0x7f080022;
+		public static final int abc_text_size_display_4_material = 0x7f080021;
+		public static final int abc_text_size_headline_material = 0x7f080025;
+		public static final int abc_text_size_large_material = 0x7f08002d;
+		public static final int abc_text_size_medium_material = 0x7f08002e;
+		public static final int abc_text_size_menu_material = 0x7f080028;
+		public static final int abc_text_size_small_material = 0x7f08002f;
+		public static final int abc_text_size_subhead_material = 0x7f080027;
+		public static final int abc_text_size_subtitle_material_toolbar = 0x7f080018;
+		public static final int abc_text_size_title_material = 0x7f080026;
+		public static final int abc_text_size_title_material_toolbar = 0x7f080017;
+		public static final int dialog_fixed_height_major = 0x7f08000e;
+		public static final int dialog_fixed_height_minor = 0x7f08000f;
+		public static final int dialog_fixed_width_major = 0x7f08000c;
+		public static final int dialog_fixed_width_minor = 0x7f08000d;
+		public static final int disabled_alpha_material_dark = 0x7f080001;
+		public static final int disabled_alpha_material_light = 0x7f080000;
+	}
+	public static final class drawable {
+		public static final int abc_ab_share_pack_mtrl_alpha = 0x7f020000;
+		public static final int abc_btn_check_material = 0x7f020001;
+		public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020002;
+		public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020003;
+		public static final int abc_btn_default_mtrl_shape = 0x7f020004;
+		public static final int abc_btn_radio_material = 0x7f020005;
+		public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020006;
+		public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f020007;
+		public static final int abc_btn_rating_star_off_mtrl_alpha = 0x7f020008;
+		public static final int abc_btn_rating_star_on_mtrl_alpha = 0x7f020009;
+		public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f02000a;
+		public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f02000b;
+		public static final int abc_cab_background_internal_bg = 0x7f02000c;
+		public static final int abc_cab_background_top_material = 0x7f02000d;
+		public static final int abc_cab_background_top_mtrl_alpha = 0x7f02000e;
+		public static final int abc_edit_text_material = 0x7f02000f;
+		public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f020010;
+		public static final int abc_ic_clear_mtrl_alpha = 0x7f020011;
+		public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020012;
+		public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020013;
+		public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f020014;
+		public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f020015;
+		public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f020016;
+		public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f020017;
+		public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f020018;
+		public static final int abc_ic_menu_share_mtrl_alpha = 0x7f020019;
+		public static final int abc_ic_search_api_mtrl_alpha = 0x7f02001a;
+		public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f02001b;
+		public static final int abc_item_background_holo_dark = 0x7f02001c;
+		public static final int abc_item_background_holo_light = 0x7f02001d;
+		public static final int abc_list_divider_mtrl_alpha = 0x7f02001e;
+		public static final int abc_list_focused_holo = 0x7f02001f;
+		public static final int abc_list_longpressed_holo = 0x7f020020;
+		public static final int abc_list_pressed_holo_dark = 0x7f020021;
+		public static final int abc_list_pressed_holo_light = 0x7f020022;
+		public static final int abc_list_selector_background_transition_holo_dark = 0x7f020023;
+		public static final int abc_list_selector_background_transition_holo_light = 0x7f020024;
+		public static final int abc_list_selector_disabled_holo_dark = 0x7f020025;
+		public static final int abc_list_selector_disabled_holo_light = 0x7f020026;
+		public static final int abc_list_selector_holo_dark = 0x7f020027;
+		public static final int abc_list_selector_holo_light = 0x7f020028;
+		public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f020029;
+		public static final int abc_popup_background_mtrl_mult = 0x7f02002a;
+		public static final int abc_ratingbar_full_material = 0x7f02002b;
+		public static final int abc_spinner_mtrl_am_alpha = 0x7f02002c;
+		public static final int abc_spinner_textfield_background_material = 0x7f02002d;
+		public static final int abc_switch_thumb_material = 0x7f02002e;
+		public static final int abc_switch_track_mtrl_alpha = 0x7f02002f;
+		public static final int abc_tab_indicator_material = 0x7f020030;
+		public static final int abc_tab_indicator_mtrl_alpha = 0x7f020031;
+		public static final int abc_textfield_activated_mtrl_alpha = 0x7f020032;
+		public static final int abc_textfield_default_mtrl_alpha = 0x7f020033;
+		public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020034;
+		public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020035;
+		public static final int abc_textfield_search_material = 0x7f020036;
+	}
+	public static final class id {
+		public static final int action_bar = 0x7f0a0031;
+		public static final int action_bar_activity_content = 0x7f0a0003;
+		public static final int action_bar_container = 0x7f0a0030;
+		public static final int action_bar_root = 0x7f0a002c;
+		public static final int action_bar_spinner = 0x7f0a0002;
+		public static final int action_bar_subtitle = 0x7f0a001f;
+		public static final int action_bar_title = 0x7f0a001e;
+		public static final int action_context_bar = 0x7f0a0032;
+		public static final int action_menu_divider = 0x7f0a0005;
+		public static final int action_menu_presenter = 0x7f0a0006;
+		public static final int action_mode_bar = 0x7f0a002e;
+		public static final int action_mode_bar_stub = 0x7f0a002d;
+		public static final int action_mode_close_button = 0x7f0a0020;
+		public static final int activity_chooser_view_content = 0x7f0a0021;
+		public static final int always = 0x7f0a0014;
+		public static final int beginning = 0x7f0a001b;
+		public static final int checkbox = 0x7f0a0029;
+		public static final int collapseActionView = 0x7f0a0015;
+		public static final int decor_content_parent = 0x7f0a002f;
+		public static final int default_activity_button = 0x7f0a0024;
+		public static final int dialog = 0x7f0a0019;
+		public static final int disableHome = 0x7f0a000d;
+		public static final int dropdown = 0x7f0a001a;
+		public static final int edit_query = 0x7f0a0033;
+		public static final int end = 0x7f0a001c;
+		public static final int expand_activities_button = 0x7f0a0022;
+		public static final int expanded_menu = 0x7f0a0028;
+		public static final int home = 0x7f0a0000;
+		public static final int homeAsUp = 0x7f0a000e;
+		public static final int icon = 0x7f0a0026;
+		public static final int ifRoom = 0x7f0a0016;
+		public static final int image = 0x7f0a0023;
+		public static final int listMode = 0x7f0a000a;
+		public static final int list_item = 0x7f0a0025;
+		public static final int middle = 0x7f0a001d;
+		public static final int never = 0x7f0a0017;
+		public static final int none = 0x7f0a000f;
+		public static final int normal = 0x7f0a000b;
+		public static final int progress_circular = 0x7f0a0007;
+		public static final int progress_horizontal = 0x7f0a0008;
+		public static final int radio = 0x7f0a002b;
+		public static final int search_badge = 0x7f0a0035;
+		public static final int search_bar = 0x7f0a0034;
+		public static final int search_button = 0x7f0a0036;
+		public static final int search_close_btn = 0x7f0a003b;
+		public static final int search_edit_frame = 0x7f0a0037;
+		public static final int search_go_btn = 0x7f0a003d;
+		public static final int search_mag_icon = 0x7f0a0038;
+		public static final int search_plate = 0x7f0a0039;
+		public static final int search_src_text = 0x7f0a003a;
+		public static final int search_voice_btn = 0x7f0a003e;
+		public static final int shortcut = 0x7f0a002a;
+		public static final int showCustom = 0x7f0a0010;
+		public static final int showHome = 0x7f0a0011;
+		public static final int showTitle = 0x7f0a0012;
+		public static final int split_action_bar = 0x7f0a0004;
+		public static final int submit_area = 0x7f0a003c;
+		public static final int tabMode = 0x7f0a000c;
+		public static final int title = 0x7f0a0027;
+		public static final int up = 0x7f0a0001;
+		public static final int useLogo = 0x7f0a0013;
+		public static final int withText = 0x7f0a0018;
+		public static final int wrap_content = 0x7f0a0009;
+	}
+	public static final class integer {
+		public static final int abc_config_activityDefaultDur = 0x7f090001;
+		public static final int abc_config_activityShortDur = 0x7f090000;
+		public static final int abc_max_action_buttons = 0x7f090002;
+	}
+	public static final class layout {
+		public static final int abc_action_bar_title_item = 0x7f030000;
+		public static final int abc_action_bar_up_container = 0x7f030001;
+		public static final int abc_action_bar_view_list_nav_layout = 0x7f030002;
+		public static final int abc_action_menu_item_layout = 0x7f030003;
+		public static final int abc_action_menu_layout = 0x7f030004;
+		public static final int abc_action_mode_bar = 0x7f030005;
+		public static final int abc_action_mode_close_item_material = 0x7f030006;
+		public static final int abc_activity_chooser_view = 0x7f030007;
+		public static final int abc_activity_chooser_view_list_item = 0x7f030008;
+		public static final int abc_expanded_menu_layout = 0x7f030009;
+		public static final int abc_list_menu_item_checkbox = 0x7f03000a;
+		public static final int abc_list_menu_item_icon = 0x7f03000b;
+		public static final int abc_list_menu_item_layout = 0x7f03000c;
+		public static final int abc_list_menu_item_radio = 0x7f03000d;
+		public static final int abc_popup_menu_item_layout = 0x7f03000e;
+		public static final int abc_screen_content_include = 0x7f03000f;
+		public static final int abc_screen_simple = 0x7f030010;
+		public static final int abc_screen_simple_overlay_action_mode = 0x7f030011;
+		public static final int abc_screen_toolbar = 0x7f030012;
+		public static final int abc_search_dropdown_item_icons_2line = 0x7f030013;
+		public static final int abc_search_view = 0x7f030014;
+		public static final int abc_simple_dropdown_hint = 0x7f030015;
+		public static final int support_simple_spinner_dropdown_item = 0x7f030017;
+	}
+	public static final class string {
+		public static final int abc_action_bar_home_description = 0x7f0b0001;
+		public static final int abc_action_bar_home_description_format = 0x7f0b0005;
+		public static final int abc_action_bar_home_subtitle_description_format = 0x7f0b0006;
+		public static final int abc_action_bar_up_description = 0x7f0b0002;
+		public static final int abc_action_menu_overflow_description = 0x7f0b0003;
+		public static final int abc_action_mode_done = 0x7f0b0000;
+		public static final int abc_activity_chooser_view_see_all = 0x7f0b000d;
+		public static final int abc_activitychooserview_choose_application = 0x7f0b000c;
+		public static final int abc_searchview_description_clear = 0x7f0b0009;
+		public static final int abc_searchview_description_query = 0x7f0b0008;
+		public static final int abc_searchview_description_search = 0x7f0b0007;
+		public static final int abc_searchview_description_submit = 0x7f0b000a;
+		public static final int abc_searchview_description_voice = 0x7f0b000b;
+		public static final int abc_shareactionprovider_share_with = 0x7f0b000f;
+		public static final int abc_shareactionprovider_share_with_application = 0x7f0b000e;
+		public static final int abc_toolbar_collapse_description = 0x7f0b0004;
+	}
+	public static final class style {
+		public static final int Animation_AppCompat_DropDownUp = 0x7f0c00cf;
+		public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0c00df;
+		public static final int Base_TextAppearance_AppCompat = 0x7f0c00a3;
+		public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0c00ae;
+		public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0c00ad;
+		public static final int Base_TextAppearance_AppCompat_Button = 0x7f0c00b1;
+		public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0c00af;
+		public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0c00a7;
+		public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0c00a6;
+		public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0c00a5;
+		public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0c00a4;
+		public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0c00a8;
+		public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0c00b2;
+		public static final int Base_TextAppearance_AppCompat_Large = 0x7f0c00b3;
+		public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0c00b4;
+		public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0c008c;
+		public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0c008d;
+		public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0c00b5;
+		public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0c00b6;
+		public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0c00b0;
+		public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0c008e;
+		public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0c0090;
+		public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0c008f;
+		public static final int Base_TextAppearance_AppCompat_Small = 0x7f0c00b7;
+		public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0c00b8;
+		public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0c00ab;
+		public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0c00ac;
+		public static final int Base_TextAppearance_AppCompat_Title = 0x7f0c00a9;
+		public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0c00aa;
+		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0c0076;
+		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0c0078;
+		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0c007a;
+		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0c0077;
+		public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0c0079;
+		public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0c0075;
+		public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0c0074;
+		public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0c0082;
+		public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0c008a;
+		public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0c008b;
+		public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0c009d;
+		public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0c00a2;
+		public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0c0083;
+		public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0c0097;
+		public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0c0096;
+		public static final int Base_ThemeOverlay_AppCompat = 0x7f0c00e7;
+		public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0c00ea;
+		public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0c00e9;
+		public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0c00eb;
+		public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0c00e8;
+		public static final int Base_Theme_AppCompat = 0x7f0c00db;
+		public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0c00de;
+		public static final int Base_Theme_AppCompat_Dialog = 0x7f0c00e1;
+		public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0c00e5;
+		public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0c00e3;
+		public static final int Base_Theme_AppCompat_Light = 0x7f0c00dc;
+		public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0c00dd;
+		public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0c00e2;
+		public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0c00e6;
+		public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0c00e4;
+		public static final int Base_V11_Theme_AppCompat = 0x7f0c00ec;
+		public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0c00ee;
+		public static final int Base_V11_Theme_AppCompat_Light = 0x7f0c00ed;
+		public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0c00ef;
+		public static final int Base_V14_Theme_AppCompat = 0x7f0c00f0;
+		public static final int Base_V14_Theme_AppCompat_Dialog = 0x7f0c00f2;
+		public static final int Base_V14_Theme_AppCompat_Light = 0x7f0c00f1;
+		public static final int Base_V14_Theme_AppCompat_Light_Dialog = 0x7f0c00f3;
+		public static final int Base_V21_Theme_AppCompat = 0x7f0c00f4;
+		public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0c00f6;
+		public static final int Base_V21_Theme_AppCompat_Light = 0x7f0c00f5;
+		public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0c00f7;
+		public static final int Base_V7_Theme_AppCompat = 0x7f0c00d9;
+		public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0c00e0;
+		public static final int Base_V7_Theme_AppCompat_Light = 0x7f0c00da;
+		public static final int Base_Widget_AppCompat_ActionBar = 0x7f0c0065;
+		public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0c0067;
+		public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0c006c;
+		public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0c0070;
+		public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0c006e;
+		public static final int Base_Widget_AppCompat_ActionButton = 0x7f0c0069;
+		public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0c006a;
+		public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0c006b;
+		public static final int Base_Widget_AppCompat_ActionMode = 0x7f0c0073;
+		public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0c0092;
+		public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0c0091;
+		public static final int Base_Widget_AppCompat_Button = 0x7f0c009f;
+		public static final int Base_Widget_AppCompat_Button_Small = 0x7f0c00a0;
+		public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0c009c;
+		public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0c009b;
+		public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0c009a;
+		public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0c0080;
+		public static final int Base_Widget_AppCompat_EditText = 0x7f0c0099;
+		public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0c0066;
+		public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0c0068;
+		public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0c006d;
+		public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0c0071;
+		public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0c0072;
+		public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0c006f;
+		public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0c0089;
+		public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0c0087;
+		public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0c0085;
+		public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0c0081;
+		public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0c0084;
+		public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0c0088;
+		public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0c0086;
+		public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0c0093;
+		public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0c007c;
+		public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0c007b;
+		public static final int Base_Widget_AppCompat_RatingBar = 0x7f0c009e;
+		public static final int Base_Widget_AppCompat_SearchView = 0x7f0c0098;
+		public static final int Base_Widget_AppCompat_Spinner = 0x7f0c007d;
+		public static final int Base_Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0c007f;
+		public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0c007e;
+		public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0c00a1;
+		public static final int Base_Widget_AppCompat_Toolbar = 0x7f0c0094;
+		public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0c0095;
+		public static final int Platform_AppCompat = 0x7f0c00d5;
+		public static final int Platform_AppCompat_Dialog = 0x7f0c00d7;
+		public static final int Platform_AppCompat_Light = 0x7f0c00d6;
+		public static final int Platform_AppCompat_Light_Dialog = 0x7f0c00d8;
+		public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0c00bf;
+		public static final int RtlOverlay_Widget_AppCompat_ActionButton_CloseMode = 0x7f0c00c0;
+		public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0c00c1;
+		public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0c00c2;
+		public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0c00c3;
+		public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0c00c4;
+		public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0c00b9;
+		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0c00ba;
+		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0c00bc;
+		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0c00bd;
+		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0c00bb;
+		public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0c00be;
+		public static final int TextAppearance_AppCompat = 0x7f0c003b;
+		public static final int TextAppearance_AppCompat_Body1 = 0x7f0c0046;
+		public static final int TextAppearance_AppCompat_Body2 = 0x7f0c0045;
+		public static final int TextAppearance_AppCompat_Button = 0x7f0c0050;
+		public static final int TextAppearance_AppCompat_Caption = 0x7f0c0047;
+		public static final int TextAppearance_AppCompat_Display1 = 0x7f0c003f;
+		public static final int TextAppearance_AppCompat_Display2 = 0x7f0c003e;
+		public static final int TextAppearance_AppCompat_Display3 = 0x7f0c003d;
+		public static final int TextAppearance_AppCompat_Display4 = 0x7f0c003c;
+		public static final int TextAppearance_AppCompat_Headline = 0x7f0c0040;
+		public static final int TextAppearance_AppCompat_Inverse = 0x7f0c0049;
+		public static final int TextAppearance_AppCompat_Large = 0x7f0c004a;
+		public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0c004b;
+		public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0c0057;
+		public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0c0056;
+		public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0c002a;
+		public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0c002b;
+		public static final int TextAppearance_AppCompat_Medium = 0x7f0c004c;
+		public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0c004d;
+		public static final int TextAppearance_AppCompat_Menu = 0x7f0c0048;
+		public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0c002d;
+		public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0c002c;
+		public static final int TextAppearance_AppCompat_Small = 0x7f0c004e;
+		public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0c004f;
+		public static final int TextAppearance_AppCompat_Subhead = 0x7f0c0043;
+		public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0c0044;
+		public static final int TextAppearance_AppCompat_Title = 0x7f0c0041;
+		public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0c0042;
+		public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0c0015;
+		public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0c0005;
+		public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0c0007;
+		public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0c0004;
+		public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0c0006;
+		public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0c0018;
+		public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0c005a;
+		public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0c0017;
+		public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0c0059;
+		public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0c0019;
+		public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0c0028;
+		public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0c0029;
+		public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0c0051;
+		public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0c0052;
+		public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0c0020;
+		public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0c003a;
+		public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0c0039;
+		public static final int ThemeOverlay_AppCompat = 0x7f0c00d0;
+		public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0c00d3;
+		public static final int ThemeOverlay_AppCompat_Dark = 0x7f0c00d2;
+		public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0c00d4;
+		public static final int ThemeOverlay_AppCompat_Light = 0x7f0c00d1;
+		public static final int Theme_AppCompat = 0x7f0c00c5;
+		public static final int Theme_AppCompat_CompactMenu = 0x7f0c00ce;
+		public static final int Theme_AppCompat_Dialog = 0x7f0c00cc;
+		public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0c00ca;
+		public static final int Theme_AppCompat_Light = 0x7f0c00c6;
+		public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0c00c7;
+		public static final int Theme_AppCompat_Light_Dialog = 0x7f0c00cd;
+		public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0c00cb;
+		public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0c00c9;
+		public static final int Theme_AppCompat_NoActionBar = 0x7f0c00c8;
+		public static final int Widget_AppCompat_ActionBar = 0x7f0c0000;
+		public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0c0002;
+		public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0c000d;
+		public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0c0011;
+		public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0c000f;
+		public static final int Widget_AppCompat_ActionButton = 0x7f0c000a;
+		public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0c000b;
+		public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0c000c;
+		public static final int Widget_AppCompat_ActionMode = 0x7f0c0016;
+		public static final int Widget_AppCompat_ActivityChooserView = 0x7f0c002f;
+		public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0c002e;
+		public static final int Widget_AppCompat_Button = 0x7f0c0034;
+		public static final int Widget_AppCompat_Button_Small = 0x7f0c0035;
+		public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0c0032;
+		public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0c0012;
+		public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0c001e;
+		public static final int Widget_AppCompat_EditText = 0x7f0c0031;
+		public static final int Widget_AppCompat_Light_ActionBar = 0x7f0c0001;
+		public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0c0003;
+		public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0c0053;
+		public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0c000e;
+		public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0c0054;
+		public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0c0013;
+		public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0c0014;
+		public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0c0010;
+		public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0c0055;
+		public static final int Widget_AppCompat_Light_ActionButton = 0x7f0c005d;
+		public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0c005f;
+		public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0c005e;
+		public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0c0058;
+		public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0c0064;
+		public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0c0063;
+		public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0c005b;
+		public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0c0062;
+		public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0c0061;
+		public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0c0025;
+		public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0c0023;
+		public static final int Widget_AppCompat_Light_SearchView = 0x7f0c005c;
+		public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0c0060;
+		public static final int Widget_AppCompat_ListPopupWindow = 0x7f0c0021;
+		public static final int Widget_AppCompat_ListView_DropDown = 0x7f0c001f;
+		public static final int Widget_AppCompat_ListView_Menu = 0x7f0c0026;
+		public static final int Widget_AppCompat_PopupMenu = 0x7f0c0024;
+		public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0c0022;
+		public static final int Widget_AppCompat_PopupWindow = 0x7f0c0027;
+		public static final int Widget_AppCompat_ProgressBar = 0x7f0c0009;
+		public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0c0008;
+		public static final int Widget_AppCompat_RatingBar = 0x7f0c0033;
+		public static final int Widget_AppCompat_SearchView = 0x7f0c0030;
+		public static final int Widget_AppCompat_Spinner = 0x7f0c001a;
+		public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0c001c;
+		public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0c001d;
+		public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0c001b;
+		public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0c0036;
+		public static final int Widget_AppCompat_Toolbar = 0x7f0c0037;
+		public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0c0038;
+	}
+	public static final class styleable {
+		public static final int[] ActionBar = { 0x7f010000, 0x7f010001, 0x7f01002c, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c };
+		public static final int[] ActionBarLayout = { 0x010100b3 };
+		public static final int ActionBarLayout_android_layout_gravity = 0;
+		public static final int ActionBar_background = 11;
+		public static final int ActionBar_backgroundSplit = 13;
+		public static final int ActionBar_backgroundStacked = 12;
+		public static final int ActionBar_contentInsetEnd = 22;
+		public static final int ActionBar_contentInsetLeft = 23;
+		public static final int ActionBar_contentInsetRight = 24;
+		public static final int ActionBar_contentInsetStart = 21;
+		public static final int ActionBar_customNavigationLayout = 14;
+		public static final int ActionBar_displayOptions = 4;
+		public static final int ActionBar_divider = 10;
+		public static final int ActionBar_elevation = 25;
+		public static final int ActionBar_height = 1;
+		public static final int ActionBar_hideOnContentScroll = 20;
+		public static final int ActionBar_homeAsUpIndicator = 2;
+		public static final int ActionBar_homeLayout = 15;
+		public static final int ActionBar_icon = 8;
+		public static final int ActionBar_indeterminateProgressStyle = 17;
+		public static final int ActionBar_itemPadding = 19;
+		public static final int ActionBar_logo = 9;
+		public static final int ActionBar_navigationMode = 3;
+		public static final int ActionBar_popupTheme = 26;
+		public static final int ActionBar_progressBarPadding = 18;
+		public static final int ActionBar_progressBarStyle = 16;
+		public static final int ActionBar_subtitle = 5;
+		public static final int ActionBar_subtitleTextStyle = 7;
+		public static final int ActionBar_title = 0;
+		public static final int ActionBar_titleTextStyle = 6;
+		public static final int[] ActionMenuItemView = { 0x0101013f };
+		public static final int ActionMenuItemView_android_minWidth = 0;
+		public static final int[] ActionMenuView = { };
+		public static final int[] ActionMode = { 0x7f010001, 0x7f010058, 0x7f010059, 0x7f01005d, 0x7f01005f, 0x7f01006d };
+		public static final int ActionMode_background = 3;
+		public static final int ActionMode_backgroundSplit = 4;
+		public static final int ActionMode_closeItemLayout = 5;
+		public static final int ActionMode_height = 0;
+		public static final int ActionMode_subtitleTextStyle = 2;
+		public static final int ActionMode_titleTextStyle = 1;
+		public static final int[] ActivityChooserView = { 0x7f010084, 0x7f010085 };
+		public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+		public static final int ActivityChooserView_initialActivityCount = 0;
+		public static final int[] CompatTextView = { 0x7f010086 };
+		public static final int CompatTextView_textAllCaps = 0;
+		public static final int[] DrawerArrowToggle = { 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0 };
+		public static final int DrawerArrowToggle_barSize = 6;
+		public static final int DrawerArrowToggle_color = 0;
+		public static final int DrawerArrowToggle_drawableSize = 2;
+		public static final int DrawerArrowToggle_gapBetweenBars = 3;
+		public static final int DrawerArrowToggle_middleBarArrowSize = 5;
+		public static final int DrawerArrowToggle_spinBars = 1;
+		public static final int DrawerArrowToggle_thickness = 7;
+		public static final int DrawerArrowToggle_topBottomBarArrowSize = 4;
+		public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01005c, 0x7f010087, 0x7f010088, 0x7f010089 };
+		public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 };
+		public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+		public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
+		public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
+		public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
+		public static final int LinearLayoutCompat_android_baselineAligned = 2;
+		public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+		public static final int LinearLayoutCompat_android_gravity = 0;
+		public static final int LinearLayoutCompat_android_orientation = 1;
+		public static final int LinearLayoutCompat_android_weightSum = 4;
+		public static final int LinearLayoutCompat_divider = 5;
+		public static final int LinearLayoutCompat_dividerPadding = 8;
+		public static final int LinearLayoutCompat_measureWithLargestChild = 6;
+		public static final int LinearLayoutCompat_showDividers = 7;
+		public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad };
+		public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+		public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
+		public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
+		public static final int MenuGroup_android_checkableBehavior = 5;
+		public static final int MenuGroup_android_enabled = 0;
+		public static final int MenuGroup_android_id = 1;
+		public static final int MenuGroup_android_menuCategory = 3;
+		public static final int MenuGroup_android_orderInCategory = 4;
+		public static final int MenuGroup_android_visible = 2;
+		public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074 };
+		public static final int MenuItem_actionLayout = 14;
+		public static final int MenuItem_actionProviderClass = 16;
+		public static final int MenuItem_actionViewClass = 15;
+		public static final int MenuItem_android_alphabeticShortcut = 9;
+		public static final int MenuItem_android_checkable = 11;
+		public static final int MenuItem_android_checked = 3;
+		public static final int MenuItem_android_enabled = 1;
+		public static final int MenuItem_android_icon = 0;
+		public static final int MenuItem_android_id = 2;
+		public static final int MenuItem_android_menuCategory = 5;
+		public static final int MenuItem_android_numericShortcut = 10;
+		public static final int MenuItem_android_onClick = 12;
+		public static final int MenuItem_android_orderInCategory = 6;
+		public static final int MenuItem_android_title = 7;
+		public static final int MenuItem_android_titleCondensed = 8;
+		public static final int MenuItem_android_visible = 4;
+		public static final int MenuItem_showAsAction = 13;
+		public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010070 };
+		public static final int MenuView_android_headerBackground = 4;
+		public static final int MenuView_android_horizontalDivider = 2;
+		public static final int MenuView_android_itemBackground = 5;
+		public static final int MenuView_android_itemIconDisabledAlpha = 6;
+		public static final int MenuView_android_itemTextAppearance = 1;
+		public static final int MenuView_android_verticalDivider = 3;
+		public static final int MenuView_android_windowAnimationStyle = 0;
+		public static final int MenuView_preserveIconSpacing = 7;
+		public static final int[] PopupWindow = { 0x01010176, 0x7f010098 };
+		public static final int[] PopupWindowBackgroundState = { 0x7f010097 };
+		public static final int PopupWindowBackgroundState_state_above_anchor = 0;
+		public static final int PopupWindow_android_popupBackground = 0;
+		public static final int PopupWindow_overlapAnchor = 1;
+		public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083 };
+		public static final int SearchView_android_focusable = 0;
+		public static final int SearchView_android_imeOptions = 3;
+		public static final int SearchView_android_inputType = 2;
+		public static final int SearchView_android_maxWidth = 1;
+		public static final int SearchView_closeIcon = 7;
+		public static final int SearchView_commitIcon = 11;
+		public static final int SearchView_goIcon = 8;
+		public static final int SearchView_iconifiedByDefault = 5;
+		public static final int SearchView_layout = 4;
+		public static final int SearchView_queryBackground = 13;
+		public static final int SearchView_queryHint = 6;
+		public static final int SearchView_searchIcon = 9;
+		public static final int SearchView_submitBackground = 14;
+		public static final int SearchView_suggestionRowLayout = 12;
+		public static final int SearchView_voiceIcon = 10;
+		public static final int[] Spinner = { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078 };
+		public static final int Spinner_android_background = 1;
+		public static final int Spinner_android_dropDownHorizontalOffset = 5;
+		public static final int Spinner_android_dropDownSelector = 2;
+		public static final int Spinner_android_dropDownVerticalOffset = 6;
+		public static final int Spinner_android_dropDownWidth = 4;
+		public static final int Spinner_android_gravity = 0;
+		public static final int Spinner_android_popupBackground = 3;
+		public static final int Spinner_disableChildrenWhenDisabled = 10;
+		public static final int Spinner_popupPromptView = 9;
+		public static final int Spinner_prompt = 7;
+		public static final int Spinner_spinnerMode = 8;
+		public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8 };
+		public static final int[] SwitchCompatTextAppearance = { 0x01010095, 0x01010098, 0x7f010086 };
+		public static final int SwitchCompatTextAppearance_android_textColor = 1;
+		public static final int SwitchCompatTextAppearance_android_textSize = 0;
+		public static final int SwitchCompatTextAppearance_textAllCaps = 2;
+		public static final int SwitchCompat_android_textOff = 1;
+		public static final int SwitchCompat_android_textOn = 0;
+		public static final int SwitchCompat_android_thumb = 2;
+		public static final int SwitchCompat_showText = 9;
+		public static final int SwitchCompat_splitTrack = 8;
+		public static final int SwitchCompat_switchMinWidth = 6;
+		public static final int SwitchCompat_switchPadding = 7;
+		public static final int SwitchCompat_switchTextAppearance = 5;
+		public static final int SwitchCompat_thumbTextPadding = 4;
+		public static final int SwitchCompat_track = 3;
+		public static final int[] Theme = { 0x01010057, 0x010100ae, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054 };
+		public static final int Theme_actionBarDivider = 20;
+		public static final int Theme_actionBarItemBackground = 21;
+		public static final int Theme_actionBarPopupTheme = 14;
+		public static final int Theme_actionBarSize = 19;
+		public static final int Theme_actionBarSplitStyle = 16;
+		public static final int Theme_actionBarStyle = 15;
+		public static final int Theme_actionBarTabBarStyle = 10;
+		public static final int Theme_actionBarTabStyle = 9;
+		public static final int Theme_actionBarTabTextStyle = 11;
+		public static final int Theme_actionBarTheme = 17;
+		public static final int Theme_actionBarWidgetTheme = 18;
+		public static final int Theme_actionButtonStyle = 44;
+		public static final int Theme_actionDropDownStyle = 39;
+		public static final int Theme_actionMenuTextAppearance = 22;
+		public static final int Theme_actionMenuTextColor = 23;
+		public static final int Theme_actionModeBackground = 26;
+		public static final int Theme_actionModeCloseButtonStyle = 25;
+		public static final int Theme_actionModeCloseDrawable = 28;
+		public static final int Theme_actionModeCopyDrawable = 30;
+		public static final int Theme_actionModeCutDrawable = 29;
+		public static final int Theme_actionModeFindDrawable = 34;
+		public static final int Theme_actionModePasteDrawable = 31;
+		public static final int Theme_actionModePopupWindowStyle = 36;
+		public static final int Theme_actionModeSelectAllDrawable = 32;
+		public static final int Theme_actionModeShareDrawable = 33;
+		public static final int Theme_actionModeSplitBackground = 27;
+		public static final int Theme_actionModeStyle = 24;
+		public static final int Theme_actionModeWebSearchDrawable = 35;
+		public static final int Theme_actionOverflowButtonStyle = 12;
+		public static final int Theme_actionOverflowMenuStyle = 13;
+		public static final int Theme_activityChooserViewStyle = 51;
+		public static final int Theme_android_windowAnimationStyle = 1;
+		public static final int Theme_android_windowIsFloating = 0;
+		public static final int Theme_buttonBarButtonStyle = 46;
+		public static final int Theme_buttonBarStyle = 45;
+		public static final int Theme_colorAccent = 78;
+		public static final int Theme_colorButtonNormal = 82;
+		public static final int Theme_colorControlActivated = 80;
+		public static final int Theme_colorControlHighlight = 81;
+		public static final int Theme_colorControlNormal = 79;
+		public static final int Theme_colorPrimary = 76;
+		public static final int Theme_colorPrimaryDark = 77;
+		public static final int Theme_colorSwitchThumbNormal = 83;
+		public static final int Theme_dividerHorizontal = 50;
+		public static final int Theme_dividerVertical = 49;
+		public static final int Theme_dropDownListViewStyle = 68;
+		public static final int Theme_dropdownListPreferredItemHeight = 40;
+		public static final int Theme_editTextBackground = 57;
+		public static final int Theme_editTextColor = 56;
+		public static final int Theme_homeAsUpIndicator = 43;
+		public static final int Theme_listChoiceBackgroundIndicator = 75;
+		public static final int Theme_listPopupWindowStyle = 69;
+		public static final int Theme_listPreferredItemHeight = 63;
+		public static final int Theme_listPreferredItemHeightLarge = 65;
+		public static final int Theme_listPreferredItemHeightSmall = 64;
+		public static final int Theme_listPreferredItemPaddingLeft = 66;
+		public static final int Theme_listPreferredItemPaddingRight = 67;
+		public static final int Theme_panelBackground = 72;
+		public static final int Theme_panelMenuListTheme = 74;
+		public static final int Theme_panelMenuListWidth = 73;
+		public static final int Theme_popupMenuStyle = 54;
+		public static final int Theme_popupWindowStyle = 55;
+		public static final int Theme_searchViewStyle = 62;
+		public static final int Theme_selectableItemBackground = 47;
+		public static final int Theme_selectableItemBackgroundBorderless = 48;
+		public static final int Theme_spinnerDropDownItemStyle = 42;
+		public static final int Theme_spinnerStyle = 41;
+		public static final int Theme_switchStyle = 58;
+		public static final int Theme_textAppearanceLargePopupMenu = 37;
+		public static final int Theme_textAppearanceListItem = 70;
+		public static final int Theme_textAppearanceListItemSmall = 71;
+		public static final int Theme_textAppearanceSearchResultSubtitle = 60;
+		public static final int Theme_textAppearanceSearchResultTitle = 59;
+		public static final int Theme_textAppearanceSmallPopupMenu = 38;
+		public static final int Theme_textColorSearchUrl = 61;
+		public static final int Theme_toolbarNavigationButtonStyle = 53;
+		public static final int Theme_toolbarStyle = 52;
+		public static final int Theme_windowActionBar = 2;
+		public static final int Theme_windowActionBarOverlay = 3;
+		public static final int Theme_windowActionModeOverlay = 4;
+		public static final int Theme_windowFixedHeightMajor = 8;
+		public static final int Theme_windowFixedHeightMinor = 6;
+		public static final int Theme_windowFixedWidthMajor = 5;
+		public static final int Theme_windowFixedWidthMinor = 7;
+		public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010000, 0x7f010057, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006c, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 };
+		public static final int Toolbar_android_gravity = 0;
+		public static final int Toolbar_android_minHeight = 1;
+		public static final int Toolbar_collapseContentDescription = 19;
+		public static final int Toolbar_collapseIcon = 18;
+		public static final int Toolbar_contentInsetEnd = 5;
+		public static final int Toolbar_contentInsetLeft = 6;
+		public static final int Toolbar_contentInsetRight = 7;
+		public static final int Toolbar_contentInsetStart = 4;
+		public static final int Toolbar_maxButtonHeight = 16;
+		public static final int Toolbar_navigationContentDescription = 21;
+		public static final int Toolbar_navigationIcon = 20;
+		public static final int Toolbar_popupTheme = 8;
+		public static final int Toolbar_subtitle = 3;
+		public static final int Toolbar_subtitleTextAppearance = 10;
+		public static final int Toolbar_theme = 17;
+		public static final int Toolbar_title = 2;
+		public static final int Toolbar_titleMarginBottom = 15;
+		public static final int Toolbar_titleMarginEnd = 13;
+		public static final int Toolbar_titleMarginStart = 12;
+		public static final int Toolbar_titleMarginTop = 14;
+		public static final int Toolbar_titleMargins = 11;
+		public static final int Toolbar_titleTextAppearance = 9;
+		public static final int[] View = { 0x010100da, 0x7f01006e, 0x7f01006f };
+		public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 };
+		public static final int ViewStubCompat_android_id = 0;
+		public static final int ViewStubCompat_android_inflatedId = 2;
+		public static final int ViewStubCompat_android_layout = 1;
+		public static final int View_android_focusable = 0;
+		public static final int View_paddingEnd = 2;
+		public static final int View_paddingStart = 1;
+	}
+}

+ 6 - 0
gen/net/indivia/hacklabbo/statusreader/BuildConfig.java

@@ -0,0 +1,6 @@
+/** Automatically generated file. DO NOT MODIFY */
+package net.indivia.hacklabbo.statusreader;
+
+public final class BuildConfig {
+    public final static boolean DEBUG = true;
+}

+ 6348 - 0
gen/net/indivia/hacklabbo/statusreader/R.java

@@ -0,0 +1,6348 @@
+/* AUTO-GENERATED FILE.  DO NOT MODIFY.
+ *
+ * This class was automatically generated by the
+ * aapt tool from the resource data it found.  It
+ * should not be modified by hand.
+ */
+
+package net.indivia.hacklabbo.statusreader;
+
+public final class R {
+    public static final class anim {
+        public static final int abc_fade_in=0x7f040000;
+        public static final int abc_fade_out=0x7f040001;
+        public static final int abc_grow_fade_in_from_bottom=0x7f040002;
+        public static final int abc_shrink_fade_out_from_bottom=0x7f040003;
+        public static final int abc_slide_in_bottom=0x7f040004;
+        public static final int abc_slide_in_top=0x7f040005;
+        public static final int abc_slide_out_bottom=0x7f040006;
+        public static final int abc_slide_out_top=0x7f040007;
+    }
+    public static final class array {
+        public static final int prefs_refresh_time=0x7f0d0000;
+        public static final int prefs_refresh_time_value=0x7f0d0001;
+    }
+    public static final class attr {
+        /**  Custom divider drawable to use for elements in the action bar. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionBarDivider=0x7f010015;
+        /**  Custom item state list drawable background for action bar items. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionBarItemBackground=0x7f010016;
+        /**  Reference to a theme that should be used to inflate popups
+             shown by widgets in the action bar. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionBarPopupTheme=0x7f01000f;
+        /**  Size of the Action Bar, including the contextual
+             bar used to present Action Modes. 
+         <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+<p>May be one of the following constant values.</p>
+<table>
+<colgroup align="left" />
+<colgroup align="left" />
+<colgroup align="left" />
+<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
+<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
+</table>
+         */
+        public static final int actionBarSize=0x7f010014;
+        /**  Reference to a style for the split Action Bar. This style
+             controls the split component that holds the menu/action
+             buttons. actionBarStyle is still used for the primary
+             bar. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionBarSplitStyle=0x7f010011;
+        /**  Reference to a style for the Action Bar 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionBarStyle=0x7f010010;
+        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionBarTabBarStyle=0x7f01000b;
+        /**  Default style for tabs within an action bar 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionBarTabStyle=0x7f01000a;
+        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionBarTabTextStyle=0x7f01000c;
+        /**  Reference to a theme that should be used to inflate the
+             action bar. This will be inherited by any widget inflated
+             into the action bar. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionBarTheme=0x7f010012;
+        /**  Reference to a theme that should be used to inflate widgets
+             and layouts destined for the action bar. Most of the time
+             this will be a reference to the current theme, but when
+             the action bar has a significantly different contrast
+             profile than the rest of the activity the difference
+             can become important. If this is set to @null the current
+             theme will be used.
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionBarWidgetTheme=0x7f010013;
+        /**  Default action button style. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionButtonStyle=0x7f01002d;
+        /**  Default ActionBar dropdown style. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionDropDownStyle=0x7f010028;
+        /**  An optional layout to be used as an action view.
+             See {@link android.view.MenuItem#setActionView(android.view.View)}
+             for more info. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionLayout=0x7f010072;
+        /**  TextAppearance style that will be applied to text that
+             appears within action menu items. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionMenuTextAppearance=0x7f010017;
+        /**  Color for text that appears within action menu items. 
+ Color for text that appears within action menu items. 
+         <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+         */
+        public static final int actionMenuTextColor=0x7f010018;
+        /**  Background drawable to use for action mode UI 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionModeBackground=0x7f01001b;
+        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionModeCloseButtonStyle=0x7f01001a;
+        /**  Drawable to use for the close action mode button 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionModeCloseDrawable=0x7f01001d;
+        /**  Drawable to use for the Copy action button in Contextual Action Bar 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionModeCopyDrawable=0x7f01001f;
+        /**  Drawable to use for the Cut action button in Contextual Action Bar 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionModeCutDrawable=0x7f01001e;
+        /**  Drawable to use for the Find action button in WebView selection action modes 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionModeFindDrawable=0x7f010023;
+        /**  Drawable to use for the Paste action button in Contextual Action Bar 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionModePasteDrawable=0x7f010020;
+        /**  PopupWindow style to use for action modes when showing as a window overlay. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionModePopupWindowStyle=0x7f010025;
+        /**  Drawable to use for the Select all action button in Contextual Action Bar 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionModeSelectAllDrawable=0x7f010021;
+        /**  Drawable to use for the Share action button in WebView selection action modes 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionModeShareDrawable=0x7f010022;
+        /**  Background drawable to use for action mode UI in the lower split bar 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionModeSplitBackground=0x7f01001c;
+        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionModeStyle=0x7f010019;
+        /**  Drawable to use for the Web Search action button in WebView selection action modes 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionModeWebSearchDrawable=0x7f010024;
+        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionOverflowButtonStyle=0x7f01000d;
+        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int actionOverflowMenuStyle=0x7f01000e;
+        /**  The name of an optional ActionProvider class to instantiate an action view
+             and perform operations such as default action for that menu item.
+             See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
+             for more info. 
+         <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int actionProviderClass=0x7f010074;
+        /**  The name of an optional View class to instantiate and use as an
+             action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
+             for more info. 
+         <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int actionViewClass=0x7f010073;
+        /**  Default ActivityChooserView style. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int activityChooserViewStyle=0x7f010034;
+        /**  Specifies a background drawable for the action bar. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int background=0x7f01005d;
+        /**  Specifies a background drawable for the bottom component of a split action bar. 
+         <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+         */
+        public static final int backgroundSplit=0x7f01005f;
+        /**  Specifies a background drawable for a second stacked row of the action bar. 
+         <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+         */
+        public static final int backgroundStacked=0x7f01005e;
+        /**  The size of the bars when they are parallel to each other 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int barSize=0x7f01009f;
+        /**  A style that may be applied to Buttons placed within a
+             LinearLayout with the style buttonBarStyle to form a button bar. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int buttonBarButtonStyle=0x7f01002f;
+        /**  A style that may be applied to horizontal LinearLayouts
+         to form a button bar. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int buttonBarStyle=0x7f01002e;
+        /**  Close button icon 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int closeIcon=0x7f01007c;
+        /**  Specifies a layout to use for the "close" item at the starting edge. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int closeItemLayout=0x7f01006d;
+        /**  Text to set as the content description for the collapse button. 
+         <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int collapseContentDescription=0x7f010094;
+        /**  Icon drawable to use for the collapse button. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int collapseIcon=0x7f010093;
+        /**  The drawing color for the bars 
+         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int color=0x7f010099;
+        /**  Bright complement to the primary branding color. By default, this is the color applied
+             to framework controls (via colorControlActivated). 
+         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int colorAccent=0x7f01004f;
+        /**  The color applied to framework buttons in their normal state. 
+         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int colorButtonNormal=0x7f010053;
+        /**  The color applied to framework controls in their activated (ex. checked) state. 
+         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int colorControlActivated=0x7f010051;
+        /**  The color applied to framework control highlights (ex. ripples, list selectors). 
+         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int colorControlHighlight=0x7f010052;
+        /**  The color applied to framework controls in their normal state. 
+         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int colorControlNormal=0x7f010050;
+        /**  The primary branding color for the app. By default, this is the color applied to the
+             action bar background. 
+         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int colorPrimary=0x7f01004d;
+        /**  Dark variant of the primary branding color. By default, this is the color applied to
+             the status bar (via statusBarColor) and navigation bar (via navigationBarColor). 
+         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int colorPrimaryDark=0x7f01004e;
+        /**  The color applied to framework switch thumbs in their normal state. 
+         <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int colorSwitchThumbNormal=0x7f010054;
+        /**  Commit icon shown in the query suggestion row 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int commitIcon=0x7f010080;
+        /**  Minimum inset for content views within a bar. Navigation buttons and
+             menu views are excepted. Only valid for some themes and configurations. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int contentInsetEnd=0x7f010068;
+        /**  Minimum inset for content views within a bar. Navigation buttons and
+             menu views are excepted. Only valid for some themes and configurations. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int contentInsetLeft=0x7f010069;
+        /**  Minimum inset for content views within a bar. Navigation buttons and
+             menu views are excepted. Only valid for some themes and configurations. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int contentInsetRight=0x7f01006a;
+        /**  Minimum inset for content views within a bar. Navigation buttons and
+             menu views are excepted. Only valid for some themes and configurations. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int contentInsetStart=0x7f010067;
+        /**  Specifies a layout for custom navigation. Overrides navigationMode. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int customNavigationLayout=0x7f010060;
+        /**  Whether this spinner should mark child views as enabled/disabled when
+             the spinner itself is enabled/disabled. 
+         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int disableChildrenWhenDisabled=0x7f010078;
+        /**  Options affecting how the action bar is displayed. 
+         <p>Must be one or more (separated by '|') of the following constant values.</p>
+<table>
+<colgroup align="left" />
+<colgroup align="left" />
+<colgroup align="left" />
+<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
+<tr><td><code>none</code></td><td>0</td><td></td></tr>
+<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
+<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
+<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
+<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
+<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
+<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
+</table>
+         */
+        public static final int displayOptions=0x7f010056;
+        /**  Specifies the drawable used for item dividers. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int divider=0x7f01005c;
+        /**  A drawable that may be used as a horizontal divider between visual elements. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int dividerHorizontal=0x7f010033;
+        /**  Size of padding on either end of a divider. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int dividerPadding=0x7f010089;
+        /**  A drawable that may be used as a vertical divider between visual elements. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int dividerVertical=0x7f010032;
+        /**  The total size of the drawable 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int drawableSize=0x7f01009b;
+        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int drawerArrowStyle=0x7f0100a1;
+        /**  ListPopupWindow compatibility 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int dropDownListViewStyle=0x7f010045;
+        /**  The preferred item height for dropdown lists. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int dropdownListPreferredItemHeight=0x7f010029;
+        /**  EditText background drawable. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int editTextBackground=0x7f01003a;
+        /**  EditText text foreground color. 
+         <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+         */
+        public static final int editTextColor=0x7f010039;
+        /**  Elevation for the action bar itself 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int elevation=0x7f01006b;
+        /**  The drawable to show in the button for expanding the activities overflow popup.
+             <strong>Note:</strong> Clients would like to set this drawable
+             as a clue about the action the chosen activity will perform. For
+             example, if share activity is to be chosen the drawable should
+             give a clue that sharing is to be performed.
+         
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int expandActivityOverflowButtonDrawable=0x7f010085;
+        /**  The max gap between the bars when they are parallel to each other 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int gapBetweenBars=0x7f01009c;
+        /**  Go button icon 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int goIcon=0x7f01007d;
+        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int height=0x7f010001;
+        /**  Set true to hide the action bar on a vertical nested scroll of content. 
+         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int hideOnContentScroll=0x7f010066;
+        /**  Specifies a drawable to use for the 'home as up' indicator. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int homeAsUpIndicator=0x7f01002c;
+        /**  Specifies a layout to use for the "home" section of the action bar. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int homeLayout=0x7f010061;
+        /**  Specifies the drawable used for the application icon. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int icon=0x7f01005a;
+        /**  The default state of the SearchView. If true, it will be iconified when not in
+             use and expanded when clicked. 
+         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int iconifiedByDefault=0x7f01007a;
+        /**  Specifies a style resource to use for an indeterminate progress spinner. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int indeterminateProgressStyle=0x7f010063;
+        /**  The maximal number of items initially shown in the activity list. 
+         <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int initialActivityCount=0x7f010084;
+        /**  Specifies whether the theme is light, otherwise it is dark. 
+         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int isLightTheme=0x7f010002;
+        /**  Specifies padding that should be applied to the left and right sides of
+             system-provided items in the bar. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int itemPadding=0x7f010065;
+        /**  The layout to use for the search view. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int layout=0x7f010079;
+        /**  Drawable used as a background for selected list items. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int listChoiceBackgroundIndicator=0x7f01004c;
+        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int listPopupWindowStyle=0x7f010046;
+        /**  The preferred list item height. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int listPreferredItemHeight=0x7f010040;
+        /**  A larger, more robust list item height. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int listPreferredItemHeightLarge=0x7f010042;
+        /**  A smaller, sleeker list item height. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int listPreferredItemHeightSmall=0x7f010041;
+        /**  The preferred padding along the left edge of list items. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int listPreferredItemPaddingLeft=0x7f010043;
+        /**  The preferred padding along the right edge of list items. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int listPreferredItemPaddingRight=0x7f010044;
+        /**  Specifies the drawable used for the application logo. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int logo=0x7f01005b;
+        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int maxButtonHeight=0x7f010091;
+        /**  When set to true, all children with a weight will be considered having
+             the minimum size of the largest child. If false, all children are
+             measured normally. 
+         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int measureWithLargestChild=0x7f010087;
+        /**  The size of the middle bar when top and bottom bars merge into middle bar to form an arrow 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int middleBarArrowSize=0x7f01009e;
+        /**  Text to set as the content description for the navigation button
+             located at the start of the toolbar. 
+         <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int navigationContentDescription=0x7f010096;
+        /**  Icon drawable to use for the navigation button located at
+             the start of the toolbar. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int navigationIcon=0x7f010095;
+        /**  The type of navigation to use. 
+         <p>Must be one of the following constant values.</p>
+<table>
+<colgroup align="left" />
+<colgroup align="left" />
+<colgroup align="left" />
+<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
+<tr><td><code>normal</code></td><td>0</td><td> Normal static title text </td></tr>
+<tr><td><code>listMode</code></td><td>1</td><td> The action bar will use a selection list for navigation. </td></tr>
+<tr><td><code>tabMode</code></td><td>2</td><td> The action bar will use a series of horizontal tabs for navigation. </td></tr>
+</table>
+         */
+        public static final int navigationMode=0x7f010055;
+        /**  Whether the popup window should overlap its anchor view. 
+         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int overlapAnchor=0x7f010098;
+        /**  Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int paddingEnd=0x7f01006f;
+        /**  Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int paddingStart=0x7f01006e;
+        /**  The background of a panel when it is inset from the left and right edges of the screen. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int panelBackground=0x7f010049;
+        /**  Default Panel Menu style. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int panelMenuListTheme=0x7f01004b;
+        /**  Default Panel Menu width. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int panelMenuListWidth=0x7f01004a;
+        /**  Default PopupMenu style. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int popupMenuStyle=0x7f010037;
+        /**  Reference to a layout to use for displaying a prompt in the dropdown for
+             spinnerMode="dropdown". This layout must contain a TextView with the id
+             {@code @android:id/text1} to be populated with the prompt text. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int popupPromptView=0x7f010077;
+        /**  Reference to a theme that should be used to inflate popups
+             shown by widgets in the action bar. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int popupTheme=0x7f01006c;
+        /**  Default PopupWindow style. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int popupWindowStyle=0x7f010038;
+        /**  Whether space should be reserved in layout when an icon is missing. 
+         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int preserveIconSpacing=0x7f010070;
+        /**  Specifies the horizontal padding on either end for an embedded progress bar. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int progressBarPadding=0x7f010064;
+        /**  Specifies a style resource to use for an embedded progress bar. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int progressBarStyle=0x7f010062;
+        /**  The prompt to display when the spinner's dialog is shown. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int prompt=0x7f010075;
+        /**  Background for the section containing the search query 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int queryBackground=0x7f010082;
+        /**  An optional query hint string to be displayed in the empty query field. 
+         <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int queryHint=0x7f01007b;
+        /**  Search icon 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int searchIcon=0x7f01007e;
+        /**  Style for the search query widget. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int searchViewStyle=0x7f01003f;
+        /**  A style that may be applied to buttons or other selectable items
+             that should react to pressed and focus states, but that do not
+             have a clear visual border along the edges. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int selectableItemBackground=0x7f010030;
+        /**  Background drawable for borderless standalone items that need focus/pressed states. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int selectableItemBackgroundBorderless=0x7f010031;
+        /**  How this item should display in the Action Bar, if present. 
+         <p>Must be one or more (separated by '|') of the following constant values.</p>
+<table>
+<colgroup align="left" />
+<colgroup align="left" />
+<colgroup align="left" />
+<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
+<tr><td><code>never</code></td><td>0</td><td> Never show this item in an action bar, show it in the overflow menu instead.
+                 Mutually exclusive with "ifRoom" and "always". </td></tr>
+<tr><td><code>ifRoom</code></td><td>1</td><td> Show this item in an action bar if there is room for it as determined
+                 by the system. Favor this option over "always" where possible.
+                 Mutually exclusive with "never" and "always". </td></tr>
+<tr><td><code>always</code></td><td>2</td><td> Always show this item in an actionbar, even if it would override
+                 the system's limits of how much stuff to put there. This may make
+                 your action bar look bad on some screens. In most cases you should
+                 use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". </td></tr>
+<tr><td><code>withText</code></td><td>4</td><td> When this item is shown as an action in the action bar, show a text
+                 label with it even if it has an icon representation. </td></tr>
+<tr><td><code>collapseActionView</code></td><td>8</td><td> This item's action view collapses to a normal menu
+                 item. When expanded, the action view takes over a
+                 larger segment of its container. </td></tr>
+</table>
+         */
+        public static final int showAsAction=0x7f010071;
+        /**  Setting for which dividers to show. 
+         <p>Must be one or more (separated by '|') of the following constant values.</p>
+<table>
+<colgroup align="left" />
+<colgroup align="left" />
+<colgroup align="left" />
+<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
+<tr><td><code>none</code></td><td>0</td><td></td></tr>
+<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
+<tr><td><code>middle</code></td><td>2</td><td></td></tr>
+<tr><td><code>end</code></td><td>4</td><td></td></tr>
+</table>
+         */
+        public static final int showDividers=0x7f010088;
+        /**  Whether to draw on/off text. 
+         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int showText=0x7f0100a8;
+        /**  Whether bars should rotate or not during transition 
+         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int spinBars=0x7f01009a;
+        /**  Default Spinner style. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int spinnerDropDownItemStyle=0x7f01002b;
+        /**  Display mode for spinner options. 
+         <p>Must be one of the following constant values.</p>
+<table>
+<colgroup align="left" />
+<colgroup align="left" />
+<colgroup align="left" />
+<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
+<tr><td><code>dialog</code></td><td>0</td><td> Spinner options will be presented to the user as a dialog window. </td></tr>
+<tr><td><code>dropdown</code></td><td>1</td><td> Spinner options will be presented to the user as an inline dropdown
+                 anchored to the spinner widget itself. </td></tr>
+</table>
+         */
+        public static final int spinnerMode=0x7f010076;
+        /**  Default Spinner style. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int spinnerStyle=0x7f01002a;
+        /**  Whether to split the track and leave a gap for the thumb drawable. 
+         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int splitTrack=0x7f0100a7;
+        /**  State identifier indicating the popup will be above the anchor. 
+         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int state_above_anchor=0x7f010097;
+        /**  Background for the section containing the action (e.g. voice search) 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int submitBackground=0x7f010083;
+        /**  Specifies subtitle text used for navigationMode="normal" 
+         <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int subtitle=0x7f010057;
+        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int subtitleTextAppearance=0x7f01008b;
+        /**  Specifies a style to use for subtitle text. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int subtitleTextStyle=0x7f010059;
+        /**  Layout for query suggestion rows 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int suggestionRowLayout=0x7f010081;
+        /**  Minimum width for the switch component 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int switchMinWidth=0x7f0100a5;
+        /**  Minimum space between the switch and caption text 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int switchPadding=0x7f0100a6;
+        /**  Default style for the Switch widget. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int switchStyle=0x7f01003b;
+        /**  TextAppearance style for text displayed on the switch thumb. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int switchTextAppearance=0x7f0100a4;
+        /**  Present the text in ALL CAPS. This may use a small-caps form when available. 
+         <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
+         */
+        public static final int textAllCaps=0x7f010086;
+        /**  Text color, typeface, size, and style for the text inside of a popup menu. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int textAppearanceLargePopupMenu=0x7f010026;
+        /**  The preferred TextAppearance for the primary text of list items. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int textAppearanceListItem=0x7f010047;
+        /**  The preferred TextAppearance for the primary text of small list items. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int textAppearanceListItemSmall=0x7f010048;
+        /**  Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int textAppearanceSearchResultSubtitle=0x7f01003d;
+        /**  Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int textAppearanceSearchResultTitle=0x7f01003c;
+        /**  Text color, typeface, size, and style for small text inside of a popup menu. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int textAppearanceSmallPopupMenu=0x7f010027;
+        /**  Text color for urls in search suggestions, used by things like global search 
+         <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+         */
+        public static final int textColorSearchUrl=0x7f01003e;
+        /**  Specifies a theme override for a view. When a theme override is set, the
+             view will be inflated using a {@link android.content.Context} themed with
+             the specified resource. During XML inflation, any child views under the
+             view with a theme override will inherit the themed context. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int theme=0x7f010092;
+        /**  The thickness (stroke size) for the bar paint 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int thickness=0x7f0100a0;
+        /**  Amount of padding on either side of text within the switch thumb. 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int thumbTextPadding=0x7f0100a3;
+        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int title=0x7f010000;
+        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int titleMarginBottom=0x7f010090;
+        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int titleMarginEnd=0x7f01008e;
+        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int titleMarginStart=0x7f01008d;
+        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int titleMarginTop=0x7f01008f;
+        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int titleMargins=0x7f01008c;
+        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int titleTextAppearance=0x7f01008a;
+        /**  Specifies a style to use for title text. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int titleTextStyle=0x7f010058;
+        /**  Default Toolar NavigationButtonStyle 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int toolbarNavigationButtonStyle=0x7f010036;
+        /**  Default Toolbar style. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int toolbarStyle=0x7f010035;
+        /**  The size of the top and bottom bars when they merge to the middle bar to form an arrow 
+         <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int topBottomBarArrowSize=0x7f01009d;
+        /**  Drawable to use as the "track" that the switch thumb slides within. 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int track=0x7f0100a2;
+        /**  Voice button icon 
+         <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+         */
+        public static final int voiceIcon=0x7f01007f;
+        /**  Flag indicating whether this window should have an Action Bar
+             in place of the usual title bar. 
+         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int windowActionBar=0x7f010003;
+        /**  Flag indicating whether this window's Action Bar should overlay
+             application content. Does nothing if the window would not
+             have an Action Bar. 
+         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int windowActionBarOverlay=0x7f010004;
+        /**  Flag indicating whether action modes should overlay window content
+             when there is not reserved space for their UI (such as an Action Bar). 
+         <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int windowActionModeOverlay=0x7f010005;
+        /**  A fixed height for the window along the major axis of the screen,
+             that is, when in portrait. Can be either an absolute dimension
+             or a fraction of the screen size in that dimension. 
+         <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int windowFixedHeightMajor=0x7f010009;
+        /**  A fixed height for the window along the minor axis of the screen,
+             that is, when in landscape. Can be either an absolute dimension
+             or a fraction of the screen size in that dimension. 
+         <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int windowFixedHeightMinor=0x7f010007;
+        /**  A fixed width for the window along the major axis of the screen,
+             that is, when in landscape. Can be either an absolute dimension
+             or a fraction of the screen size in that dimension. 
+         <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int windowFixedWidthMajor=0x7f010006;
+        /**  A fixed width for the window along the minor axis of the screen,
+             that is, when in portrait. Can be either an absolute dimension
+             or a fraction of the screen size in that dimension. 
+         <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+         */
+        public static final int windowFixedWidthMinor=0x7f010008;
+    }
+    public static final class bool {
+        public static final int abc_action_bar_embed_tabs=0x7f060000;
+        public static final int abc_action_bar_embed_tabs_pre_jb=0x7f060001;
+        public static final int abc_action_bar_expanded_action_views_exclusive=0x7f060002;
+        /**  Whether action menu items should be displayed in ALLCAPS or not.
+         Defaults to true. If this is not appropriate for specific locales
+         it should be disabled in that locale's resources. 
+         */
+        public static final int abc_config_actionMenuItemAllCaps=0x7f060005;
+        /**  Whether action menu items should obey the "withText" showAsAction
+    flag. This may be set to false for situations where space is
+    extremely limited. 
+ Whether action menu items should obey the "withText" showAsAction.
+         This may be set to false for situations where space is
+         extremely limited. 
+         */
+        public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f060004;
+        public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f060003;
+    }
+    public static final class color {
+        public static final int abc_background_cache_hint_selector_material_dark=0x7f070031;
+        public static final int abc_background_cache_hint_selector_material_light=0x7f070032;
+        public static final int abc_input_method_navigation_guard=0x7f070003;
+        public static final int abc_primary_text_disable_only_material_dark=0x7f070033;
+        public static final int abc_primary_text_disable_only_material_light=0x7f070034;
+        public static final int abc_primary_text_material_dark=0x7f070035;
+        public static final int abc_primary_text_material_light=0x7f070036;
+        public static final int abc_search_url_text=0x7f070037;
+        public static final int abc_search_url_text_normal=0x7f070000;
+        public static final int abc_search_url_text_pressed=0x7f070002;
+        public static final int abc_search_url_text_selected=0x7f070001;
+        public static final int abc_secondary_text_material_dark=0x7f070038;
+        public static final int abc_secondary_text_material_light=0x7f070039;
+        public static final int accent_material_dark=0x7f07000f;
+        public static final int accent_material_light=0x7f07000e;
+        public static final int background_floating_material_dark=0x7f070006;
+        public static final int background_floating_material_light=0x7f070007;
+        public static final int background_material_dark=0x7f070004;
+        public static final int background_material_light=0x7f070005;
+        /**  White 50% 
+         */
+        public static final int bright_foreground_disabled_material_dark=0x7f070016;
+        /**  Black 50% 
+         */
+        public static final int bright_foreground_disabled_material_light=0x7f070017;
+        public static final int bright_foreground_inverse_material_dark=0x7f070018;
+        public static final int bright_foreground_inverse_material_light=0x7f070019;
+        public static final int bright_foreground_material_dark=0x7f070014;
+        public static final int bright_foreground_material_light=0x7f070015;
+        public static final int button_material_dark=0x7f070010;
+        public static final int button_material_light=0x7f070011;
+        public static final int dim_foreground_disabled_material_dark=0x7f07001c;
+        public static final int dim_foreground_disabled_material_light=0x7f07001d;
+        public static final int dim_foreground_material_dark=0x7f07001a;
+        public static final int dim_foreground_material_light=0x7f07001b;
+        /**  TODO: This is 40% alpha on the default accent color. 
+         */
+        public static final int highlighted_text_material_dark=0x7f070020;
+        /**  TODO: This is 40% alpha on the default accent color. 
+         */
+        public static final int highlighted_text_material_light=0x7f070021;
+        public static final int hint_foreground_material_dark=0x7f07001e;
+        public static final int hint_foreground_material_light=0x7f07001f;
+        public static final int link_text_material_dark=0x7f070022;
+        public static final int link_text_material_light=0x7f070023;
+        public static final int material_blue_grey_800=0x7f07002e;
+        public static final int material_blue_grey_900=0x7f07002f;
+        public static final int material_blue_grey_950=0x7f070030;
+        public static final int material_deep_teal_200=0x7f07002c;
+        public static final int material_deep_teal_500=0x7f07002d;
+        public static final int primary_dark_material_dark=0x7f07000a;
+        public static final int primary_dark_material_light=0x7f07000b;
+        public static final int primary_material_dark=0x7f070008;
+        public static final int primary_material_light=0x7f070009;
+        public static final int primary_text_default_material_dark=0x7f070026;
+        public static final int primary_text_default_material_light=0x7f070024;
+        /**  30% of default values 
+         */
+        public static final int primary_text_disabled_material_dark=0x7f07002a;
+        /**  26% of default values 
+         */
+        public static final int primary_text_disabled_material_light=0x7f070028;
+        public static final int ripple_material_dark=0x7f07000c;
+        public static final int ripple_material_light=0x7f07000d;
+        public static final int secondary_text_default_material_dark=0x7f070027;
+        public static final int secondary_text_default_material_light=0x7f070025;
+        public static final int secondary_text_disabled_material_dark=0x7f07002b;
+        public static final int secondary_text_disabled_material_light=0x7f070029;
+        public static final int switch_thumb_normal_material_dark=0x7f070012;
+        public static final int switch_thumb_normal_material_light=0x7f070013;
+    }
+    public static final class dimen {
+        /**  Default height of an action bar. 
+ Default height of an action bar. 
+ Default height of an action bar. 
+         */
+        public static final int abc_action_bar_default_height_material=0x7f080019;
+        /**  Default padding of an action bar. 
+ Default padding of an action bar. 
+ Default padding of an action bar. 
+         */
+        public static final int abc_action_bar_default_padding_material=0x7f08001a;
+        /**  Vertical padding around action bar icons. 
+         */
+        public static final int abc_action_bar_icon_vertical_padding_material=0x7f08001b;
+        /**  Size of the indeterminate Progress Bar 
+ Size of the indeterminate Progress Bar 
+         */
+        public static final int abc_action_bar_progress_bar_size=0x7f080005;
+        /**  Maximum height for a stacked tab bar as part of an action bar 
+         */
+        public static final int abc_action_bar_stacked_max_height=0x7f080004;
+        /**  Maximum width for a stacked action bar tab. This prevents
+         action bar tabs from becoming too wide on a wide screen when only
+         a few are present. 
+         */
+        public static final int abc_action_bar_stacked_tab_max_width=0x7f080003;
+        /**  Bottom margin for action bar subtitles 
+         */
+        public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f08001d;
+        /**  Top margin for action bar subtitles 
+         */
+        public static final int abc_action_bar_subtitle_top_margin_material=0x7f08001c;
+        public static final int abc_action_button_min_height_material=0x7f080020;
+        public static final int abc_action_button_min_width_material=0x7f08001f;
+        public static final int abc_action_button_min_width_overflow_material=0x7f08001e;
+        public static final int abc_button_inset_horizontal_material=0x7f080011;
+        public static final int abc_button_inset_vertical_material=0x7f080010;
+        public static final int abc_button_padding_horizontal_material=0x7f080013;
+        /**  Default inner padding within buttons 
+         */
+        public static final int abc_button_padding_vertical_material=0x7f080012;
+        /**  The maximum width we would prefer dialogs to be.  0 if there is no
+    maximum (let them grow as large as the screen).  Actual values are
+    specified for -large and -xlarge configurations. 
+ see comment in values/config.xml 
+ see comment in values/config.xml 
+         */
+        public static final int abc_config_prefDialogWidth=0x7f080002;
+        /**  Default rounded corner for controls 
+         */
+        public static final int abc_control_corner_material=0x7f080016;
+        /**  Default insets (outer padding) around controls 
+         */
+        public static final int abc_control_inset_material=0x7f080014;
+        /**  Default inner padding within controls 
+         */
+        public static final int abc_control_padding_material=0x7f080015;
+        /**  Width of the icon in a dropdown list 
+         */
+        public static final int abc_dropdownitem_icon_width=0x7f08000b;
+        /**  Text padding for dropdown items 
+         */
+        public static final int abc_dropdownitem_text_padding_left=0x7f080009;
+        public static final int abc_dropdownitem_text_padding_right=0x7f08000a;
+        public static final int abc_panel_menu_list_width=0x7f080006;
+        /**  Preferred width of the search view. 
+         */
+        public static final int abc_search_view_preferred_width=0x7f080008;
+        /**  Minimum width of the search view text entry area. 
+ Minimum width of the search view text entry area. 
+ Minimum width of the search view text entry area. 
+ Minimum width of the search view text entry area. 
+ Minimum width of the search view text entry area. 
+         */
+        public static final int abc_search_view_text_min_width=0x7f080007;
+        public static final int abc_text_size_body_1_material=0x7f08002a;
+        public static final int abc_text_size_body_2_material=0x7f080029;
+        public static final int abc_text_size_button_material=0x7f08002c;
+        public static final int abc_text_size_caption_material=0x7f08002b;
+        public static final int abc_text_size_display_1_material=0x7f080024;
+        public static final int abc_text_size_display_2_material=0x7f080023;
+        public static final int abc_text_size_display_3_material=0x7f080022;
+        public static final int abc_text_size_display_4_material=0x7f080021;
+        public static final int abc_text_size_headline_material=0x7f080025;
+        public static final int abc_text_size_large_material=0x7f08002d;
+        public static final int abc_text_size_medium_material=0x7f08002e;
+        public static final int abc_text_size_menu_material=0x7f080028;
+        public static final int abc_text_size_small_material=0x7f08002f;
+        public static final int abc_text_size_subhead_material=0x7f080027;
+        /**  Use the default subtitle sizes on tablets. 
+ Default text size for action bar subtitle.
+         */
+        public static final int abc_text_size_subtitle_material_toolbar=0x7f080018;
+        public static final int abc_text_size_title_material=0x7f080026;
+        /**  Use the default title sizes on tablets. 
+ Default text size for action bar title.
+         */
+        public static final int abc_text_size_title_material_toolbar=0x7f080017;
+        /**  Default screen margins, per the Android Design guidelines. 
+
+         Example customization of dimensions originally defined in res/values/dimens.xml
+         (such as screen margins) for screens with more than 820dp of available width. This
+         would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively).
+    
+         */
+        public static final int activity_horizontal_margin=0x7f080030;
+        public static final int activity_vertical_margin=0x7f080031;
+        /**  The platform's desired fixed height for a dialog along the major axis
+         (the screen is in portrait). This may be either a fraction or a dimension.
+ The platform's desired fixed height for a dialog along the major axis
+         (the screen is in portrait). This may be either a fraction or a dimension.
+ The platform's desired fixed height for a dialog along the major axis
+         (the screen is in portrait). This may be either a fraction or a dimension.
+         */
+        public static final int dialog_fixed_height_major=0x7f08000e;
+        /**  The platform's desired fixed height for a dialog along the minor axis
+         (the screen is in landscape). This may be either a fraction or a dimension.
+ The platform's desired fixed height for a dialog along the minor axis
+         (the screen is in landscape). This may be either a fraction or a dimension.
+ The platform's desired fixed height for a dialog along the minor axis
+         (the screen is in landscape). This may be either a fraction or a dimension.
+         */
+        public static final int dialog_fixed_height_minor=0x7f08000f;
+        /**  The platform's desired fixed width for a dialog along the major axis
+         (the screen is in landscape). This may be either a fraction or a dimension.
+ The platform's desired fixed width for a dialog along the major axis
+         (the screen is in landscape). This may be either a fraction or a dimension.
+ The platform's desired fixed width for a dialog along the major axis
+         (the screen is in landscape). This may be either a fraction or a dimension.
+         */
+        public static final int dialog_fixed_width_major=0x7f08000c;
+        /**  The platform's desired fixed width for a dialog along the minor axis
+         (the screen is in portrait). This may be either a fraction or a dimension.
+ The platform's desired fixed width for a dialog along the minor axis
+         (the screen is in portrait). This may be either a fraction or a dimension.
+ The platform's desired fixed width for a dialog along the minor axis
+         (the screen is in portrait). This may be either a fraction or a dimension.
+         */
+        public static final int dialog_fixed_width_minor=0x7f08000d;
+        public static final int disabled_alpha_material_dark=0x7f080001;
+        public static final int disabled_alpha_material_light=0x7f080000;
+    }
+    public static final class drawable {
+        public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
+        public static final int abc_btn_check_material=0x7f020001;
+        public static final int abc_btn_check_to_on_mtrl_000=0x7f020002;
+        public static final int abc_btn_check_to_on_mtrl_015=0x7f020003;
+        public static final int abc_btn_default_mtrl_shape=0x7f020004;
+        public static final int abc_btn_radio_material=0x7f020005;
+        public static final int abc_btn_radio_to_on_mtrl_000=0x7f020006;
+        public static final int abc_btn_radio_to_on_mtrl_015=0x7f020007;
+        public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f020008;
+        public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f020009;
+        public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000a;
+        public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000b;
+        public static final int abc_cab_background_internal_bg=0x7f02000c;
+        public static final int abc_cab_background_top_material=0x7f02000d;
+        public static final int abc_cab_background_top_mtrl_alpha=0x7f02000e;
+        public static final int abc_edit_text_material=0x7f02000f;
+        public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020010;
+        public static final int abc_ic_clear_mtrl_alpha=0x7f020011;
+        public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020012;
+        public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020013;
+        public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020014;
+        public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020015;
+        public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f020016;
+        public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f020017;
+        public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f020018;
+        public static final int abc_ic_menu_share_mtrl_alpha=0x7f020019;
+        public static final int abc_ic_search_api_mtrl_alpha=0x7f02001a;
+        public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f02001b;
+        public static final int abc_item_background_holo_dark=0x7f02001c;
+        public static final int abc_item_background_holo_light=0x7f02001d;
+        public static final int abc_list_divider_mtrl_alpha=0x7f02001e;
+        public static final int abc_list_focused_holo=0x7f02001f;
+        public static final int abc_list_longpressed_holo=0x7f020020;
+        public static final int abc_list_pressed_holo_dark=0x7f020021;
+        public static final int abc_list_pressed_holo_light=0x7f020022;
+        public static final int abc_list_selector_background_transition_holo_dark=0x7f020023;
+        public static final int abc_list_selector_background_transition_holo_light=0x7f020024;
+        public static final int abc_list_selector_disabled_holo_dark=0x7f020025;
+        public static final int abc_list_selector_disabled_holo_light=0x7f020026;
+        public static final int abc_list_selector_holo_dark=0x7f020027;
+        public static final int abc_list_selector_holo_light=0x7f020028;
+        public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020029;
+        public static final int abc_popup_background_mtrl_mult=0x7f02002a;
+        public static final int abc_ratingbar_full_material=0x7f02002b;
+        public static final int abc_spinner_mtrl_am_alpha=0x7f02002c;
+        public static final int abc_spinner_textfield_background_material=0x7f02002d;
+        public static final int abc_switch_thumb_material=0x7f02002e;
+        public static final int abc_switch_track_mtrl_alpha=0x7f02002f;
+        public static final int abc_tab_indicator_material=0x7f020030;
+        public static final int abc_tab_indicator_mtrl_alpha=0x7f020031;
+        public static final int abc_textfield_activated_mtrl_alpha=0x7f020032;
+        public static final int abc_textfield_default_mtrl_alpha=0x7f020033;
+        public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020034;
+        public static final int abc_textfield_search_default_mtrl_alpha=0x7f020035;
+        public static final int abc_textfield_search_material=0x7f020036;
+        public static final int green_btn=0x7f020037;
+        public static final int ic_launcher=0x7f020038;
+        public static final int ic_menu_refresh=0x7f020039;
+        public static final int ic_menu_settings=0x7f02003a;
+        public static final int red_btn=0x7f02003b;
+        public static final int software=0x7f02003c;
+    }
+    public static final class id {
+        public static final int action_bar=0x7f0a0031;
+        public static final int action_bar_activity_content=0x7f0a0003;
+        public static final int action_bar_container=0x7f0a0030;
+        public static final int action_bar_root=0x7f0a002c;
+        public static final int action_bar_spinner=0x7f0a0002;
+        public static final int action_bar_subtitle=0x7f0a001f;
+        public static final int action_bar_title=0x7f0a001e;
+        public static final int action_context_bar=0x7f0a0032;
+        public static final int action_menu_divider=0x7f0a0005;
+        public static final int action_menu_presenter=0x7f0a0006;
+        public static final int action_mode_bar=0x7f0a002e;
+        public static final int action_mode_bar_stub=0x7f0a002d;
+        public static final int action_mode_close_button=0x7f0a0020;
+        public static final int action_refresh=0x7f0a0049;
+        public static final int action_settings=0x7f0a0048;
+        public static final int activity_chooser_view_content=0x7f0a0021;
+        public static final int always=0x7f0a0014;
+        public static final int beginning=0x7f0a001b;
+        public static final int checkbox=0x7f0a0029;
+        public static final int collapseActionView=0x7f0a0015;
+        public static final int decor_content_parent=0x7f0a002f;
+        public static final int default_activity_button=0x7f0a0024;
+        public static final int dialog=0x7f0a0019;
+        public static final int disableHome=0x7f0a000d;
+        public static final int dropdown=0x7f0a001a;
+        public static final int edit_query=0x7f0a0033;
+        public static final int end=0x7f0a001c;
+        public static final int expand_activities_button=0x7f0a0022;
+        public static final int expanded_menu=0x7f0a0028;
+        public static final int home=0x7f0a0000;
+        public static final int homeAsUp=0x7f0a000e;
+        public static final int icon=0x7f0a0026;
+        public static final int ifRoom=0x7f0a0016;
+        public static final int image=0x7f0a0023;
+        public static final int last_refresh_label=0x7f0a0046;
+        public static final int last_refresh_value=0x7f0a0047;
+        public static final int last_status_change_label=0x7f0a0044;
+        public static final int last_status_change_value=0x7f0a0045;
+        public static final int listMode=0x7f0a000a;
+        public static final int list_item=0x7f0a0025;
+        public static final int middle=0x7f0a001d;
+        public static final int never=0x7f0a0017;
+        public static final int none=0x7f0a000f;
+        public static final int normal=0x7f0a000b;
+        public static final int progress_circular=0x7f0a0007;
+        public static final int progress_horizontal=0x7f0a0008;
+        public static final int radio=0x7f0a002b;
+        public static final int search_badge=0x7f0a0035;
+        public static final int search_bar=0x7f0a0034;
+        public static final int search_button=0x7f0a0036;
+        public static final int search_close_btn=0x7f0a003b;
+        public static final int search_edit_frame=0x7f0a0037;
+        public static final int search_go_btn=0x7f0a003d;
+        public static final int search_mag_icon=0x7f0a0038;
+        public static final int search_plate=0x7f0a0039;
+        public static final int search_src_text=0x7f0a003a;
+        public static final int search_voice_btn=0x7f0a003e;
+        public static final int server_label=0x7f0a0040;
+        public static final int server_value=0x7f0a0041;
+        public static final int shortcut=0x7f0a002a;
+        public static final int showCustom=0x7f0a0010;
+        public static final int showHome=0x7f0a0011;
+        public static final int showTitle=0x7f0a0012;
+        public static final int split_action_bar=0x7f0a0004;
+        public static final int status_btn=0x7f0a003f;
+        public static final int status_label=0x7f0a0042;
+        public static final int status_value=0x7f0a0043;
+        public static final int submit_area=0x7f0a003c;
+        public static final int tabMode=0x7f0a000c;
+        public static final int title=0x7f0a0027;
+        public static final int up=0x7f0a0001;
+        public static final int useLogo=0x7f0a0013;
+        public static final int withText=0x7f0a0018;
+        public static final int wrap_content=0x7f0a0009;
+    }
+    public static final class integer {
+        public static final int abc_config_activityDefaultDur=0x7f090001;
+        /**  The duration (in milliseconds) of the activity open/close and fragment open/close animations. 
+         */
+        public static final int abc_config_activityShortDur=0x7f090000;
+        /**  The maximum number of action buttons that should be permitted within
+         an action bar/action mode. This will be used to determine how many
+         showAsAction="ifRoom" items can fit. "always" items can override this. 
+ The maximum number of action buttons that should be permitted within
+     an action bar/action mode. This will be used to determine how many
+     showAsAction="ifRoom" items can fit. "always" items can override this. 
+ The maximum number of action buttons that should be permitted within
+         an action bar/action mode. This will be used to determine how many
+         showAsAction="ifRoom" items can fit. "always" items can override this. 
+ The maximum number of action buttons that should be permitted within
+         an action bar/action mode. This will be used to determine how many
+         showAsAction="ifRoom" items can fit. "always" items can override this. 
+ The maximum number of action buttons that should be permitted within
+         an action bar/action mode. This will be used to determine how many
+         showAsAction="ifRoom" items can fit. "always" items can override this. 
+ The maximum number of action buttons that should be permitted within
+         an action bar/action mode. This will be used to determine how many
+         showAsAction="ifRoom" items can fit. "always" items can override this. 
+ The maximum number of action buttons that should be permitted within
+         an action bar/action mode. This will be used to determine how many
+         showAsAction="ifRoom" items can fit. "always" items can override this. 
+         */
+        public static final int abc_max_action_buttons=0x7f090002;
+    }
+    public static final class layout {
+        public static final int abc_action_bar_title_item=0x7f030000;
+        public static final int abc_action_bar_up_container=0x7f030001;
+        public static final int abc_action_bar_view_list_nav_layout=0x7f030002;
+        public static final int abc_action_menu_item_layout=0x7f030003;
+        public static final int abc_action_menu_layout=0x7f030004;
+        public static final int abc_action_mode_bar=0x7f030005;
+        public static final int abc_action_mode_close_item_material=0x7f030006;
+        public static final int abc_activity_chooser_view=0x7f030007;
+        public static final int abc_activity_chooser_view_list_item=0x7f030008;
+        public static final int abc_expanded_menu_layout=0x7f030009;
+        public static final int abc_list_menu_item_checkbox=0x7f03000a;
+        public static final int abc_list_menu_item_icon=0x7f03000b;
+        public static final int abc_list_menu_item_layout=0x7f03000c;
+        public static final int abc_list_menu_item_radio=0x7f03000d;
+        public static final int abc_popup_menu_item_layout=0x7f03000e;
+        public static final int abc_screen_content_include=0x7f03000f;
+        public static final int abc_screen_simple=0x7f030010;
+        public static final int abc_screen_simple_overlay_action_mode=0x7f030011;
+        public static final int abc_screen_toolbar=0x7f030012;
+        public static final int abc_search_dropdown_item_icons_2line=0x7f030013;
+        public static final int abc_search_view=0x7f030014;
+        public static final int abc_simple_dropdown_hint=0x7f030015;
+        public static final int activity_main=0x7f030016;
+        public static final int support_simple_spinner_dropdown_item=0x7f030017;
+    }
+    public static final class menu {
+        public static final int main=0x7f0e0000;
+    }
+    public static final class string {
+        /**  Content description for the action bar "home" affordance. [CHAR LIMIT=NONE] 
+         */
+        public static final int abc_action_bar_home_description=0x7f0b0001;
+        /**  Formatting string for describing the action bar's title/home/up affordance.
+         This is a single tappable "button" that includes the app icon, the Up indicator
+         (usually a "<" chevron) and the window title text.
+         %1$s is the title. %2$s is the description of what tapping/clicking the whole
+         thing is going to do. 
+         */
+        public static final int abc_action_bar_home_description_format=0x7f0b0005;
+        /**  Just like action_bar_home_description_format, but this one will be used
+         if the window is also providing subtitle text.
+         %1$s is the title. %2$s is the subtitle. %3$s is the description of what
+         tapping/clicking the whole thing is going to do. 
+         */
+        public static final int abc_action_bar_home_subtitle_description_format=0x7f0b0006;
+        /**  Content description for the action bar "up" affordance. [CHAR LIMIT=NONE] 
+         */
+        public static final int abc_action_bar_up_description=0x7f0b0002;
+        /**  Content description for the action menu overflow button. [CHAR LIMIT=NONE] 
+         */
+        public static final int abc_action_menu_overflow_description=0x7f0b0003;
+        /**  Label for the "Done" button on the far left of action mode toolbars. 
+         */
+        public static final int abc_action_mode_done=0x7f0b0000;
+        /**  Title for a button to expand the list of activities in ActivityChooserView [CHAR LIMIT=25] 
+         */
+        public static final int abc_activity_chooser_view_see_all=0x7f0b000d;
+        /**  ActivityChooserView - accessibility support 
+ Description of the shwoing of a popup window with activities to choose from. [CHAR LIMIT=NONE] 
+         */
+        public static final int abc_activitychooserview_choose_application=0x7f0b000c;
+        /**  SearchView accessibility description for clear button [CHAR LIMIT=NONE] 
+         */
+        public static final int abc_searchview_description_clear=0x7f0b0009;
+        /**  SearchView accessibility description for search text field [CHAR LIMIT=NONE] 
+         */
+        public static final int abc_searchview_description_query=0x7f0b0008;
+        /**  SearchView accessibility description for search button [CHAR LIMIT=NONE] 
+         */
+        public static final int abc_searchview_description_search=0x7f0b0007;
+        /**  SearchView accessibility description for submit button [CHAR LIMIT=NONE] 
+         */
+        public static final int abc_searchview_description_submit=0x7f0b000a;
+        /**  SearchView accessibility description for voice button [CHAR LIMIT=NONE] 
+         */
+        public static final int abc_searchview_description_voice=0x7f0b000b;
+        /**  Description of the choose target button in a ShareActionProvider (share UI). [CHAR LIMIT=NONE] 
+         */
+        public static final int abc_shareactionprovider_share_with=0x7f0b000f;
+        /**  Description of a share target (both in the list of such or the default share button) in a ShareActionProvider (share UI). [CHAR LIMIT=NONE] 
+         */
+        public static final int abc_shareactionprovider_share_with_application=0x7f0b000e;
+        /**  Content description for the Toolbar icon used to collapse an expanded action mode. [CHAR LIMIT=NONE] 
+         */
+        public static final int abc_toolbar_collapse_description=0x7f0b0004;
+        public static final int app_name=0x7f0b0023;
+        public static final int app_update_new_version=0x7f0b002a;
+        public static final int app_update_notify_title=0x7f0b0029;
+        public static final int close=0x7f0b0025;
+        public static final int key_last_refresh=0x7f0b0015;
+        public static final int key_refresh_service=0x7f0b0010;
+        public static final int key_refresh_status_time=0x7f0b0011;
+        public static final int key_server_name=0x7f0b0012;
+        public static final int key_states=0x7f0b0013;
+        public static final int key_status=0x7f0b0014;
+        public static final int key_status_changed=0x7f0b0016;
+        public static final int key_update_service=0x7f0b0017;
+        public static final int mai=0x7f0b0026;
+        public static final int menu_action_refresh=0x7f0b0028;
+        public static final int menu_action_settings=0x7f0b0027;
+        public static final int open=0x7f0b0024;
+        public static final int prefs_app_category=0x7f0b001e;
+        public static final int prefs_refresh_category=0x7f0b0018;
+        public static final int prefs_refresh_service_summary=0x7f0b001a;
+        public static final int prefs_refresh_service_title=0x7f0b0019;
+        public static final int prefs_refresh_status_time_dialogTitle=0x7f0b001c;
+        public static final int prefs_refresh_status_time_summary=0x7f0b001d;
+        public static final int prefs_refresh_status_time_title=0x7f0b001b;
+        public static final int prefs_server_name_summary=0x7f0b0020;
+        public static final int prefs_server_name_title=0x7f0b001f;
+        public static final int prefs_update_summary=0x7f0b0022;
+        public static final int prefs_update_title=0x7f0b0021;
+    }
+    public static final class style {
+        public static final int Animation_AppCompat_DropDownUp=0x7f0c00cf;
+        /** 
+        Base application theme, dependent on API level. This theme is replaced
+        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
+    
+
+            Theme customizations available in newer API levels can go in
+            res/values-vXX/styles.xml, while customizations related to
+            backward-compatibility can go here.
+        
+
+        Base application theme for API 11+. This theme completely replaces
+        AppBaseTheme from res/values/styles.xml on API 11+ devices.
+    
+ API 11 theme customizations can go here. 
+
+        Base application theme for API 14+. This theme completely replaces
+        AppBaseTheme from BOTH res/values/styles.xml and
+        res/values-v11/styles.xml on API 14+ devices.
+    
+ API 14 theme customizations can go here. 
+         */
+        public static final int AppBaseTheme=0x7f0c00f8;
+        /**  Application theme. 
+ All customizations that are NOT specific to a particular API-level can go here. 
+         */
+        public static final int AppTheme=0x7f0c00f9;
+        public static final int Base_Animation_AppCompat_DropDownUp=0x7f0c00df;
+        public static final int Base_TextAppearance_AppCompat=0x7f0c00a3;
+        public static final int Base_TextAppearance_AppCompat_Body1=0x7f0c00ae;
+        public static final int Base_TextAppearance_AppCompat_Body2=0x7f0c00ad;
+        public static final int Base_TextAppearance_AppCompat_Button=0x7f0c00b1;
+        public static final int Base_TextAppearance_AppCompat_Caption=0x7f0c00af;
+        public static final int Base_TextAppearance_AppCompat_Display1=0x7f0c00a7;
+        public static final int Base_TextAppearance_AppCompat_Display2=0x7f0c00a6;
+        public static final int Base_TextAppearance_AppCompat_Display3=0x7f0c00a5;
+        public static final int Base_TextAppearance_AppCompat_Display4=0x7f0c00a4;
+        public static final int Base_TextAppearance_AppCompat_Headline=0x7f0c00a8;
+        /**  Deprecated text styles 
+ Deprecated text styles 
+ Now deprecated styles 
+         */
+        public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0c00b2;
+        public static final int Base_TextAppearance_AppCompat_Large=0x7f0c00b3;
+        public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0c00b4;
+        public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c008c;
+        public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c008d;
+        public static final int Base_TextAppearance_AppCompat_Medium=0x7f0c00b5;
+        public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0c00b6;
+        public static final int Base_TextAppearance_AppCompat_Menu=0x7f0c00b0;
+        public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0c008e;
+        public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c0090;
+        /**  Search View result styles 
+         */
+        public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0c008f;
+        public static final int Base_TextAppearance_AppCompat_Small=0x7f0c00b7;
+        public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0c00b8;
+        public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0c00ab;
+        public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0c00ac;
+        public static final int Base_TextAppearance_AppCompat_Title=0x7f0c00a9;
+        public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0c00aa;
+        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c0076;
+        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c0078;
+        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c007a;
+        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c0077;
+        public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c0079;
+        public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c0075;
+        public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c0074;
+        public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c0082;
+        public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c008a;
+        public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c008b;
+        public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0c009d;
+        public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c00a2;
+        public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c0083;
+        public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c0097;
+        public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c0096;
+        public static final int Base_Theme_AppCompat=0x7f0c00db;
+        /**  Menu/item attributes 
+         */
+        public static final int Base_Theme_AppCompat_CompactMenu=0x7f0c00de;
+        public static final int Base_Theme_AppCompat_Dialog=0x7f0c00e1;
+        public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0c00e3;
+        /**  We're not large, so redirect to Theme.AppCompat 
+         */
+        public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0c00e5;
+        public static final int Base_Theme_AppCompat_Light=0x7f0c00dc;
+        public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0c00dd;
+        public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0c00e2;
+        public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0c00e4;
+        public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0c00e6;
+        /**  Overlay themes 
+         */
+        public static final int Base_ThemeOverlay_AppCompat=0x7f0c00e7;
+        public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0c00ea;
+        public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0c00e9;
+        public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c00eb;
+        public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0c00e8;
+        public static final int Base_V11_Theme_AppCompat=0x7f0c00ec;
+        public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0c00ee;
+        public static final int Base_V11_Theme_AppCompat_Light=0x7f0c00ed;
+        public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0c00ef;
+        public static final int Base_V14_Theme_AppCompat=0x7f0c00f0;
+        public static final int Base_V14_Theme_AppCompat_Dialog=0x7f0c00f2;
+        public static final int Base_V14_Theme_AppCompat_Light=0x7f0c00f1;
+        public static final int Base_V14_Theme_AppCompat_Light_Dialog=0x7f0c00f3;
+        public static final int Base_V21_Theme_AppCompat=0x7f0c00f4;
+        public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0c00f6;
+        public static final int Base_V21_Theme_AppCompat_Light=0x7f0c00f5;
+        public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0c00f7;
+        /**  Base platform-dependent theme providing an action bar in a dark-themed activity. 
+         */
+        public static final int Base_V7_Theme_AppCompat=0x7f0c00d9;
+        public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0c00e0;
+        /**  Base platform-dependent theme providing an action bar in a light-themed activity. 
+         */
+        public static final int Base_V7_Theme_AppCompat_Light=0x7f0c00da;
+        public static final int Base_Widget_AppCompat_ActionBar=0x7f0c0065;
+        public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0c0067;
+        public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0c006c;
+        public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0c0070;
+        public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0c006e;
+        /**  Action Button Styles 
+         */
+        public static final int Base_Widget_AppCompat_ActionButton=0x7f0c0069;
+        public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0c006a;
+        public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0c006b;
+        public static final int Base_Widget_AppCompat_ActionMode=0x7f0c0073;
+        public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0c0092;
+        public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0c0091;
+        /**  Bordered ink button 
+         */
+        public static final int Base_Widget_AppCompat_Button=0x7f0c009f;
+        /**  Small bordered ink button 
+         */
+        public static final int Base_Widget_AppCompat_Button_Small=0x7f0c00a0;
+        public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0c009c;
+        /**  contains values used in all dpis except hdpi and xxhdpi 
+         */
+        public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0c009b;
+        /**  contains values used in all dpis 
+         */
+        public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0c009a;
+        public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0c0080;
+        public static final int Base_Widget_AppCompat_EditText=0x7f0c0099;
+        public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0c0066;
+        public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0c0068;
+        public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c006d;
+        public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0c0071;
+        public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c0072;
+        public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0c006f;
+        public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0c0089;
+        public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c0087;
+        /**  Popup Menu 
+         */
+        public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0c0085;
+        /**  Spinner Widgets 
+         */
+        public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0c0081;
+        public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0c0084;
+        public static final int Base_Widget_AppCompat_PopupMenu=0x7f0c0088;
+        public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0c0086;
+        public static final int Base_Widget_AppCompat_PopupWindow=0x7f0c0093;
+        public static final int Base_Widget_AppCompat_ProgressBar=0x7f0c007c;
+        /**  Progress Bar 
+ Progress Bar 
+         */
+        public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0c007b;
+        public static final int Base_Widget_AppCompat_RatingBar=0x7f0c009e;
+        public static final int Base_Widget_AppCompat_SearchView=0x7f0c0098;
+        /**  Spinner Widgets 
+         */
+        public static final int Base_Widget_AppCompat_Spinner=0x7f0c007d;
+        public static final int Base_Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0c007f;
+        public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0c007e;
+        public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0c00a1;
+        public static final int Base_Widget_AppCompat_Toolbar=0x7f0c0094;
+        /** 
+        Widget.AppCompat.Toolbar style is purposely ommitted. This is because the support
+        Toolbar implementation is used on ALL platforms and relies on the unbundled attrs.
+        The supporting Toolbar styles below only use basic attrs so work fine.
+    
+         */
+        public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c0095;
+        public static final int Platform_AppCompat=0x7f0c00d5;
+        public static final int Platform_AppCompat_Dialog=0x7f0c00d7;
+        public static final int Platform_AppCompat_Light=0x7f0c00d6;
+        public static final int Platform_AppCompat_Light_Dialog=0x7f0c00d8;
+        public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0c00bf;
+        public static final int RtlOverlay_Widget_AppCompat_ActionButton_CloseMode=0x7f0c00c0;
+        public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f0c00c1;
+        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0c00c2;
+        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0c00c3;
+        public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0c00c4;
+        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0c00ba;
+        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0c00bc;
+        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0c00bd;
+        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0c00bb;
+        public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0c00be;
+        public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0c00b9;
+        /**  Text styles 
+         */
+        public static final int TextAppearance_AppCompat=0x7f0c003b;
+        public static final int TextAppearance_AppCompat_Body1=0x7f0c0046;
+        public static final int TextAppearance_AppCompat_Body2=0x7f0c0045;
+        public static final int TextAppearance_AppCompat_Button=0x7f0c0050;
+        public static final int TextAppearance_AppCompat_Caption=0x7f0c0047;
+        public static final int TextAppearance_AppCompat_Display1=0x7f0c003f;
+        public static final int TextAppearance_AppCompat_Display2=0x7f0c003e;
+        public static final int TextAppearance_AppCompat_Display3=0x7f0c003d;
+        public static final int TextAppearance_AppCompat_Display4=0x7f0c003c;
+        public static final int TextAppearance_AppCompat_Headline=0x7f0c0040;
+        public static final int TextAppearance_AppCompat_Inverse=0x7f0c0049;
+        public static final int TextAppearance_AppCompat_Large=0x7f0c004a;
+        public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0c004b;
+        public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0c0057;
+        public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0c0056;
+        public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c002a;
+        public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c002b;
+        public static final int TextAppearance_AppCompat_Medium=0x7f0c004c;
+        public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0c004d;
+        public static final int TextAppearance_AppCompat_Menu=0x7f0c0048;
+        public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c002d;
+        public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0c002c;
+        public static final int TextAppearance_AppCompat_Small=0x7f0c004e;
+        public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0c004f;
+        public static final int TextAppearance_AppCompat_Subhead=0x7f0c0043;
+        public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0c0044;
+        public static final int TextAppearance_AppCompat_Title=0x7f0c0041;
+        public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0c0042;
+        public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c0015;
+        public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c0005;
+        public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c0007;
+        public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c0004;
+        public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c0006;
+        public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c0018;
+        public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0c005a;
+        public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c0017;
+        public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0c0059;
+        public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c0019;
+        public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0028;
+        public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0029;
+        public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0c0051;
+        public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c0052;
+        public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c0020;
+        public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c003a;
+        public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c0039;
+        /**  Themes in the "Theme.AppCompat" family will contain an action bar by default.
+         If Holo themes are available on the current platform version they will be used.
+         A limited Holo-styled action bar will be provided on platform versions older
+         than 3.0. (API 11)
+
+         These theme declarations contain any version-independent specification. Items
+         that need to vary based on platform version should be defined in the corresponding
+         "Theme.Base" theme. 
+ Platform-independent theme providing an action bar in a dark-themed activity. 
+         */
+        public static final int Theme_AppCompat=0x7f0c00c5;
+        /**  Menu/item attributes 
+         */
+        public static final int Theme_AppCompat_CompactMenu=0x7f0c00ce;
+        public static final int Theme_AppCompat_Dialog=0x7f0c00cc;
+        public static final int Theme_AppCompat_DialogWhenLarge=0x7f0c00ca;
+        /**  Platform-independent theme providing an action bar in a light-themed activity. 
+         */
+        public static final int Theme_AppCompat_Light=0x7f0c00c6;
+        /**  Platform-independent theme providing an action bar in a dark-themed activity. 
+         */
+        public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0c00c7;
+        public static final int Theme_AppCompat_Light_Dialog=0x7f0c00cd;
+        public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0c00cb;
+        public static final int Theme_AppCompat_Light_NoActionBar=0x7f0c00c9;
+        public static final int Theme_AppCompat_NoActionBar=0x7f0c00c8;
+        public static final int ThemeOverlay_AppCompat=0x7f0c00d0;
+        /**  Theme overlay that replaces the normal control color, which by default is the same as the
+         secondary text color, with the primary text color. 
+         */
+        public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0c00d3;
+        /**  Theme overlay that replaces colors with their dark versions but preserves
+         the value of colorAccent, colorPrimary and its variants. 
+         */
+        public static final int ThemeOverlay_AppCompat_Dark=0x7f0c00d2;
+        /**  Theme overlay that replaces colors with their dark versions and replaces the normal
+         control color, which by default is the same as the secondary text color, with the primary
+         text color. 
+         */
+        public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c00d4;
+        /**  Theme overlay that replaces colors with their light versions but preserves
+         the value of colorAccent, colorPrimary and its variants. 
+         */
+        public static final int ThemeOverlay_AppCompat_Light=0x7f0c00d1;
+        /**  Styles in here can be extended for customisation in your application. Each utilises
+         one of the.styles. If Holo themes are available on the current platform version
+         they will be used instead of the compat styles. 
+         */
+        public static final int Widget_AppCompat_ActionBar=0x7f0c0000;
+        public static final int Widget_AppCompat_ActionBar_Solid=0x7f0c0002;
+        public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0c000d;
+        public static final int Widget_AppCompat_ActionBar_TabText=0x7f0c0011;
+        public static final int Widget_AppCompat_ActionBar_TabView=0x7f0c000f;
+        public static final int Widget_AppCompat_ActionButton=0x7f0c000a;
+        /**  This style has an extra indirection to properly set RTL attributes. See styles_rtl.xml 
+         */
+        public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0c000b;
+        public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0c000c;
+        public static final int Widget_AppCompat_ActionMode=0x7f0c0016;
+        public static final int Widget_AppCompat_ActivityChooserView=0x7f0c002f;
+        public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0c002e;
+        public static final int Widget_AppCompat_Button=0x7f0c0034;
+        public static final int Widget_AppCompat_Button_Small=0x7f0c0035;
+        public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0c0032;
+        public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0c0012;
+        /**  This style has an extra indirection to properly set RTL attributes. See styles_rtl.xml 
+         */
+        public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0c001e;
+        public static final int Widget_AppCompat_EditText=0x7f0c0031;
+        public static final int Widget_AppCompat_Light_ActionBar=0x7f0c0001;
+        public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0c0003;
+        /** 
+         The following themes are deprecated.
+    
+         */
+        public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0c0053;
+        public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c000e;
+        public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0c0054;
+        public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0c0013;
+        public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c0014;
+        public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0010;
+        public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0c0055;
+        public static final int Widget_AppCompat_Light_ActionButton=0x7f0c005d;
+        public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0c005f;
+        public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0c005e;
+        public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0c0058;
+        public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0c0064;
+        public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0c0063;
+        public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0c005b;
+        public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0c0062;
+        public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0c0061;
+        public static final int Widget_AppCompat_Light_PopupMenu=0x7f0c0025;
+        public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c0023;
+        public static final int Widget_AppCompat_Light_SearchView=0x7f0c005c;
+        public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0c0060;
+        public static final int Widget_AppCompat_ListPopupWindow=0x7f0c0021;
+        public static final int Widget_AppCompat_ListView_DropDown=0x7f0c001f;
+        public static final int Widget_AppCompat_ListView_Menu=0x7f0c0026;
+        public static final int Widget_AppCompat_PopupMenu=0x7f0c0024;
+        public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0c0022;
+        public static final int Widget_AppCompat_PopupWindow=0x7f0c0027;
+        public static final int Widget_AppCompat_ProgressBar=0x7f0c0009;
+        public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0c0008;
+        public static final int Widget_AppCompat_RatingBar=0x7f0c0033;
+        public static final int Widget_AppCompat_SearchView=0x7f0c0030;
+        public static final int Widget_AppCompat_Spinner=0x7f0c001a;
+        public static final int Widget_AppCompat_Spinner_DropDown=0x7f0c001c;
+        public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0c001d;
+        public static final int Widget_AppCompat_Spinner_Underlined=0x7f0c001b;
+        public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0c0036;
+        /**  Toolbar 
+         */
+        public static final int Widget_AppCompat_Toolbar=0x7f0c0037;
+        public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c0038;
+    }
+    public static final class xml {
+        public static final int prefs=0x7f050000;
+    }
+    public static final class styleable {
+        /**  ============================================ 
+ Attributes used to style the Action Bar.
+         These should be set on your theme; the default actionBarStyle will
+         propagate them to the correct elements as needed.
+
+         Please Note: when overriding attributes for an ActionBar style
+         you must specify each attribute twice: once with the "android:"
+         namespace prefix and once without. 
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #ActionBar_background net.indivia.hacklabbo.statusreader:background}</code></td><td> Specifies a background drawable for the action bar.</td></tr>
+           <tr><td><code>{@link #ActionBar_backgroundSplit net.indivia.hacklabbo.statusreader:backgroundSplit}</code></td><td> Specifies a background drawable for the bottom component of a split action bar.</td></tr>
+           <tr><td><code>{@link #ActionBar_backgroundStacked net.indivia.hacklabbo.statusreader:backgroundStacked}</code></td><td> Specifies a background drawable for a second stacked row of the action bar.</td></tr>
+           <tr><td><code>{@link #ActionBar_contentInsetEnd net.indivia.hacklabbo.statusreader:contentInsetEnd}</code></td><td> Minimum inset for content views within a bar.</td></tr>
+           <tr><td><code>{@link #ActionBar_contentInsetLeft net.indivia.hacklabbo.statusreader:contentInsetLeft}</code></td><td> Minimum inset for content views within a bar.</td></tr>
+           <tr><td><code>{@link #ActionBar_contentInsetRight net.indivia.hacklabbo.statusreader:contentInsetRight}</code></td><td> Minimum inset for content views within a bar.</td></tr>
+           <tr><td><code>{@link #ActionBar_contentInsetStart net.indivia.hacklabbo.statusreader:contentInsetStart}</code></td><td> Minimum inset for content views within a bar.</td></tr>
+           <tr><td><code>{@link #ActionBar_customNavigationLayout net.indivia.hacklabbo.statusreader:customNavigationLayout}</code></td><td> Specifies a layout for custom navigation.</td></tr>
+           <tr><td><code>{@link #ActionBar_displayOptions net.indivia.hacklabbo.statusreader:displayOptions}</code></td><td> Options affecting how the action bar is displayed.</td></tr>
+           <tr><td><code>{@link #ActionBar_divider net.indivia.hacklabbo.statusreader:divider}</code></td><td> Specifies the drawable used for item dividers.</td></tr>
+           <tr><td><code>{@link #ActionBar_elevation net.indivia.hacklabbo.statusreader:elevation}</code></td><td> Elevation for the action bar itself </td></tr>
+           <tr><td><code>{@link #ActionBar_height net.indivia.hacklabbo.statusreader:height}</code></td><td> Specifies a fixed height.</td></tr>
+           <tr><td><code>{@link #ActionBar_hideOnContentScroll net.indivia.hacklabbo.statusreader:hideOnContentScroll}</code></td><td> Set true to hide the action bar on a vertical nested scroll of content.</td></tr>
+           <tr><td><code>{@link #ActionBar_homeAsUpIndicator net.indivia.hacklabbo.statusreader:homeAsUpIndicator}</code></td><td> Up navigation glyph </td></tr>
+           <tr><td><code>{@link #ActionBar_homeLayout net.indivia.hacklabbo.statusreader:homeLayout}</code></td><td> Specifies a layout to use for the "home" section of the action bar.</td></tr>
+           <tr><td><code>{@link #ActionBar_icon net.indivia.hacklabbo.statusreader:icon}</code></td><td> Specifies the drawable used for the application icon.</td></tr>
+           <tr><td><code>{@link #ActionBar_indeterminateProgressStyle net.indivia.hacklabbo.statusreader:indeterminateProgressStyle}</code></td><td> Specifies a style resource to use for an indeterminate progress spinner.</td></tr>
+           <tr><td><code>{@link #ActionBar_itemPadding net.indivia.hacklabbo.statusreader:itemPadding}</code></td><td> Specifies padding that should be applied to the left and right sides of
+             system-provided items in the bar.</td></tr>
+           <tr><td><code>{@link #ActionBar_logo net.indivia.hacklabbo.statusreader:logo}</code></td><td> Specifies the drawable used for the application logo.</td></tr>
+           <tr><td><code>{@link #ActionBar_navigationMode net.indivia.hacklabbo.statusreader:navigationMode}</code></td><td> The type of navigation to use.</td></tr>
+           <tr><td><code>{@link #ActionBar_popupTheme net.indivia.hacklabbo.statusreader:popupTheme}</code></td><td> Reference to a theme that should be used to inflate popups
+             shown by widgets in the action bar.</td></tr>
+           <tr><td><code>{@link #ActionBar_progressBarPadding net.indivia.hacklabbo.statusreader:progressBarPadding}</code></td><td> Specifies the horizontal padding on either end for an embedded progress bar.</td></tr>
+           <tr><td><code>{@link #ActionBar_progressBarStyle net.indivia.hacklabbo.statusreader:progressBarStyle}</code></td><td> Specifies a style resource to use for an embedded progress bar.</td></tr>
+           <tr><td><code>{@link #ActionBar_subtitle net.indivia.hacklabbo.statusreader:subtitle}</code></td><td> Specifies subtitle text used for navigationMode="normal" </td></tr>
+           <tr><td><code>{@link #ActionBar_subtitleTextStyle net.indivia.hacklabbo.statusreader:subtitleTextStyle}</code></td><td> Specifies a style to use for subtitle text.</td></tr>
+           <tr><td><code>{@link #ActionBar_title net.indivia.hacklabbo.statusreader:title}</code></td><td> Specifies title text used for navigationMode="normal" </td></tr>
+           <tr><td><code>{@link #ActionBar_titleTextStyle net.indivia.hacklabbo.statusreader:titleTextStyle}</code></td><td> Specifies a style to use for title text.</td></tr>
+           </table>
+           @see #ActionBar_background
+           @see #ActionBar_backgroundSplit
+           @see #ActionBar_backgroundStacked
+           @see #ActionBar_contentInsetEnd
+           @see #ActionBar_contentInsetLeft
+           @see #ActionBar_contentInsetRight
+           @see #ActionBar_contentInsetStart
+           @see #ActionBar_customNavigationLayout
+           @see #ActionBar_displayOptions
+           @see #ActionBar_divider
+           @see #ActionBar_elevation
+           @see #ActionBar_height
+           @see #ActionBar_hideOnContentScroll
+           @see #ActionBar_homeAsUpIndicator
+           @see #ActionBar_homeLayout
+           @see #ActionBar_icon
+           @see #ActionBar_indeterminateProgressStyle
+           @see #ActionBar_itemPadding
+           @see #ActionBar_logo
+           @see #ActionBar_navigationMode
+           @see #ActionBar_popupTheme
+           @see #ActionBar_progressBarPadding
+           @see #ActionBar_progressBarStyle
+           @see #ActionBar_subtitle
+           @see #ActionBar_subtitleTextStyle
+           @see #ActionBar_title
+           @see #ActionBar_titleTextStyle
+         */
+        public static final int[] ActionBar = {
+            0x7f010000, 0x7f010001, 0x7f01002c, 0x7f010055,
+            0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059,
+            0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d,
+            0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061,
+            0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065,
+            0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069,
+            0x7f01006a, 0x7f01006b, 0x7f01006c
+        };
+        /**
+          <p>
+          @attr description
+           Specifies a background drawable for the action bar. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:background
+        */
+        public static final int ActionBar_background = 11;
+        /**
+          <p>
+          @attr description
+           Specifies a background drawable for the bottom component of a split action bar. 
+
+
+          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:backgroundSplit
+        */
+        public static final int ActionBar_backgroundSplit = 13;
+        /**
+          <p>
+          @attr description
+           Specifies a background drawable for a second stacked row of the action bar. 
+
+
+          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:backgroundStacked
+        */
+        public static final int ActionBar_backgroundStacked = 12;
+        /**
+          <p>
+          @attr description
+           Minimum inset for content views within a bar. Navigation buttons and
+             menu views are excepted. Only valid for some themes and configurations. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:contentInsetEnd
+        */
+        public static final int ActionBar_contentInsetEnd = 22;
+        /**
+          <p>
+          @attr description
+           Minimum inset for content views within a bar. Navigation buttons and
+             menu views are excepted. Only valid for some themes and configurations. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:contentInsetLeft
+        */
+        public static final int ActionBar_contentInsetLeft = 23;
+        /**
+          <p>
+          @attr description
+           Minimum inset for content views within a bar. Navigation buttons and
+             menu views are excepted. Only valid for some themes and configurations. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:contentInsetRight
+        */
+        public static final int ActionBar_contentInsetRight = 24;
+        /**
+          <p>
+          @attr description
+           Minimum inset for content views within a bar. Navigation buttons and
+             menu views are excepted. Only valid for some themes and configurations. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:contentInsetStart
+        */
+        public static final int ActionBar_contentInsetStart = 21;
+        /**
+          <p>
+          @attr description
+           Specifies a layout for custom navigation. Overrides navigationMode. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:customNavigationLayout
+        */
+        public static final int ActionBar_customNavigationLayout = 14;
+        /**
+          <p>
+          @attr description
+           Options affecting how the action bar is displayed. 
+
+
+          <p>Must be one or more (separated by '|') of the following constant values.</p>
+<table>
+<colgroup align="left" />
+<colgroup align="left" />
+<colgroup align="left" />
+<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
+<tr><td><code>none</code></td><td>0</td><td></td></tr>
+<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
+<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
+<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
+<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
+<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
+<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
+</table>
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:displayOptions
+        */
+        public static final int ActionBar_displayOptions = 4;
+        /**
+          <p>
+          @attr description
+           Specifies the drawable used for item dividers. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:divider
+        */
+        public static final int ActionBar_divider = 10;
+        /**
+          <p>
+          @attr description
+           Elevation for the action bar itself 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:elevation
+        */
+        public static final int ActionBar_elevation = 25;
+        /**
+          <p>
+          @attr description
+           Specifies a fixed height. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:height
+        */
+        public static final int ActionBar_height = 1;
+        /**
+          <p>
+          @attr description
+           Set true to hide the action bar on a vertical nested scroll of content. 
+
+
+          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:hideOnContentScroll
+        */
+        public static final int ActionBar_hideOnContentScroll = 20;
+        /**
+          <p>
+          @attr description
+           Up navigation glyph 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:homeAsUpIndicator
+        */
+        public static final int ActionBar_homeAsUpIndicator = 2;
+        /**
+          <p>
+          @attr description
+           Specifies a layout to use for the "home" section of the action bar. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:homeLayout
+        */
+        public static final int ActionBar_homeLayout = 15;
+        /**
+          <p>
+          @attr description
+           Specifies the drawable used for the application icon. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:icon
+        */
+        public static final int ActionBar_icon = 8;
+        /**
+          <p>
+          @attr description
+           Specifies a style resource to use for an indeterminate progress spinner. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:indeterminateProgressStyle
+        */
+        public static final int ActionBar_indeterminateProgressStyle = 17;
+        /**
+          <p>
+          @attr description
+           Specifies padding that should be applied to the left and right sides of
+             system-provided items in the bar. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:itemPadding
+        */
+        public static final int ActionBar_itemPadding = 19;
+        /**
+          <p>
+          @attr description
+           Specifies the drawable used for the application logo. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:logo
+        */
+        public static final int ActionBar_logo = 9;
+        /**
+          <p>
+          @attr description
+           The type of navigation to use. 
+
+
+          <p>Must be one of the following constant values.</p>
+<table>
+<colgroup align="left" />
+<colgroup align="left" />
+<colgroup align="left" />
+<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
+<tr><td><code>normal</code></td><td>0</td><td> Normal static title text </td></tr>
+<tr><td><code>listMode</code></td><td>1</td><td> The action bar will use a selection list for navigation. </td></tr>
+<tr><td><code>tabMode</code></td><td>2</td><td> The action bar will use a series of horizontal tabs for navigation. </td></tr>
+</table>
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:navigationMode
+        */
+        public static final int ActionBar_navigationMode = 3;
+        /**
+          <p>
+          @attr description
+           Reference to a theme that should be used to inflate popups
+             shown by widgets in the action bar. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:popupTheme
+        */
+        public static final int ActionBar_popupTheme = 26;
+        /**
+          <p>
+          @attr description
+           Specifies the horizontal padding on either end for an embedded progress bar. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:progressBarPadding
+        */
+        public static final int ActionBar_progressBarPadding = 18;
+        /**
+          <p>
+          @attr description
+           Specifies a style resource to use for an embedded progress bar. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:progressBarStyle
+        */
+        public static final int ActionBar_progressBarStyle = 16;
+        /**
+          <p>
+          @attr description
+           Specifies subtitle text used for navigationMode="normal" 
+
+
+          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:subtitle
+        */
+        public static final int ActionBar_subtitle = 5;
+        /**
+          <p>
+          @attr description
+           Specifies a style to use for subtitle text. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:subtitleTextStyle
+        */
+        public static final int ActionBar_subtitleTextStyle = 7;
+        /**
+          <p>
+          @attr description
+           Specifies title text used for navigationMode="normal" 
+
+
+          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:title
+        */
+        public static final int ActionBar_title = 0;
+        /**
+          <p>
+          @attr description
+           Specifies a style to use for title text. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:titleTextStyle
+        */
+        public static final int ActionBar_titleTextStyle = 6;
+        /**  Valid LayoutParams for views placed in the action bar as custom views. 
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
+           </table>
+           @see #ActionBarLayout_android_layout_gravity
+         */
+        public static final int[] ActionBarLayout = {
+            0x010100b3
+        };
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
+          attribute's value can be found in the {@link #ActionBarLayout} array.
+          @attr name android:layout_gravity
+        */
+        public static final int ActionBarLayout_android_layout_gravity = 0;
+        /** Attributes that can be used with a ActionMenuItemView.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
+           </table>
+           @see #ActionMenuItemView_android_minWidth
+         */
+        public static final int[] ActionMenuItemView = {
+            0x0101013f
+        };
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#minWidth}
+          attribute's value can be found in the {@link #ActionMenuItemView} array.
+          @attr name android:minWidth
+        */
+        public static final int ActionMenuItemView_android_minWidth = 0;
+        /**  Size of padding on either end of a divider. 
+         */
+        public static final int[] ActionMenuView = {
+            
+        };
+        /** Attributes that can be used with a ActionMode.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #ActionMode_background net.indivia.hacklabbo.statusreader:background}</code></td><td> Specifies a background for the action mode bar.</td></tr>
+           <tr><td><code>{@link #ActionMode_backgroundSplit net.indivia.hacklabbo.statusreader:backgroundSplit}</code></td><td> Specifies a background for the split action mode bar.</td></tr>
+           <tr><td><code>{@link #ActionMode_closeItemLayout net.indivia.hacklabbo.statusreader:closeItemLayout}</code></td><td> Specifies a layout to use for the "close" item at the starting edge.</td></tr>
+           <tr><td><code>{@link #ActionMode_height net.indivia.hacklabbo.statusreader:height}</code></td><td> Specifies a fixed height for the action mode bar.</td></tr>
+           <tr><td><code>{@link #ActionMode_subtitleTextStyle net.indivia.hacklabbo.statusreader:subtitleTextStyle}</code></td><td> Specifies a style to use for subtitle text.</td></tr>
+           <tr><td><code>{@link #ActionMode_titleTextStyle net.indivia.hacklabbo.statusreader:titleTextStyle}</code></td><td> Specifies a style to use for title text.</td></tr>
+           </table>
+           @see #ActionMode_background
+           @see #ActionMode_backgroundSplit
+           @see #ActionMode_closeItemLayout
+           @see #ActionMode_height
+           @see #ActionMode_subtitleTextStyle
+           @see #ActionMode_titleTextStyle
+         */
+        public static final int[] ActionMode = {
+            0x7f010001, 0x7f010058, 0x7f010059, 0x7f01005d,
+            0x7f01005f, 0x7f01006d
+        };
+        /**
+          <p>
+          @attr description
+           Specifies a background for the action mode bar. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:background
+        */
+        public static final int ActionMode_background = 3;
+        /**
+          <p>
+          @attr description
+           Specifies a background for the split action mode bar. 
+
+
+          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:backgroundSplit
+        */
+        public static final int ActionMode_backgroundSplit = 4;
+        /**
+          <p>
+          @attr description
+           Specifies a layout to use for the "close" item at the starting edge. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:closeItemLayout
+        */
+        public static final int ActionMode_closeItemLayout = 5;
+        /**
+          <p>
+          @attr description
+           Specifies a fixed height for the action mode bar. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:height
+        */
+        public static final int ActionMode_height = 0;
+        /**
+          <p>
+          @attr description
+           Specifies a style to use for subtitle text. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:subtitleTextStyle
+        */
+        public static final int ActionMode_subtitleTextStyle = 2;
+        /**
+          <p>
+          @attr description
+           Specifies a style to use for title text. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:titleTextStyle
+        */
+        public static final int ActionMode_titleTextStyle = 1;
+        /**  Attrbitutes for a ActivityChooserView. 
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable net.indivia.hacklabbo.statusreader:expandActivityOverflowButtonDrawable}</code></td><td> The drawable to show in the button for expanding the activities overflow popup.</td></tr>
+           <tr><td><code>{@link #ActivityChooserView_initialActivityCount net.indivia.hacklabbo.statusreader:initialActivityCount}</code></td><td> The maximal number of items initially shown in the activity list.</td></tr>
+           </table>
+           @see #ActivityChooserView_expandActivityOverflowButtonDrawable
+           @see #ActivityChooserView_initialActivityCount
+         */
+        public static final int[] ActivityChooserView = {
+            0x7f010084, 0x7f010085
+        };
+        /**
+          <p>
+          @attr description
+           The drawable to show in the button for expanding the activities overflow popup.
+             <strong>Note:</strong> Clients would like to set this drawable
+             as a clue about the action the chosen activity will perform. For
+             example, if share activity is to be chosen the drawable should
+             give a clue that sharing is to be performed.
+         
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:expandActivityOverflowButtonDrawable
+        */
+        public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
+        /**
+          <p>
+          @attr description
+           The maximal number of items initially shown in the activity list. 
+
+
+          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:initialActivityCount
+        */
+        public static final int ActivityChooserView_initialActivityCount = 0;
+        /** Attributes that can be used with a CompatTextView.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #CompatTextView_textAllCaps net.indivia.hacklabbo.statusreader:textAllCaps}</code></td><td> Present the text in ALL CAPS.</td></tr>
+           </table>
+           @see #CompatTextView_textAllCaps
+         */
+        public static final int[] CompatTextView = {
+            0x7f010086
+        };
+        /**
+          <p>
+          @attr description
+           Present the text in ALL CAPS. This may use a small-caps form when available. 
+
+
+          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:textAllCaps
+        */
+        public static final int CompatTextView_textAllCaps = 0;
+        /** Attributes that can be used with a DrawerArrowToggle.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #DrawerArrowToggle_barSize net.indivia.hacklabbo.statusreader:barSize}</code></td><td> The size of the bars when they are parallel to each other </td></tr>
+           <tr><td><code>{@link #DrawerArrowToggle_color net.indivia.hacklabbo.statusreader:color}</code></td><td> The drawing color for the bars </td></tr>
+           <tr><td><code>{@link #DrawerArrowToggle_drawableSize net.indivia.hacklabbo.statusreader:drawableSize}</code></td><td> The total size of the drawable </td></tr>
+           <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars net.indivia.hacklabbo.statusreader:gapBetweenBars}</code></td><td> The max gap between the bars when they are parallel to each other </td></tr>
+           <tr><td><code>{@link #DrawerArrowToggle_middleBarArrowSize net.indivia.hacklabbo.statusreader:middleBarArrowSize}</code></td><td> The size of the middle bar when top and bottom bars merge into middle bar to form an arrow </td></tr>
+           <tr><td><code>{@link #DrawerArrowToggle_spinBars net.indivia.hacklabbo.statusreader:spinBars}</code></td><td> Whether bars should rotate or not during transition </td></tr>
+           <tr><td><code>{@link #DrawerArrowToggle_thickness net.indivia.hacklabbo.statusreader:thickness}</code></td><td> The thickness (stroke size) for the bar paint </td></tr>
+           <tr><td><code>{@link #DrawerArrowToggle_topBottomBarArrowSize net.indivia.hacklabbo.statusreader:topBottomBarArrowSize}</code></td><td> The size of the top and bottom bars when they merge to the middle bar to form an arrow </td></tr>
+           </table>
+           @see #DrawerArrowToggle_barSize
+           @see #DrawerArrowToggle_color
+           @see #DrawerArrowToggle_drawableSize
+           @see #DrawerArrowToggle_gapBetweenBars
+           @see #DrawerArrowToggle_middleBarArrowSize
+           @see #DrawerArrowToggle_spinBars
+           @see #DrawerArrowToggle_thickness
+           @see #DrawerArrowToggle_topBottomBarArrowSize
+         */
+        public static final int[] DrawerArrowToggle = {
+            0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c,
+            0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0
+        };
+        /**
+          <p>
+          @attr description
+           The size of the bars when they are parallel to each other 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:barSize
+        */
+        public static final int DrawerArrowToggle_barSize = 6;
+        /**
+          <p>
+          @attr description
+           The drawing color for the bars 
+
+
+          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:color
+        */
+        public static final int DrawerArrowToggle_color = 0;
+        /**
+          <p>
+          @attr description
+           The total size of the drawable 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:drawableSize
+        */
+        public static final int DrawerArrowToggle_drawableSize = 2;
+        /**
+          <p>
+          @attr description
+           The max gap between the bars when they are parallel to each other 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:gapBetweenBars
+        */
+        public static final int DrawerArrowToggle_gapBetweenBars = 3;
+        /**
+          <p>
+          @attr description
+           The size of the middle bar when top and bottom bars merge into middle bar to form an arrow 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:middleBarArrowSize
+        */
+        public static final int DrawerArrowToggle_middleBarArrowSize = 5;
+        /**
+          <p>
+          @attr description
+           Whether bars should rotate or not during transition 
+
+
+          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:spinBars
+        */
+        public static final int DrawerArrowToggle_spinBars = 1;
+        /**
+          <p>
+          @attr description
+           The thickness (stroke size) for the bar paint 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:thickness
+        */
+        public static final int DrawerArrowToggle_thickness = 7;
+        /**
+          <p>
+          @attr description
+           The size of the top and bottom bars when they merge to the middle bar to form an arrow 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:topBottomBarArrowSize
+        */
+        public static final int DrawerArrowToggle_topBottomBarArrowSize = 4;
+        /** Attributes that can be used with a LinearLayoutCompat.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td> When set to false, prevents the layout from aligning its children's
+             baselines.</td></tr>
+           <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td> When a linear layout is part of another layout that is baseline
+          aligned, it can specify which of its children to baseline align to
+          (that is, which child TextView).</td></tr>
+           <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
+           <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td> Should the layout be a column or a row?  Use "horizontal"
+             for a row, "vertical" for a column.</td></tr>
+           <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td> Defines the maximum weight sum.</td></tr>
+           <tr><td><code>{@link #LinearLayoutCompat_divider net.indivia.hacklabbo.statusreader:divider}</code></td><td> Drawable to use as a vertical divider between buttons.</td></tr>
+           <tr><td><code>{@link #LinearLayoutCompat_dividerPadding net.indivia.hacklabbo.statusreader:dividerPadding}</code></td><td> Size of padding on either end of a divider.</td></tr>
+           <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild net.indivia.hacklabbo.statusreader:measureWithLargestChild}</code></td><td> When set to true, all children with a weight will be considered having
+             the minimum size of the largest child.</td></tr>
+           <tr><td><code>{@link #LinearLayoutCompat_showDividers net.indivia.hacklabbo.statusreader:showDividers}</code></td><td> Setting for which dividers to show.</td></tr>
+           </table>
+           @see #LinearLayoutCompat_android_baselineAligned
+           @see #LinearLayoutCompat_android_baselineAlignedChildIndex
+           @see #LinearLayoutCompat_android_gravity
+           @see #LinearLayoutCompat_android_orientation
+           @see #LinearLayoutCompat_android_weightSum
+           @see #LinearLayoutCompat_divider
+           @see #LinearLayoutCompat_dividerPadding
+           @see #LinearLayoutCompat_measureWithLargestChild
+           @see #LinearLayoutCompat_showDividers
+         */
+        public static final int[] LinearLayoutCompat = {
+            0x010100af, 0x010100c4, 0x01010126, 0x01010127,
+            0x01010128, 0x7f01005c, 0x7f010087, 0x7f010088,
+            0x7f010089
+        };
+        /**
+          <p>
+          @attr description
+           When set to false, prevents the layout from aligning its children's
+             baselines. This attribute is particularly useful when the children
+             use different values for gravity. The default value is true. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#baselineAligned}.
+          @attr name android:baselineAligned
+        */
+        public static final int LinearLayoutCompat_android_baselineAligned = 2;
+        /**
+          <p>
+          @attr description
+           When a linear layout is part of another layout that is baseline
+          aligned, it can specify which of its children to baseline align to
+          (that is, which child TextView).
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#baselineAlignedChildIndex}.
+          @attr name android:baselineAlignedChildIndex
+        */
+        public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#gravity}
+          attribute's value can be found in the {@link #LinearLayoutCompat} array.
+          @attr name android:gravity
+        */
+        public static final int LinearLayoutCompat_android_gravity = 0;
+        /**
+          <p>
+          @attr description
+           Should the layout be a column or a row?  Use "horizontal"
+             for a row, "vertical" for a column.  The default is
+             horizontal. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#orientation}.
+          @attr name android:orientation
+        */
+        public static final int LinearLayoutCompat_android_orientation = 1;
+        /**
+          <p>
+          @attr description
+           Defines the maximum weight sum. If unspecified, the sum is computed
+             by adding the layout_weight of all of the children. This can be
+             used for instance to give a single child 50% of the total available
+             space by giving it a layout_weight of 0.5 and setting the weightSum
+             to 1.0. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#weightSum}.
+          @attr name android:weightSum
+        */
+        public static final int LinearLayoutCompat_android_weightSum = 4;
+        /**
+          <p>
+          @attr description
+           Drawable to use as a vertical divider between buttons. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:divider
+        */
+        public static final int LinearLayoutCompat_divider = 5;
+        /**
+          <p>
+          @attr description
+           Size of padding on either end of a divider. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:dividerPadding
+        */
+        public static final int LinearLayoutCompat_dividerPadding = 8;
+        /**
+          <p>
+          @attr description
+           When set to true, all children with a weight will be considered having
+             the minimum size of the largest child. If false, all children are
+             measured normally. 
+
+
+          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:measureWithLargestChild
+        */
+        public static final int LinearLayoutCompat_measureWithLargestChild = 6;
+        /**
+          <p>
+          @attr description
+           Setting for which dividers to show. 
+
+
+          <p>Must be one or more (separated by '|') of the following constant values.</p>
+<table>
+<colgroup align="left" />
+<colgroup align="left" />
+<colgroup align="left" />
+<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
+<tr><td><code>none</code></td><td>0</td><td></td></tr>
+<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
+<tr><td><code>middle</code></td><td>2</td><td></td></tr>
+<tr><td><code>end</code></td><td>4</td><td></td></tr>
+</table>
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:showDividers
+        */
+        public static final int LinearLayoutCompat_showDividers = 7;
+        /** Attributes that can be used with a LinearLayoutCompat_Layout.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
+           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
+           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
+           <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
+           </table>
+           @see #LinearLayoutCompat_Layout_android_layout_gravity
+           @see #LinearLayoutCompat_Layout_android_layout_height
+           @see #LinearLayoutCompat_Layout_android_layout_weight
+           @see #LinearLayoutCompat_Layout_android_layout_width
+         */
+        public static final int[] LinearLayoutCompat_Layout = {
+            0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
+        };
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
+          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+          @attr name android:layout_gravity
+        */
+        public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#layout_height}
+          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+          @attr name android:layout_height
+        */
+        public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#layout_weight}
+          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+          @attr name android:layout_weight
+        */
+        public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#layout_width}
+          attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
+          @attr name android:layout_width
+        */
+        public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
+        /** Attributes that can be used with a ListPopupWindow.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td> Amount of pixels by which the drop down should be offset horizontally.</td></tr>
+           <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td> Amount of pixels by which the drop down should be offset vertically.</td></tr>
+           </table>
+           @see #ListPopupWindow_android_dropDownHorizontalOffset
+           @see #ListPopupWindow_android_dropDownVerticalOffset
+         */
+        public static final int[] ListPopupWindow = {
+            0x010102ac, 0x010102ad
+        };
+        /**
+          <p>
+          @attr description
+           Amount of pixels by which the drop down should be offset horizontally. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#dropDownHorizontalOffset}.
+          @attr name android:dropDownHorizontalOffset
+        */
+        public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
+        /**
+          <p>
+          @attr description
+           Amount of pixels by which the drop down should be offset vertically. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#dropDownVerticalOffset}.
+          @attr name android:dropDownVerticalOffset
+        */
+        public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
+        /**  Base attributes that are available to all groups. 
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td> Whether the items are capable of displaying a check mark.</td></tr>
+           <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td> Whether the items are enabled.</td></tr>
+           <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td> The ID of the group.</td></tr>
+           <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td> The category applied to all items within this group.</td></tr>
+           <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td> The order within the category applied to all items within this group.</td></tr>
+           <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td> Whether the items are shown/visible.</td></tr>
+           </table>
+           @see #MenuGroup_android_checkableBehavior
+           @see #MenuGroup_android_enabled
+           @see #MenuGroup_android_id
+           @see #MenuGroup_android_menuCategory
+           @see #MenuGroup_android_orderInCategory
+           @see #MenuGroup_android_visible
+         */
+        public static final int[] MenuGroup = {
+            0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
+            0x010101df, 0x010101e0
+        };
+        /**
+          <p>
+          @attr description
+           Whether the items are capable of displaying a check mark. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#checkableBehavior}.
+          @attr name android:checkableBehavior
+        */
+        public static final int MenuGroup_android_checkableBehavior = 5;
+        /**
+          <p>
+          @attr description
+           Whether the items are enabled. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#enabled}.
+          @attr name android:enabled
+        */
+        public static final int MenuGroup_android_enabled = 0;
+        /**
+          <p>
+          @attr description
+           The ID of the group. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#id}.
+          @attr name android:id
+        */
+        public static final int MenuGroup_android_id = 1;
+        /**
+          <p>
+          @attr description
+           The category applied to all items within this group.
+             (This will be or'ed with the orderInCategory attribute.) 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#menuCategory}.
+          @attr name android:menuCategory
+        */
+        public static final int MenuGroup_android_menuCategory = 3;
+        /**
+          <p>
+          @attr description
+           The order within the category applied to all items within this group.
+             (This will be or'ed with the category attribute.) 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#orderInCategory}.
+          @attr name android:orderInCategory
+        */
+        public static final int MenuGroup_android_orderInCategory = 4;
+        /**
+          <p>
+          @attr description
+           Whether the items are shown/visible. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#visible}.
+          @attr name android:visible
+        */
+        public static final int MenuGroup_android_visible = 2;
+        /**  Base attributes that are available to all Item objects. 
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #MenuItem_actionLayout net.indivia.hacklabbo.statusreader:actionLayout}</code></td><td> An optional layout to be used as an action view.</td></tr>
+           <tr><td><code>{@link #MenuItem_actionProviderClass net.indivia.hacklabbo.statusreader:actionProviderClass}</code></td><td> The name of an optional ActionProvider class to instantiate an action view
+             and perform operations such as default action for that menu item.</td></tr>
+           <tr><td><code>{@link #MenuItem_actionViewClass net.indivia.hacklabbo.statusreader:actionViewClass}</code></td><td> The name of an optional View class to instantiate and use as an
+             action view.</td></tr>
+           <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td> The alphabetic shortcut key.</td></tr>
+           <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td> Whether the item is capable of displaying a check mark.</td></tr>
+           <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td> Whether the item is checked.</td></tr>
+           <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td> Whether the item is enabled.</td></tr>
+           <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td> The icon associated with this item.</td></tr>
+           <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td> The ID of the item.</td></tr>
+           <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td> The category applied to the item.</td></tr>
+           <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td> The numeric shortcut key.</td></tr>
+           <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td> Name of a method on the Context used to inflate the menu that will be
+             called when the item is clicked.</td></tr>
+           <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td> The order within the category applied to the item.</td></tr>
+           <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td> The title associated with the item.</td></tr>
+           <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td> The condensed title associated with the item.</td></tr>
+           <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td> Whether the item is shown/visible.</td></tr>
+           <tr><td><code>{@link #MenuItem_showAsAction net.indivia.hacklabbo.statusreader:showAsAction}</code></td><td> How this item should display in the Action Bar, if present.</td></tr>
+           </table>
+           @see #MenuItem_actionLayout
+           @see #MenuItem_actionProviderClass
+           @see #MenuItem_actionViewClass
+           @see #MenuItem_android_alphabeticShortcut
+           @see #MenuItem_android_checkable
+           @see #MenuItem_android_checked
+           @see #MenuItem_android_enabled
+           @see #MenuItem_android_icon
+           @see #MenuItem_android_id
+           @see #MenuItem_android_menuCategory
+           @see #MenuItem_android_numericShortcut
+           @see #MenuItem_android_onClick
+           @see #MenuItem_android_orderInCategory
+           @see #MenuItem_android_title
+           @see #MenuItem_android_titleCondensed
+           @see #MenuItem_android_visible
+           @see #MenuItem_showAsAction
+         */
+        public static final int[] MenuItem = {
+            0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
+            0x01010194, 0x010101de, 0x010101df, 0x010101e1,
+            0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
+            0x0101026f, 0x7f010071, 0x7f010072, 0x7f010073,
+            0x7f010074
+        };
+        /**
+          <p>
+          @attr description
+           An optional layout to be used as an action view.
+             See {@link android.view.MenuItem#setActionView(android.view.View)}
+             for more info. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionLayout
+        */
+        public static final int MenuItem_actionLayout = 14;
+        /**
+          <p>
+          @attr description
+           The name of an optional ActionProvider class to instantiate an action view
+             and perform operations such as default action for that menu item.
+             See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
+             for more info. 
+
+
+          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionProviderClass
+        */
+        public static final int MenuItem_actionProviderClass = 16;
+        /**
+          <p>
+          @attr description
+           The name of an optional View class to instantiate and use as an
+             action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
+             for more info. 
+
+
+          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionViewClass
+        */
+        public static final int MenuItem_actionViewClass = 15;
+        /**
+          <p>
+          @attr description
+           The alphabetic shortcut key.  This is the shortcut when using a keyboard
+             with alphabetic keys. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#alphabeticShortcut}.
+          @attr name android:alphabeticShortcut
+        */
+        public static final int MenuItem_android_alphabeticShortcut = 9;
+        /**
+          <p>
+          @attr description
+           Whether the item is capable of displaying a check mark. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#checkable}.
+          @attr name android:checkable
+        */
+        public static final int MenuItem_android_checkable = 11;
+        /**
+          <p>
+          @attr description
+           Whether the item is checked.  Note that you must first have enabled checking with
+             the checkable attribute or else the check mark will not appear. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#checked}.
+          @attr name android:checked
+        */
+        public static final int MenuItem_android_checked = 3;
+        /**
+          <p>
+          @attr description
+           Whether the item is enabled. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#enabled}.
+          @attr name android:enabled
+        */
+        public static final int MenuItem_android_enabled = 1;
+        /**
+          <p>
+          @attr description
+           The icon associated with this item.  This icon will not always be shown, so
+             the title should be sufficient in describing this item. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#icon}.
+          @attr name android:icon
+        */
+        public static final int MenuItem_android_icon = 0;
+        /**
+          <p>
+          @attr description
+           The ID of the item. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#id}.
+          @attr name android:id
+        */
+        public static final int MenuItem_android_id = 2;
+        /**
+          <p>
+          @attr description
+           The category applied to the item.
+             (This will be or'ed with the orderInCategory attribute.) 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#menuCategory}.
+          @attr name android:menuCategory
+        */
+        public static final int MenuItem_android_menuCategory = 5;
+        /**
+          <p>
+          @attr description
+           The numeric shortcut key.  This is the shortcut when using a numeric (e.g., 12-key)
+             keyboard. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#numericShortcut}.
+          @attr name android:numericShortcut
+        */
+        public static final int MenuItem_android_numericShortcut = 10;
+        /**
+          <p>
+          @attr description
+           Name of a method on the Context used to inflate the menu that will be
+             called when the item is clicked. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#onClick}.
+          @attr name android:onClick
+        */
+        public static final int MenuItem_android_onClick = 12;
+        /**
+          <p>
+          @attr description
+           The order within the category applied to the item.
+             (This will be or'ed with the category attribute.) 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#orderInCategory}.
+          @attr name android:orderInCategory
+        */
+        public static final int MenuItem_android_orderInCategory = 6;
+        /**
+          <p>
+          @attr description
+           The title associated with the item. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#title}.
+          @attr name android:title
+        */
+        public static final int MenuItem_android_title = 7;
+        /**
+          <p>
+          @attr description
+           The condensed title associated with the item.  This is used in situations where the
+             normal title may be too long to be displayed. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#titleCondensed}.
+          @attr name android:titleCondensed
+        */
+        public static final int MenuItem_android_titleCondensed = 8;
+        /**
+          <p>
+          @attr description
+           Whether the item is shown/visible. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#visible}.
+          @attr name android:visible
+        */
+        public static final int MenuItem_android_visible = 4;
+        /**
+          <p>
+          @attr description
+           How this item should display in the Action Bar, if present. 
+
+
+          <p>Must be one or more (separated by '|') of the following constant values.</p>
+<table>
+<colgroup align="left" />
+<colgroup align="left" />
+<colgroup align="left" />
+<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
+<tr><td><code>never</code></td><td>0</td><td> Never show this item in an action bar, show it in the overflow menu instead.
+                 Mutually exclusive with "ifRoom" and "always". </td></tr>
+<tr><td><code>ifRoom</code></td><td>1</td><td> Show this item in an action bar if there is room for it as determined
+                 by the system. Favor this option over "always" where possible.
+                 Mutually exclusive with "never" and "always". </td></tr>
+<tr><td><code>always</code></td><td>2</td><td> Always show this item in an actionbar, even if it would override
+                 the system's limits of how much stuff to put there. This may make
+                 your action bar look bad on some screens. In most cases you should
+                 use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". </td></tr>
+<tr><td><code>withText</code></td><td>4</td><td> When this item is shown as an action in the action bar, show a text
+                 label with it even if it has an icon representation. </td></tr>
+<tr><td><code>collapseActionView</code></td><td>8</td><td> This item's action view collapses to a normal menu
+                 item. When expanded, the action view takes over a
+                 larger segment of its container. </td></tr>
+</table>
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:showAsAction
+        */
+        public static final int MenuItem_showAsAction = 13;
+        /** Attributes that can be used with a MenuView.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td> Default background for the menu header.</td></tr>
+           <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td> Default horizontal divider between rows of menu items.</td></tr>
+           <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td> Default background for each menu item.</td></tr>
+           <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td> Default disabled icon alpha for each menu item that shows an icon.</td></tr>
+           <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td> Default appearance of menu item text.</td></tr>
+           <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td> Default vertical divider between menu items.</td></tr>
+           <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td> Default animations for the menu.</td></tr>
+           <tr><td><code>{@link #MenuView_preserveIconSpacing net.indivia.hacklabbo.statusreader:preserveIconSpacing}</code></td><td> Whether space should be reserved in layout when an icon is missing.</td></tr>
+           </table>
+           @see #MenuView_android_headerBackground
+           @see #MenuView_android_horizontalDivider
+           @see #MenuView_android_itemBackground
+           @see #MenuView_android_itemIconDisabledAlpha
+           @see #MenuView_android_itemTextAppearance
+           @see #MenuView_android_verticalDivider
+           @see #MenuView_android_windowAnimationStyle
+           @see #MenuView_preserveIconSpacing
+         */
+        public static final int[] MenuView = {
+            0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
+            0x0101012f, 0x01010130, 0x01010131, 0x7f010070
+        };
+        /**
+          <p>
+          @attr description
+           Default background for the menu header. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#headerBackground}.
+          @attr name android:headerBackground
+        */
+        public static final int MenuView_android_headerBackground = 4;
+        /**
+          <p>
+          @attr description
+           Default horizontal divider between rows of menu items. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#horizontalDivider}.
+          @attr name android:horizontalDivider
+        */
+        public static final int MenuView_android_horizontalDivider = 2;
+        /**
+          <p>
+          @attr description
+           Default background for each menu item. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#itemBackground}.
+          @attr name android:itemBackground
+        */
+        public static final int MenuView_android_itemBackground = 5;
+        /**
+          <p>
+          @attr description
+           Default disabled icon alpha for each menu item that shows an icon. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#itemIconDisabledAlpha}.
+          @attr name android:itemIconDisabledAlpha
+        */
+        public static final int MenuView_android_itemIconDisabledAlpha = 6;
+        /**
+          <p>
+          @attr description
+           Default appearance of menu item text. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#itemTextAppearance}.
+          @attr name android:itemTextAppearance
+        */
+        public static final int MenuView_android_itemTextAppearance = 1;
+        /**
+          <p>
+          @attr description
+           Default vertical divider between menu items. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#verticalDivider}.
+          @attr name android:verticalDivider
+        */
+        public static final int MenuView_android_verticalDivider = 3;
+        /**
+          <p>
+          @attr description
+           Default animations for the menu. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#windowAnimationStyle}.
+          @attr name android:windowAnimationStyle
+        */
+        public static final int MenuView_android_windowAnimationStyle = 0;
+        /**
+          <p>
+          @attr description
+           Whether space should be reserved in layout when an icon is missing. 
+
+
+          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:preserveIconSpacing
+        */
+        public static final int MenuView_preserveIconSpacing = 7;
+        /** Attributes that can be used with a PopupWindow.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
+           <tr><td><code>{@link #PopupWindow_overlapAnchor net.indivia.hacklabbo.statusreader:overlapAnchor}</code></td><td> Whether the popup window should overlap its anchor view.</td></tr>
+           </table>
+           @see #PopupWindow_android_popupBackground
+           @see #PopupWindow_overlapAnchor
+         */
+        public static final int[] PopupWindow = {
+            0x01010176, 0x7f010098
+        };
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#popupBackground}
+          attribute's value can be found in the {@link #PopupWindow} array.
+          @attr name android:popupBackground
+        */
+        public static final int PopupWindow_android_popupBackground = 0;
+        /**
+          <p>
+          @attr description
+           Whether the popup window should overlap its anchor view. 
+
+
+          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:overlapAnchor
+        */
+        public static final int PopupWindow_overlapAnchor = 1;
+        /** Attributes that can be used with a PopupWindowBackgroundState.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor net.indivia.hacklabbo.statusreader:state_above_anchor}</code></td><td> State identifier indicating the popup will be above the anchor.</td></tr>
+           </table>
+           @see #PopupWindowBackgroundState_state_above_anchor
+         */
+        public static final int[] PopupWindowBackgroundState = {
+            0x7f010097
+        };
+        /**
+          <p>
+          @attr description
+           State identifier indicating the popup will be above the anchor. 
+
+
+          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:state_above_anchor
+        */
+        public static final int PopupWindowBackgroundState_state_above_anchor = 0;
+        /** Attributes that can be used with a SearchView.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
+           <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td> The IME options to set on the query text field.</td></tr>
+           <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td> The input type to set on the query text field.</td></tr>
+           <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td> An optional maximum width of the SearchView.</td></tr>
+           <tr><td><code>{@link #SearchView_closeIcon net.indivia.hacklabbo.statusreader:closeIcon}</code></td><td> Close button icon </td></tr>
+           <tr><td><code>{@link #SearchView_commitIcon net.indivia.hacklabbo.statusreader:commitIcon}</code></td><td> Commit icon shown in the query suggestion row </td></tr>
+           <tr><td><code>{@link #SearchView_goIcon net.indivia.hacklabbo.statusreader:goIcon}</code></td><td> Go button icon </td></tr>
+           <tr><td><code>{@link #SearchView_iconifiedByDefault net.indivia.hacklabbo.statusreader:iconifiedByDefault}</code></td><td> The default state of the SearchView.</td></tr>
+           <tr><td><code>{@link #SearchView_layout net.indivia.hacklabbo.statusreader:layout}</code></td><td> The layout to use for the search view.</td></tr>
+           <tr><td><code>{@link #SearchView_queryBackground net.indivia.hacklabbo.statusreader:queryBackground}</code></td><td> Background for the section containing the search query </td></tr>
+           <tr><td><code>{@link #SearchView_queryHint net.indivia.hacklabbo.statusreader:queryHint}</code></td><td> An optional query hint string to be displayed in the empty query field.</td></tr>
+           <tr><td><code>{@link #SearchView_searchIcon net.indivia.hacklabbo.statusreader:searchIcon}</code></td><td> Search icon </td></tr>
+           <tr><td><code>{@link #SearchView_submitBackground net.indivia.hacklabbo.statusreader:submitBackground}</code></td><td> Background for the section containing the action (e.</td></tr>
+           <tr><td><code>{@link #SearchView_suggestionRowLayout net.indivia.hacklabbo.statusreader:suggestionRowLayout}</code></td><td> Layout for query suggestion rows </td></tr>
+           <tr><td><code>{@link #SearchView_voiceIcon net.indivia.hacklabbo.statusreader:voiceIcon}</code></td><td> Voice button icon </td></tr>
+           </table>
+           @see #SearchView_android_focusable
+           @see #SearchView_android_imeOptions
+           @see #SearchView_android_inputType
+           @see #SearchView_android_maxWidth
+           @see #SearchView_closeIcon
+           @see #SearchView_commitIcon
+           @see #SearchView_goIcon
+           @see #SearchView_iconifiedByDefault
+           @see #SearchView_layout
+           @see #SearchView_queryBackground
+           @see #SearchView_queryHint
+           @see #SearchView_searchIcon
+           @see #SearchView_submitBackground
+           @see #SearchView_suggestionRowLayout
+           @see #SearchView_voiceIcon
+         */
+        public static final int[] SearchView = {
+            0x010100da, 0x0101011f, 0x01010220, 0x01010264,
+            0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c,
+            0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080,
+            0x7f010081, 0x7f010082, 0x7f010083
+        };
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#focusable}
+          attribute's value can be found in the {@link #SearchView} array.
+          @attr name android:focusable
+        */
+        public static final int SearchView_android_focusable = 0;
+        /**
+          <p>
+          @attr description
+           The IME options to set on the query text field. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#imeOptions}.
+          @attr name android:imeOptions
+        */
+        public static final int SearchView_android_imeOptions = 3;
+        /**
+          <p>
+          @attr description
+           The input type to set on the query text field. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#inputType}.
+          @attr name android:inputType
+        */
+        public static final int SearchView_android_inputType = 2;
+        /**
+          <p>
+          @attr description
+           An optional maximum width of the SearchView. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#maxWidth}.
+          @attr name android:maxWidth
+        */
+        public static final int SearchView_android_maxWidth = 1;
+        /**
+          <p>
+          @attr description
+           Close button icon 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:closeIcon
+        */
+        public static final int SearchView_closeIcon = 7;
+        /**
+          <p>
+          @attr description
+           Commit icon shown in the query suggestion row 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:commitIcon
+        */
+        public static final int SearchView_commitIcon = 11;
+        /**
+          <p>
+          @attr description
+           Go button icon 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:goIcon
+        */
+        public static final int SearchView_goIcon = 8;
+        /**
+          <p>
+          @attr description
+           The default state of the SearchView. If true, it will be iconified when not in
+             use and expanded when clicked. 
+
+
+          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:iconifiedByDefault
+        */
+        public static final int SearchView_iconifiedByDefault = 5;
+        /**
+          <p>
+          @attr description
+           The layout to use for the search view. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:layout
+        */
+        public static final int SearchView_layout = 4;
+        /**
+          <p>
+          @attr description
+           Background for the section containing the search query 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:queryBackground
+        */
+        public static final int SearchView_queryBackground = 13;
+        /**
+          <p>
+          @attr description
+           An optional query hint string to be displayed in the empty query field. 
+
+
+          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:queryHint
+        */
+        public static final int SearchView_queryHint = 6;
+        /**
+          <p>
+          @attr description
+           Search icon 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:searchIcon
+        */
+        public static final int SearchView_searchIcon = 9;
+        /**
+          <p>
+          @attr description
+           Background for the section containing the action (e.g. voice search) 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:submitBackground
+        */
+        public static final int SearchView_submitBackground = 14;
+        /**
+          <p>
+          @attr description
+           Layout for query suggestion rows 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:suggestionRowLayout
+        */
+        public static final int SearchView_suggestionRowLayout = 12;
+        /**
+          <p>
+          @attr description
+           Voice button icon 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:voiceIcon
+        */
+        public static final int SearchView_voiceIcon = 10;
+        /** Attributes that can be used with a Spinner.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #Spinner_android_background android:background}</code></td><td></td></tr>
+           <tr><td><code>{@link #Spinner_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td> Horizontal offset from the spinner widget for positioning the dropdown
+             in spinnerMode="dropdown".</td></tr>
+           <tr><td><code>{@link #Spinner_android_dropDownSelector android:dropDownSelector}</code></td><td> List selector to use for spinnerMode="dropdown" display.</td></tr>
+           <tr><td><code>{@link #Spinner_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td> Vertical offset from the spinner widget for positioning the dropdown in
+             spinnerMode="dropdown".</td></tr>
+           <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td> Width of the dropdown in spinnerMode="dropdown".</td></tr>
+           <tr><td><code>{@link #Spinner_android_gravity android:gravity}</code></td><td> Gravity setting for positioning the currently selected item.</td></tr>
+           <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td> Background drawable to use for the dropdown in spinnerMode="dropdown".</td></tr>
+           <tr><td><code>{@link #Spinner_disableChildrenWhenDisabled net.indivia.hacklabbo.statusreader:disableChildrenWhenDisabled}</code></td><td> Whether this spinner should mark child views as enabled/disabled when
+             the spinner itself is enabled/disabled.</td></tr>
+           <tr><td><code>{@link #Spinner_popupPromptView net.indivia.hacklabbo.statusreader:popupPromptView}</code></td><td> Reference to a layout to use for displaying a prompt in the dropdown for
+             spinnerMode="dropdown".</td></tr>
+           <tr><td><code>{@link #Spinner_prompt net.indivia.hacklabbo.statusreader:prompt}</code></td><td> The prompt to display when the spinner's dialog is shown.</td></tr>
+           <tr><td><code>{@link #Spinner_spinnerMode net.indivia.hacklabbo.statusreader:spinnerMode}</code></td><td> Display mode for spinner options.</td></tr>
+           </table>
+           @see #Spinner_android_background
+           @see #Spinner_android_dropDownHorizontalOffset
+           @see #Spinner_android_dropDownSelector
+           @see #Spinner_android_dropDownVerticalOffset
+           @see #Spinner_android_dropDownWidth
+           @see #Spinner_android_gravity
+           @see #Spinner_android_popupBackground
+           @see #Spinner_disableChildrenWhenDisabled
+           @see #Spinner_popupPromptView
+           @see #Spinner_prompt
+           @see #Spinner_spinnerMode
+         */
+        public static final int[] Spinner = {
+            0x010100af, 0x010100d4, 0x01010175, 0x01010176,
+            0x01010262, 0x010102ac, 0x010102ad, 0x7f010075,
+            0x7f010076, 0x7f010077, 0x7f010078
+        };
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#background}
+          attribute's value can be found in the {@link #Spinner} array.
+          @attr name android:background
+        */
+        public static final int Spinner_android_background = 1;
+        /**
+          <p>
+          @attr description
+           Horizontal offset from the spinner widget for positioning the dropdown
+             in spinnerMode="dropdown". 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#dropDownHorizontalOffset}.
+          @attr name android:dropDownHorizontalOffset
+        */
+        public static final int Spinner_android_dropDownHorizontalOffset = 5;
+        /**
+          <p>
+          @attr description
+           List selector to use for spinnerMode="dropdown" display. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#dropDownSelector}.
+          @attr name android:dropDownSelector
+        */
+        public static final int Spinner_android_dropDownSelector = 2;
+        /**
+          <p>
+          @attr description
+           Vertical offset from the spinner widget for positioning the dropdown in
+             spinnerMode="dropdown". 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#dropDownVerticalOffset}.
+          @attr name android:dropDownVerticalOffset
+        */
+        public static final int Spinner_android_dropDownVerticalOffset = 6;
+        /**
+          <p>
+          @attr description
+           Width of the dropdown in spinnerMode="dropdown". 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#dropDownWidth}.
+          @attr name android:dropDownWidth
+        */
+        public static final int Spinner_android_dropDownWidth = 4;
+        /**
+          <p>
+          @attr description
+           Gravity setting for positioning the currently selected item. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#gravity}.
+          @attr name android:gravity
+        */
+        public static final int Spinner_android_gravity = 0;
+        /**
+          <p>
+          @attr description
+           Background drawable to use for the dropdown in spinnerMode="dropdown". 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#popupBackground}.
+          @attr name android:popupBackground
+        */
+        public static final int Spinner_android_popupBackground = 3;
+        /**
+          <p>
+          @attr description
+           Whether this spinner should mark child views as enabled/disabled when
+             the spinner itself is enabled/disabled. 
+
+
+          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:disableChildrenWhenDisabled
+        */
+        public static final int Spinner_disableChildrenWhenDisabled = 10;
+        /**
+          <p>
+          @attr description
+           Reference to a layout to use for displaying a prompt in the dropdown for
+             spinnerMode="dropdown". This layout must contain a TextView with the id
+             {@code @android:id/text1} to be populated with the prompt text. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:popupPromptView
+        */
+        public static final int Spinner_popupPromptView = 9;
+        /**
+          <p>
+          @attr description
+           The prompt to display when the spinner's dialog is shown. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:prompt
+        */
+        public static final int Spinner_prompt = 7;
+        /**
+          <p>
+          @attr description
+           Display mode for spinner options. 
+
+
+          <p>Must be one of the following constant values.</p>
+<table>
+<colgroup align="left" />
+<colgroup align="left" />
+<colgroup align="left" />
+<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
+<tr><td><code>dialog</code></td><td>0</td><td> Spinner options will be presented to the user as a dialog window. </td></tr>
+<tr><td><code>dropdown</code></td><td>1</td><td> Spinner options will be presented to the user as an inline dropdown
+                 anchored to the spinner widget itself. </td></tr>
+</table>
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:spinnerMode
+        */
+        public static final int Spinner_spinnerMode = 8;
+        /** Attributes that can be used with a SwitchCompat.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td> Text to use when the switch is in the unchecked/"off" state.</td></tr>
+           <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td> Text to use when the switch is in the checked/"on" state.</td></tr>
+           <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td> Drawable to use as the "thumb" that switches back and forth.</td></tr>
+           <tr><td><code>{@link #SwitchCompat_showText net.indivia.hacklabbo.statusreader:showText}</code></td><td> Whether to draw on/off text.</td></tr>
+           <tr><td><code>{@link #SwitchCompat_splitTrack net.indivia.hacklabbo.statusreader:splitTrack}</code></td><td> Whether to split the track and leave a gap for the thumb drawable.</td></tr>
+           <tr><td><code>{@link #SwitchCompat_switchMinWidth net.indivia.hacklabbo.statusreader:switchMinWidth}</code></td><td> Minimum width for the switch component </td></tr>
+           <tr><td><code>{@link #SwitchCompat_switchPadding net.indivia.hacklabbo.statusreader:switchPadding}</code></td><td> Minimum space between the switch and caption text </td></tr>
+           <tr><td><code>{@link #SwitchCompat_switchTextAppearance net.indivia.hacklabbo.statusreader:switchTextAppearance}</code></td><td> TextAppearance style for text displayed on the switch thumb.</td></tr>
+           <tr><td><code>{@link #SwitchCompat_thumbTextPadding net.indivia.hacklabbo.statusreader:thumbTextPadding}</code></td><td> Amount of padding on either side of text within the switch thumb.</td></tr>
+           <tr><td><code>{@link #SwitchCompat_track net.indivia.hacklabbo.statusreader:track}</code></td><td> Drawable to use as the "track" that the switch thumb slides within.</td></tr>
+           </table>
+           @see #SwitchCompat_android_textOff
+           @see #SwitchCompat_android_textOn
+           @see #SwitchCompat_android_thumb
+           @see #SwitchCompat_showText
+           @see #SwitchCompat_splitTrack
+           @see #SwitchCompat_switchMinWidth
+           @see #SwitchCompat_switchPadding
+           @see #SwitchCompat_switchTextAppearance
+           @see #SwitchCompat_thumbTextPadding
+           @see #SwitchCompat_track
+         */
+        public static final int[] SwitchCompat = {
+            0x01010124, 0x01010125, 0x01010142, 0x7f0100a2,
+            0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6,
+            0x7f0100a7, 0x7f0100a8
+        };
+        /**
+          <p>
+          @attr description
+           Text to use when the switch is in the unchecked/"off" state. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#textOff}.
+          @attr name android:textOff
+        */
+        public static final int SwitchCompat_android_textOff = 1;
+        /**
+          <p>
+          @attr description
+           Text to use when the switch is in the checked/"on" state. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#textOn}.
+          @attr name android:textOn
+        */
+        public static final int SwitchCompat_android_textOn = 0;
+        /**
+          <p>
+          @attr description
+           Drawable to use as the "thumb" that switches back and forth. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#thumb}.
+          @attr name android:thumb
+        */
+        public static final int SwitchCompat_android_thumb = 2;
+        /**
+          <p>
+          @attr description
+           Whether to draw on/off text. 
+
+
+          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:showText
+        */
+        public static final int SwitchCompat_showText = 9;
+        /**
+          <p>
+          @attr description
+           Whether to split the track and leave a gap for the thumb drawable. 
+
+
+          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:splitTrack
+        */
+        public static final int SwitchCompat_splitTrack = 8;
+        /**
+          <p>
+          @attr description
+           Minimum width for the switch component 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:switchMinWidth
+        */
+        public static final int SwitchCompat_switchMinWidth = 6;
+        /**
+          <p>
+          @attr description
+           Minimum space between the switch and caption text 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:switchPadding
+        */
+        public static final int SwitchCompat_switchPadding = 7;
+        /**
+          <p>
+          @attr description
+           TextAppearance style for text displayed on the switch thumb. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:switchTextAppearance
+        */
+        public static final int SwitchCompat_switchTextAppearance = 5;
+        /**
+          <p>
+          @attr description
+           Amount of padding on either side of text within the switch thumb. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:thumbTextPadding
+        */
+        public static final int SwitchCompat_thumbTextPadding = 4;
+        /**
+          <p>
+          @attr description
+           Drawable to use as the "track" that the switch thumb slides within. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:track
+        */
+        public static final int SwitchCompat_track = 3;
+        /** Attributes that can be used with a SwitchCompatTextAppearance.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #SwitchCompatTextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
+           <tr><td><code>{@link #SwitchCompatTextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
+           <tr><td><code>{@link #SwitchCompatTextAppearance_textAllCaps net.indivia.hacklabbo.statusreader:textAllCaps}</code></td><td> Present the text in ALL CAPS.</td></tr>
+           </table>
+           @see #SwitchCompatTextAppearance_android_textColor
+           @see #SwitchCompatTextAppearance_android_textSize
+           @see #SwitchCompatTextAppearance_textAllCaps
+         */
+        public static final int[] SwitchCompatTextAppearance = {
+            0x01010095, 0x01010098, 0x7f010086
+        };
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#textColor}
+          attribute's value can be found in the {@link #SwitchCompatTextAppearance} array.
+          @attr name android:textColor
+        */
+        public static final int SwitchCompatTextAppearance_android_textColor = 1;
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#textSize}
+          attribute's value can be found in the {@link #SwitchCompatTextAppearance} array.
+          @attr name android:textSize
+        */
+        public static final int SwitchCompatTextAppearance_android_textSize = 0;
+        /**
+          <p>
+          @attr description
+           Present the text in ALL CAPS. This may use a small-caps form when available. 
+
+
+          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:textAllCaps
+        */
+        public static final int SwitchCompatTextAppearance_textAllCaps = 2;
+        /**  These are the standard attributes that make up a complete theme. 
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #Theme_actionBarDivider net.indivia.hacklabbo.statusreader:actionBarDivider}</code></td><td> Custom divider drawable to use for elements in the action bar.</td></tr>
+           <tr><td><code>{@link #Theme_actionBarItemBackground net.indivia.hacklabbo.statusreader:actionBarItemBackground}</code></td><td> Custom item state list drawable background for action bar items.</td></tr>
+           <tr><td><code>{@link #Theme_actionBarPopupTheme net.indivia.hacklabbo.statusreader:actionBarPopupTheme}</code></td><td> Reference to a theme that should be used to inflate popups
+             shown by widgets in the action bar.</td></tr>
+           <tr><td><code>{@link #Theme_actionBarSize net.indivia.hacklabbo.statusreader:actionBarSize}</code></td><td> Size of the Action Bar, including the contextual
+             bar used to present Action Modes.</td></tr>
+           <tr><td><code>{@link #Theme_actionBarSplitStyle net.indivia.hacklabbo.statusreader:actionBarSplitStyle}</code></td><td> Reference to a style for the split Action Bar.</td></tr>
+           <tr><td><code>{@link #Theme_actionBarStyle net.indivia.hacklabbo.statusreader:actionBarStyle}</code></td><td> Reference to a style for the Action Bar </td></tr>
+           <tr><td><code>{@link #Theme_actionBarTabBarStyle net.indivia.hacklabbo.statusreader:actionBarTabBarStyle}</code></td><td></td></tr>
+           <tr><td><code>{@link #Theme_actionBarTabStyle net.indivia.hacklabbo.statusreader:actionBarTabStyle}</code></td><td> Default style for tabs within an action bar </td></tr>
+           <tr><td><code>{@link #Theme_actionBarTabTextStyle net.indivia.hacklabbo.statusreader:actionBarTabTextStyle}</code></td><td></td></tr>
+           <tr><td><code>{@link #Theme_actionBarTheme net.indivia.hacklabbo.statusreader:actionBarTheme}</code></td><td> Reference to a theme that should be used to inflate the
+             action bar.</td></tr>
+           <tr><td><code>{@link #Theme_actionBarWidgetTheme net.indivia.hacklabbo.statusreader:actionBarWidgetTheme}</code></td><td> Reference to a theme that should be used to inflate widgets
+             and layouts destined for the action bar.</td></tr>
+           <tr><td><code>{@link #Theme_actionButtonStyle net.indivia.hacklabbo.statusreader:actionButtonStyle}</code></td><td> Default action button style.</td></tr>
+           <tr><td><code>{@link #Theme_actionDropDownStyle net.indivia.hacklabbo.statusreader:actionDropDownStyle}</code></td><td> Default ActionBar dropdown style.</td></tr>
+           <tr><td><code>{@link #Theme_actionMenuTextAppearance net.indivia.hacklabbo.statusreader:actionMenuTextAppearance}</code></td><td> TextAppearance style that will be applied to text that
+             appears within action menu items.</td></tr>
+           <tr><td><code>{@link #Theme_actionMenuTextColor net.indivia.hacklabbo.statusreader:actionMenuTextColor}</code></td><td> Color for text that appears within action menu items.</td></tr>
+           <tr><td><code>{@link #Theme_actionModeBackground net.indivia.hacklabbo.statusreader:actionModeBackground}</code></td><td> Background drawable to use for action mode UI </td></tr>
+           <tr><td><code>{@link #Theme_actionModeCloseButtonStyle net.indivia.hacklabbo.statusreader:actionModeCloseButtonStyle}</code></td><td></td></tr>
+           <tr><td><code>{@link #Theme_actionModeCloseDrawable net.indivia.hacklabbo.statusreader:actionModeCloseDrawable}</code></td><td> Drawable to use for the close action mode button </td></tr>
+           <tr><td><code>{@link #Theme_actionModeCopyDrawable net.indivia.hacklabbo.statusreader:actionModeCopyDrawable}</code></td><td> Drawable to use for the Copy action button in Contextual Action Bar </td></tr>
+           <tr><td><code>{@link #Theme_actionModeCutDrawable net.indivia.hacklabbo.statusreader:actionModeCutDrawable}</code></td><td> Drawable to use for the Cut action button in Contextual Action Bar </td></tr>
+           <tr><td><code>{@link #Theme_actionModeFindDrawable net.indivia.hacklabbo.statusreader:actionModeFindDrawable}</code></td><td> Drawable to use for the Find action button in WebView selection action modes </td></tr>
+           <tr><td><code>{@link #Theme_actionModePasteDrawable net.indivia.hacklabbo.statusreader:actionModePasteDrawable}</code></td><td> Drawable to use for the Paste action button in Contextual Action Bar </td></tr>
+           <tr><td><code>{@link #Theme_actionModePopupWindowStyle net.indivia.hacklabbo.statusreader:actionModePopupWindowStyle}</code></td><td> PopupWindow style to use for action modes when showing as a window overlay.</td></tr>
+           <tr><td><code>{@link #Theme_actionModeSelectAllDrawable net.indivia.hacklabbo.statusreader:actionModeSelectAllDrawable}</code></td><td> Drawable to use for the Select all action button in Contextual Action Bar </td></tr>
+           <tr><td><code>{@link #Theme_actionModeShareDrawable net.indivia.hacklabbo.statusreader:actionModeShareDrawable}</code></td><td> Drawable to use for the Share action button in WebView selection action modes </td></tr>
+           <tr><td><code>{@link #Theme_actionModeSplitBackground net.indivia.hacklabbo.statusreader:actionModeSplitBackground}</code></td><td> Background drawable to use for action mode UI in the lower split bar </td></tr>
+           <tr><td><code>{@link #Theme_actionModeStyle net.indivia.hacklabbo.statusreader:actionModeStyle}</code></td><td></td></tr>
+           <tr><td><code>{@link #Theme_actionModeWebSearchDrawable net.indivia.hacklabbo.statusreader:actionModeWebSearchDrawable}</code></td><td> Drawable to use for the Web Search action button in WebView selection action modes </td></tr>
+           <tr><td><code>{@link #Theme_actionOverflowButtonStyle net.indivia.hacklabbo.statusreader:actionOverflowButtonStyle}</code></td><td></td></tr>
+           <tr><td><code>{@link #Theme_actionOverflowMenuStyle net.indivia.hacklabbo.statusreader:actionOverflowMenuStyle}</code></td><td></td></tr>
+           <tr><td><code>{@link #Theme_activityChooserViewStyle net.indivia.hacklabbo.statusreader:activityChooserViewStyle}</code></td><td> Default ActivityChooserView style.</td></tr>
+           <tr><td><code>{@link #Theme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
+           <tr><td><code>{@link #Theme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
+           <tr><td><code>{@link #Theme_buttonBarButtonStyle net.indivia.hacklabbo.statusreader:buttonBarButtonStyle}</code></td><td> A style that may be applied to Buttons placed within a
+             LinearLayout with the style buttonBarStyle to form a button bar.</td></tr>
+           <tr><td><code>{@link #Theme_buttonBarStyle net.indivia.hacklabbo.statusreader:buttonBarStyle}</code></td><td> A style that may be applied to horizontal LinearLayouts
+         to form a button bar.</td></tr>
+           <tr><td><code>{@link #Theme_colorAccent net.indivia.hacklabbo.statusreader:colorAccent}</code></td><td> Bright complement to the primary branding color.</td></tr>
+           <tr><td><code>{@link #Theme_colorButtonNormal net.indivia.hacklabbo.statusreader:colorButtonNormal}</code></td><td> The color applied to framework buttons in their normal state.</td></tr>
+           <tr><td><code>{@link #Theme_colorControlActivated net.indivia.hacklabbo.statusreader:colorControlActivated}</code></td><td> The color applied to framework controls in their activated (ex.</td></tr>
+           <tr><td><code>{@link #Theme_colorControlHighlight net.indivia.hacklabbo.statusreader:colorControlHighlight}</code></td><td> The color applied to framework control highlights (ex.</td></tr>
+           <tr><td><code>{@link #Theme_colorControlNormal net.indivia.hacklabbo.statusreader:colorControlNormal}</code></td><td> The color applied to framework controls in their normal state.</td></tr>
+           <tr><td><code>{@link #Theme_colorPrimary net.indivia.hacklabbo.statusreader:colorPrimary}</code></td><td> The primary branding color for the app.</td></tr>
+           <tr><td><code>{@link #Theme_colorPrimaryDark net.indivia.hacklabbo.statusreader:colorPrimaryDark}</code></td><td> Dark variant of the primary branding color.</td></tr>
+           <tr><td><code>{@link #Theme_colorSwitchThumbNormal net.indivia.hacklabbo.statusreader:colorSwitchThumbNormal}</code></td><td> The color applied to framework switch thumbs in their normal state.</td></tr>
+           <tr><td><code>{@link #Theme_dividerHorizontal net.indivia.hacklabbo.statusreader:dividerHorizontal}</code></td><td> A drawable that may be used as a horizontal divider between visual elements.</td></tr>
+           <tr><td><code>{@link #Theme_dividerVertical net.indivia.hacklabbo.statusreader:dividerVertical}</code></td><td> A drawable that may be used as a vertical divider between visual elements.</td></tr>
+           <tr><td><code>{@link #Theme_dropDownListViewStyle net.indivia.hacklabbo.statusreader:dropDownListViewStyle}</code></td><td> ListPopupWindow compatibility </td></tr>
+           <tr><td><code>{@link #Theme_dropdownListPreferredItemHeight net.indivia.hacklabbo.statusreader:dropdownListPreferredItemHeight}</code></td><td> The preferred item height for dropdown lists.</td></tr>
+           <tr><td><code>{@link #Theme_editTextBackground net.indivia.hacklabbo.statusreader:editTextBackground}</code></td><td> EditText background drawable.</td></tr>
+           <tr><td><code>{@link #Theme_editTextColor net.indivia.hacklabbo.statusreader:editTextColor}</code></td><td> EditText text foreground color.</td></tr>
+           <tr><td><code>{@link #Theme_homeAsUpIndicator net.indivia.hacklabbo.statusreader:homeAsUpIndicator}</code></td><td> Specifies a drawable to use for the 'home as up' indicator.</td></tr>
+           <tr><td><code>{@link #Theme_listChoiceBackgroundIndicator net.indivia.hacklabbo.statusreader:listChoiceBackgroundIndicator}</code></td><td> Drawable used as a background for selected list items.</td></tr>
+           <tr><td><code>{@link #Theme_listPopupWindowStyle net.indivia.hacklabbo.statusreader:listPopupWindowStyle}</code></td><td></td></tr>
+           <tr><td><code>{@link #Theme_listPreferredItemHeight net.indivia.hacklabbo.statusreader:listPreferredItemHeight}</code></td><td> The preferred list item height.</td></tr>
+           <tr><td><code>{@link #Theme_listPreferredItemHeightLarge net.indivia.hacklabbo.statusreader:listPreferredItemHeightLarge}</code></td><td> A larger, more robust list item height.</td></tr>
+           <tr><td><code>{@link #Theme_listPreferredItemHeightSmall net.indivia.hacklabbo.statusreader:listPreferredItemHeightSmall}</code></td><td> A smaller, sleeker list item height.</td></tr>
+           <tr><td><code>{@link #Theme_listPreferredItemPaddingLeft net.indivia.hacklabbo.statusreader:listPreferredItemPaddingLeft}</code></td><td> The preferred padding along the left edge of list items.</td></tr>
+           <tr><td><code>{@link #Theme_listPreferredItemPaddingRight net.indivia.hacklabbo.statusreader:listPreferredItemPaddingRight}</code></td><td> The preferred padding along the right edge of list items.</td></tr>
+           <tr><td><code>{@link #Theme_panelBackground net.indivia.hacklabbo.statusreader:panelBackground}</code></td><td> The background of a panel when it is inset from the left and right edges of the screen.</td></tr>
+           <tr><td><code>{@link #Theme_panelMenuListTheme net.indivia.hacklabbo.statusreader:panelMenuListTheme}</code></td><td> Default Panel Menu style.</td></tr>
+           <tr><td><code>{@link #Theme_panelMenuListWidth net.indivia.hacklabbo.statusreader:panelMenuListWidth}</code></td><td> Default Panel Menu width.</td></tr>
+           <tr><td><code>{@link #Theme_popupMenuStyle net.indivia.hacklabbo.statusreader:popupMenuStyle}</code></td><td> Default PopupMenu style.</td></tr>
+           <tr><td><code>{@link #Theme_popupWindowStyle net.indivia.hacklabbo.statusreader:popupWindowStyle}</code></td><td> Default PopupWindow style.</td></tr>
+           <tr><td><code>{@link #Theme_searchViewStyle net.indivia.hacklabbo.statusreader:searchViewStyle}</code></td><td> Style for the search query widget.</td></tr>
+           <tr><td><code>{@link #Theme_selectableItemBackground net.indivia.hacklabbo.statusreader:selectableItemBackground}</code></td><td> A style that may be applied to buttons or other selectable items
+             that should react to pressed and focus states, but that do not
+             have a clear visual border along the edges.</td></tr>
+           <tr><td><code>{@link #Theme_selectableItemBackgroundBorderless net.indivia.hacklabbo.statusreader:selectableItemBackgroundBorderless}</code></td><td> Background drawable for borderless standalone items that need focus/pressed states.</td></tr>
+           <tr><td><code>{@link #Theme_spinnerDropDownItemStyle net.indivia.hacklabbo.statusreader:spinnerDropDownItemStyle}</code></td><td> Default Spinner style.</td></tr>
+           <tr><td><code>{@link #Theme_spinnerStyle net.indivia.hacklabbo.statusreader:spinnerStyle}</code></td><td> Default Spinner style.</td></tr>
+           <tr><td><code>{@link #Theme_switchStyle net.indivia.hacklabbo.statusreader:switchStyle}</code></td><td> Default style for the Switch widget.</td></tr>
+           <tr><td><code>{@link #Theme_textAppearanceLargePopupMenu net.indivia.hacklabbo.statusreader:textAppearanceLargePopupMenu}</code></td><td> Text color, typeface, size, and style for the text inside of a popup menu.</td></tr>
+           <tr><td><code>{@link #Theme_textAppearanceListItem net.indivia.hacklabbo.statusreader:textAppearanceListItem}</code></td><td> The preferred TextAppearance for the primary text of list items.</td></tr>
+           <tr><td><code>{@link #Theme_textAppearanceListItemSmall net.indivia.hacklabbo.statusreader:textAppearanceListItemSmall}</code></td><td> The preferred TextAppearance for the primary text of small list items.</td></tr>
+           <tr><td><code>{@link #Theme_textAppearanceSearchResultSubtitle net.indivia.hacklabbo.statusreader:textAppearanceSearchResultSubtitle}</code></td><td> Text color, typeface, size, and style for system search result subtitle.</td></tr>
+           <tr><td><code>{@link #Theme_textAppearanceSearchResultTitle net.indivia.hacklabbo.statusreader:textAppearanceSearchResultTitle}</code></td><td> Text color, typeface, size, and style for system search result title.</td></tr>
+           <tr><td><code>{@link #Theme_textAppearanceSmallPopupMenu net.indivia.hacklabbo.statusreader:textAppearanceSmallPopupMenu}</code></td><td> Text color, typeface, size, and style for small text inside of a popup menu.</td></tr>
+           <tr><td><code>{@link #Theme_textColorSearchUrl net.indivia.hacklabbo.statusreader:textColorSearchUrl}</code></td><td> Text color for urls in search suggestions, used by things like global search </td></tr>
+           <tr><td><code>{@link #Theme_toolbarNavigationButtonStyle net.indivia.hacklabbo.statusreader:toolbarNavigationButtonStyle}</code></td><td> Default Toolar NavigationButtonStyle </td></tr>
+           <tr><td><code>{@link #Theme_toolbarStyle net.indivia.hacklabbo.statusreader:toolbarStyle}</code></td><td> Default Toolbar style.</td></tr>
+           <tr><td><code>{@link #Theme_windowActionBar net.indivia.hacklabbo.statusreader:windowActionBar}</code></td><td> Flag indicating whether this window should have an Action Bar
+             in place of the usual title bar.</td></tr>
+           <tr><td><code>{@link #Theme_windowActionBarOverlay net.indivia.hacklabbo.statusreader:windowActionBarOverlay}</code></td><td> Flag indicating whether this window's Action Bar should overlay
+             application content.</td></tr>
+           <tr><td><code>{@link #Theme_windowActionModeOverlay net.indivia.hacklabbo.statusreader:windowActionModeOverlay}</code></td><td> Flag indicating whether action modes should overlay window content
+             when there is not reserved space for their UI (such as an Action Bar).</td></tr>
+           <tr><td><code>{@link #Theme_windowFixedHeightMajor net.indivia.hacklabbo.statusreader:windowFixedHeightMajor}</code></td><td> A fixed height for the window along the major axis of the screen,
+             that is, when in portrait.</td></tr>
+           <tr><td><code>{@link #Theme_windowFixedHeightMinor net.indivia.hacklabbo.statusreader:windowFixedHeightMinor}</code></td><td> A fixed height for the window along the minor axis of the screen,
+             that is, when in landscape.</td></tr>
+           <tr><td><code>{@link #Theme_windowFixedWidthMajor net.indivia.hacklabbo.statusreader:windowFixedWidthMajor}</code></td><td> A fixed width for the window along the major axis of the screen,
+             that is, when in landscape.</td></tr>
+           <tr><td><code>{@link #Theme_windowFixedWidthMinor net.indivia.hacklabbo.statusreader:windowFixedWidthMinor}</code></td><td> A fixed width for the window along the minor axis of the screen,
+             that is, when in portrait.</td></tr>
+           </table>
+           @see #Theme_actionBarDivider
+           @see #Theme_actionBarItemBackground
+           @see #Theme_actionBarPopupTheme
+           @see #Theme_actionBarSize
+           @see #Theme_actionBarSplitStyle
+           @see #Theme_actionBarStyle
+           @see #Theme_actionBarTabBarStyle
+           @see #Theme_actionBarTabStyle
+           @see #Theme_actionBarTabTextStyle
+           @see #Theme_actionBarTheme
+           @see #Theme_actionBarWidgetTheme
+           @see #Theme_actionButtonStyle
+           @see #Theme_actionDropDownStyle
+           @see #Theme_actionMenuTextAppearance
+           @see #Theme_actionMenuTextColor
+           @see #Theme_actionModeBackground
+           @see #Theme_actionModeCloseButtonStyle
+           @see #Theme_actionModeCloseDrawable
+           @see #Theme_actionModeCopyDrawable
+           @see #Theme_actionModeCutDrawable
+           @see #Theme_actionModeFindDrawable
+           @see #Theme_actionModePasteDrawable
+           @see #Theme_actionModePopupWindowStyle
+           @see #Theme_actionModeSelectAllDrawable
+           @see #Theme_actionModeShareDrawable
+           @see #Theme_actionModeSplitBackground
+           @see #Theme_actionModeStyle
+           @see #Theme_actionModeWebSearchDrawable
+           @see #Theme_actionOverflowButtonStyle
+           @see #Theme_actionOverflowMenuStyle
+           @see #Theme_activityChooserViewStyle
+           @see #Theme_android_windowAnimationStyle
+           @see #Theme_android_windowIsFloating
+           @see #Theme_buttonBarButtonStyle
+           @see #Theme_buttonBarStyle
+           @see #Theme_colorAccent
+           @see #Theme_colorButtonNormal
+           @see #Theme_colorControlActivated
+           @see #Theme_colorControlHighlight
+           @see #Theme_colorControlNormal
+           @see #Theme_colorPrimary
+           @see #Theme_colorPrimaryDark
+           @see #Theme_colorSwitchThumbNormal
+           @see #Theme_dividerHorizontal
+           @see #Theme_dividerVertical
+           @see #Theme_dropDownListViewStyle
+           @see #Theme_dropdownListPreferredItemHeight
+           @see #Theme_editTextBackground
+           @see #Theme_editTextColor
+           @see #Theme_homeAsUpIndicator
+           @see #Theme_listChoiceBackgroundIndicator
+           @see #Theme_listPopupWindowStyle
+           @see #Theme_listPreferredItemHeight
+           @see #Theme_listPreferredItemHeightLarge
+           @see #Theme_listPreferredItemHeightSmall
+           @see #Theme_listPreferredItemPaddingLeft
+           @see #Theme_listPreferredItemPaddingRight
+           @see #Theme_panelBackground
+           @see #Theme_panelMenuListTheme
+           @see #Theme_panelMenuListWidth
+           @see #Theme_popupMenuStyle
+           @see #Theme_popupWindowStyle
+           @see #Theme_searchViewStyle
+           @see #Theme_selectableItemBackground
+           @see #Theme_selectableItemBackgroundBorderless
+           @see #Theme_spinnerDropDownItemStyle
+           @see #Theme_spinnerStyle
+           @see #Theme_switchStyle
+           @see #Theme_textAppearanceLargePopupMenu
+           @see #Theme_textAppearanceListItem
+           @see #Theme_textAppearanceListItemSmall
+           @see #Theme_textAppearanceSearchResultSubtitle
+           @see #Theme_textAppearanceSearchResultTitle
+           @see #Theme_textAppearanceSmallPopupMenu
+           @see #Theme_textColorSearchUrl
+           @see #Theme_toolbarNavigationButtonStyle
+           @see #Theme_toolbarStyle
+           @see #Theme_windowActionBar
+           @see #Theme_windowActionBarOverlay
+           @see #Theme_windowActionModeOverlay
+           @see #Theme_windowFixedHeightMajor
+           @see #Theme_windowFixedHeightMinor
+           @see #Theme_windowFixedWidthMajor
+           @see #Theme_windowFixedWidthMinor
+         */
+        public static final int[] Theme = {
+            0x01010057, 0x010100ae, 0x7f010003, 0x7f010004,
+            0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008,
+            0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c,
+            0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010,
+            0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014,
+            0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018,
+            0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c,
+            0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020,
+            0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024,
+            0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028,
+            0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c,
+            0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030,
+            0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034,
+            0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038,
+            0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c,
+            0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040,
+            0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044,
+            0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048,
+            0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c,
+            0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050,
+            0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054
+        };
+        /**
+          <p>
+          @attr description
+           Custom divider drawable to use for elements in the action bar. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionBarDivider
+        */
+        public static final int Theme_actionBarDivider = 20;
+        /**
+          <p>
+          @attr description
+           Custom item state list drawable background for action bar items. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionBarItemBackground
+        */
+        public static final int Theme_actionBarItemBackground = 21;
+        /**
+          <p>
+          @attr description
+           Reference to a theme that should be used to inflate popups
+             shown by widgets in the action bar. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionBarPopupTheme
+        */
+        public static final int Theme_actionBarPopupTheme = 14;
+        /**
+          <p>
+          @attr description
+           Size of the Action Bar, including the contextual
+             bar used to present Action Modes. 
+
+
+          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+<p>May be one of the following constant values.</p>
+<table>
+<colgroup align="left" />
+<colgroup align="left" />
+<colgroup align="left" />
+<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
+<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
+</table>
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionBarSize
+        */
+        public static final int Theme_actionBarSize = 19;
+        /**
+          <p>
+          @attr description
+           Reference to a style for the split Action Bar. This style
+             controls the split component that holds the menu/action
+             buttons. actionBarStyle is still used for the primary
+             bar. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionBarSplitStyle
+        */
+        public static final int Theme_actionBarSplitStyle = 16;
+        /**
+          <p>
+          @attr description
+           Reference to a style for the Action Bar 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionBarStyle
+        */
+        public static final int Theme_actionBarStyle = 15;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#actionBarTabBarStyle}
+          attribute's value can be found in the {@link #Theme} array.
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          @attr name net.indivia.hacklabbo.statusreader:actionBarTabBarStyle
+        */
+        public static final int Theme_actionBarTabBarStyle = 10;
+        /**
+          <p>
+          @attr description
+           Default style for tabs within an action bar 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionBarTabStyle
+        */
+        public static final int Theme_actionBarTabStyle = 9;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#actionBarTabTextStyle}
+          attribute's value can be found in the {@link #Theme} array.
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          @attr name net.indivia.hacklabbo.statusreader:actionBarTabTextStyle
+        */
+        public static final int Theme_actionBarTabTextStyle = 11;
+        /**
+          <p>
+          @attr description
+           Reference to a theme that should be used to inflate the
+             action bar. This will be inherited by any widget inflated
+             into the action bar. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionBarTheme
+        */
+        public static final int Theme_actionBarTheme = 17;
+        /**
+          <p>
+          @attr description
+           Reference to a theme that should be used to inflate widgets
+             and layouts destined for the action bar. Most of the time
+             this will be a reference to the current theme, but when
+             the action bar has a significantly different contrast
+             profile than the rest of the activity the difference
+             can become important. If this is set to @null the current
+             theme will be used.
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionBarWidgetTheme
+        */
+        public static final int Theme_actionBarWidgetTheme = 18;
+        /**
+          <p>
+          @attr description
+           Default action button style. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionButtonStyle
+        */
+        public static final int Theme_actionButtonStyle = 44;
+        /**
+          <p>
+          @attr description
+           Default ActionBar dropdown style. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionDropDownStyle
+        */
+        public static final int Theme_actionDropDownStyle = 39;
+        /**
+          <p>
+          @attr description
+           TextAppearance style that will be applied to text that
+             appears within action menu items. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionMenuTextAppearance
+        */
+        public static final int Theme_actionMenuTextAppearance = 22;
+        /**
+          <p>
+          @attr description
+           Color for text that appears within action menu items. 
+ Color for text that appears within action menu items. 
+
+
+          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionMenuTextColor
+        */
+        public static final int Theme_actionMenuTextColor = 23;
+        /**
+          <p>
+          @attr description
+           Background drawable to use for action mode UI 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionModeBackground
+        */
+        public static final int Theme_actionModeBackground = 26;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#actionModeCloseButtonStyle}
+          attribute's value can be found in the {@link #Theme} array.
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          @attr name net.indivia.hacklabbo.statusreader:actionModeCloseButtonStyle
+        */
+        public static final int Theme_actionModeCloseButtonStyle = 25;
+        /**
+          <p>
+          @attr description
+           Drawable to use for the close action mode button 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionModeCloseDrawable
+        */
+        public static final int Theme_actionModeCloseDrawable = 28;
+        /**
+          <p>
+          @attr description
+           Drawable to use for the Copy action button in Contextual Action Bar 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionModeCopyDrawable
+        */
+        public static final int Theme_actionModeCopyDrawable = 30;
+        /**
+          <p>
+          @attr description
+           Drawable to use for the Cut action button in Contextual Action Bar 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionModeCutDrawable
+        */
+        public static final int Theme_actionModeCutDrawable = 29;
+        /**
+          <p>
+          @attr description
+           Drawable to use for the Find action button in WebView selection action modes 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionModeFindDrawable
+        */
+        public static final int Theme_actionModeFindDrawable = 34;
+        /**
+          <p>
+          @attr description
+           Drawable to use for the Paste action button in Contextual Action Bar 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionModePasteDrawable
+        */
+        public static final int Theme_actionModePasteDrawable = 31;
+        /**
+          <p>
+          @attr description
+           PopupWindow style to use for action modes when showing as a window overlay. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionModePopupWindowStyle
+        */
+        public static final int Theme_actionModePopupWindowStyle = 36;
+        /**
+          <p>
+          @attr description
+           Drawable to use for the Select all action button in Contextual Action Bar 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionModeSelectAllDrawable
+        */
+        public static final int Theme_actionModeSelectAllDrawable = 32;
+        /**
+          <p>
+          @attr description
+           Drawable to use for the Share action button in WebView selection action modes 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionModeShareDrawable
+        */
+        public static final int Theme_actionModeShareDrawable = 33;
+        /**
+          <p>
+          @attr description
+           Background drawable to use for action mode UI in the lower split bar 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionModeSplitBackground
+        */
+        public static final int Theme_actionModeSplitBackground = 27;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#actionModeStyle}
+          attribute's value can be found in the {@link #Theme} array.
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          @attr name net.indivia.hacklabbo.statusreader:actionModeStyle
+        */
+        public static final int Theme_actionModeStyle = 24;
+        /**
+          <p>
+          @attr description
+           Drawable to use for the Web Search action button in WebView selection action modes 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:actionModeWebSearchDrawable
+        */
+        public static final int Theme_actionModeWebSearchDrawable = 35;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#actionOverflowButtonStyle}
+          attribute's value can be found in the {@link #Theme} array.
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          @attr name net.indivia.hacklabbo.statusreader:actionOverflowButtonStyle
+        */
+        public static final int Theme_actionOverflowButtonStyle = 12;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#actionOverflowMenuStyle}
+          attribute's value can be found in the {@link #Theme} array.
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          @attr name net.indivia.hacklabbo.statusreader:actionOverflowMenuStyle
+        */
+        public static final int Theme_actionOverflowMenuStyle = 13;
+        /**
+          <p>
+          @attr description
+           Default ActivityChooserView style. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:activityChooserViewStyle
+        */
+        public static final int Theme_activityChooserViewStyle = 51;
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
+          attribute's value can be found in the {@link #Theme} array.
+          @attr name android:windowAnimationStyle
+        */
+        public static final int Theme_android_windowAnimationStyle = 1;
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
+          attribute's value can be found in the {@link #Theme} array.
+          @attr name android:windowIsFloating
+        */
+        public static final int Theme_android_windowIsFloating = 0;
+        /**
+          <p>
+          @attr description
+           A style that may be applied to Buttons placed within a
+             LinearLayout with the style buttonBarStyle to form a button bar. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:buttonBarButtonStyle
+        */
+        public static final int Theme_buttonBarButtonStyle = 46;
+        /**
+          <p>
+          @attr description
+           A style that may be applied to horizontal LinearLayouts
+         to form a button bar. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:buttonBarStyle
+        */
+        public static final int Theme_buttonBarStyle = 45;
+        /**
+          <p>
+          @attr description
+           Bright complement to the primary branding color. By default, this is the color applied
+             to framework controls (via colorControlActivated). 
+
+
+          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:colorAccent
+        */
+        public static final int Theme_colorAccent = 78;
+        /**
+          <p>
+          @attr description
+           The color applied to framework buttons in their normal state. 
+
+
+          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:colorButtonNormal
+        */
+        public static final int Theme_colorButtonNormal = 82;
+        /**
+          <p>
+          @attr description
+           The color applied to framework controls in their activated (ex. checked) state. 
+
+
+          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:colorControlActivated
+        */
+        public static final int Theme_colorControlActivated = 80;
+        /**
+          <p>
+          @attr description
+           The color applied to framework control highlights (ex. ripples, list selectors). 
+
+
+          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:colorControlHighlight
+        */
+        public static final int Theme_colorControlHighlight = 81;
+        /**
+          <p>
+          @attr description
+           The color applied to framework controls in their normal state. 
+
+
+          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:colorControlNormal
+        */
+        public static final int Theme_colorControlNormal = 79;
+        /**
+          <p>
+          @attr description
+           The primary branding color for the app. By default, this is the color applied to the
+             action bar background. 
+
+
+          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:colorPrimary
+        */
+        public static final int Theme_colorPrimary = 76;
+        /**
+          <p>
+          @attr description
+           Dark variant of the primary branding color. By default, this is the color applied to
+             the status bar (via statusBarColor) and navigation bar (via navigationBarColor). 
+
+
+          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:colorPrimaryDark
+        */
+        public static final int Theme_colorPrimaryDark = 77;
+        /**
+          <p>
+          @attr description
+           The color applied to framework switch thumbs in their normal state. 
+
+
+          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:colorSwitchThumbNormal
+        */
+        public static final int Theme_colorSwitchThumbNormal = 83;
+        /**
+          <p>
+          @attr description
+           A drawable that may be used as a horizontal divider between visual elements. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:dividerHorizontal
+        */
+        public static final int Theme_dividerHorizontal = 50;
+        /**
+          <p>
+          @attr description
+           A drawable that may be used as a vertical divider between visual elements. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:dividerVertical
+        */
+        public static final int Theme_dividerVertical = 49;
+        /**
+          <p>
+          @attr description
+           ListPopupWindow compatibility 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:dropDownListViewStyle
+        */
+        public static final int Theme_dropDownListViewStyle = 68;
+        /**
+          <p>
+          @attr description
+           The preferred item height for dropdown lists. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:dropdownListPreferredItemHeight
+        */
+        public static final int Theme_dropdownListPreferredItemHeight = 40;
+        /**
+          <p>
+          @attr description
+           EditText background drawable. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:editTextBackground
+        */
+        public static final int Theme_editTextBackground = 57;
+        /**
+          <p>
+          @attr description
+           EditText text foreground color. 
+
+
+          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:editTextColor
+        */
+        public static final int Theme_editTextColor = 56;
+        /**
+          <p>
+          @attr description
+           Specifies a drawable to use for the 'home as up' indicator. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:homeAsUpIndicator
+        */
+        public static final int Theme_homeAsUpIndicator = 43;
+        /**
+          <p>
+          @attr description
+           Drawable used as a background for selected list items. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:listChoiceBackgroundIndicator
+        */
+        public static final int Theme_listChoiceBackgroundIndicator = 75;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#listPopupWindowStyle}
+          attribute's value can be found in the {@link #Theme} array.
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          @attr name net.indivia.hacklabbo.statusreader:listPopupWindowStyle
+        */
+        public static final int Theme_listPopupWindowStyle = 69;
+        /**
+          <p>
+          @attr description
+           The preferred list item height. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:listPreferredItemHeight
+        */
+        public static final int Theme_listPreferredItemHeight = 63;
+        /**
+          <p>
+          @attr description
+           A larger, more robust list item height. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:listPreferredItemHeightLarge
+        */
+        public static final int Theme_listPreferredItemHeightLarge = 65;
+        /**
+          <p>
+          @attr description
+           A smaller, sleeker list item height. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:listPreferredItemHeightSmall
+        */
+        public static final int Theme_listPreferredItemHeightSmall = 64;
+        /**
+          <p>
+          @attr description
+           The preferred padding along the left edge of list items. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:listPreferredItemPaddingLeft
+        */
+        public static final int Theme_listPreferredItemPaddingLeft = 66;
+        /**
+          <p>
+          @attr description
+           The preferred padding along the right edge of list items. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:listPreferredItemPaddingRight
+        */
+        public static final int Theme_listPreferredItemPaddingRight = 67;
+        /**
+          <p>
+          @attr description
+           The background of a panel when it is inset from the left and right edges of the screen. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:panelBackground
+        */
+        public static final int Theme_panelBackground = 72;
+        /**
+          <p>
+          @attr description
+           Default Panel Menu style. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:panelMenuListTheme
+        */
+        public static final int Theme_panelMenuListTheme = 74;
+        /**
+          <p>
+          @attr description
+           Default Panel Menu width. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:panelMenuListWidth
+        */
+        public static final int Theme_panelMenuListWidth = 73;
+        /**
+          <p>
+          @attr description
+           Default PopupMenu style. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:popupMenuStyle
+        */
+        public static final int Theme_popupMenuStyle = 54;
+        /**
+          <p>
+          @attr description
+           Default PopupWindow style. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:popupWindowStyle
+        */
+        public static final int Theme_popupWindowStyle = 55;
+        /**
+          <p>
+          @attr description
+           Style for the search query widget. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:searchViewStyle
+        */
+        public static final int Theme_searchViewStyle = 62;
+        /**
+          <p>
+          @attr description
+           A style that may be applied to buttons or other selectable items
+             that should react to pressed and focus states, but that do not
+             have a clear visual border along the edges. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:selectableItemBackground
+        */
+        public static final int Theme_selectableItemBackground = 47;
+        /**
+          <p>
+          @attr description
+           Background drawable for borderless standalone items that need focus/pressed states. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:selectableItemBackgroundBorderless
+        */
+        public static final int Theme_selectableItemBackgroundBorderless = 48;
+        /**
+          <p>
+          @attr description
+           Default Spinner style. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:spinnerDropDownItemStyle
+        */
+        public static final int Theme_spinnerDropDownItemStyle = 42;
+        /**
+          <p>
+          @attr description
+           Default Spinner style. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:spinnerStyle
+        */
+        public static final int Theme_spinnerStyle = 41;
+        /**
+          <p>
+          @attr description
+           Default style for the Switch widget. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:switchStyle
+        */
+        public static final int Theme_switchStyle = 58;
+        /**
+          <p>
+          @attr description
+           Text color, typeface, size, and style for the text inside of a popup menu. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:textAppearanceLargePopupMenu
+        */
+        public static final int Theme_textAppearanceLargePopupMenu = 37;
+        /**
+          <p>
+          @attr description
+           The preferred TextAppearance for the primary text of list items. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:textAppearanceListItem
+        */
+        public static final int Theme_textAppearanceListItem = 70;
+        /**
+          <p>
+          @attr description
+           The preferred TextAppearance for the primary text of small list items. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:textAppearanceListItemSmall
+        */
+        public static final int Theme_textAppearanceListItemSmall = 71;
+        /**
+          <p>
+          @attr description
+           Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:textAppearanceSearchResultSubtitle
+        */
+        public static final int Theme_textAppearanceSearchResultSubtitle = 60;
+        /**
+          <p>
+          @attr description
+           Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:textAppearanceSearchResultTitle
+        */
+        public static final int Theme_textAppearanceSearchResultTitle = 59;
+        /**
+          <p>
+          @attr description
+           Text color, typeface, size, and style for small text inside of a popup menu. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:textAppearanceSmallPopupMenu
+        */
+        public static final int Theme_textAppearanceSmallPopupMenu = 38;
+        /**
+          <p>
+          @attr description
+           Text color for urls in search suggestions, used by things like global search 
+
+
+          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
+"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:textColorSearchUrl
+        */
+        public static final int Theme_textColorSearchUrl = 61;
+        /**
+          <p>
+          @attr description
+           Default Toolar NavigationButtonStyle 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:toolbarNavigationButtonStyle
+        */
+        public static final int Theme_toolbarNavigationButtonStyle = 53;
+        /**
+          <p>
+          @attr description
+           Default Toolbar style. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:toolbarStyle
+        */
+        public static final int Theme_toolbarStyle = 52;
+        /**
+          <p>
+          @attr description
+           Flag indicating whether this window should have an Action Bar
+             in place of the usual title bar. 
+
+
+          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:windowActionBar
+        */
+        public static final int Theme_windowActionBar = 2;
+        /**
+          <p>
+          @attr description
+           Flag indicating whether this window's Action Bar should overlay
+             application content. Does nothing if the window would not
+             have an Action Bar. 
+
+
+          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:windowActionBarOverlay
+        */
+        public static final int Theme_windowActionBarOverlay = 3;
+        /**
+          <p>
+          @attr description
+           Flag indicating whether action modes should overlay window content
+             when there is not reserved space for their UI (such as an Action Bar). 
+
+
+          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:windowActionModeOverlay
+        */
+        public static final int Theme_windowActionModeOverlay = 4;
+        /**
+          <p>
+          @attr description
+           A fixed height for the window along the major axis of the screen,
+             that is, when in portrait. Can be either an absolute dimension
+             or a fraction of the screen size in that dimension. 
+
+
+          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:windowFixedHeightMajor
+        */
+        public static final int Theme_windowFixedHeightMajor = 8;
+        /**
+          <p>
+          @attr description
+           A fixed height for the window along the minor axis of the screen,
+             that is, when in landscape. Can be either an absolute dimension
+             or a fraction of the screen size in that dimension. 
+
+
+          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:windowFixedHeightMinor
+        */
+        public static final int Theme_windowFixedHeightMinor = 6;
+        /**
+          <p>
+          @attr description
+           A fixed width for the window along the major axis of the screen,
+             that is, when in landscape. Can be either an absolute dimension
+             or a fraction of the screen size in that dimension. 
+
+
+          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:windowFixedWidthMajor
+        */
+        public static final int Theme_windowFixedWidthMajor = 5;
+        /**
+          <p>
+          @attr description
+           A fixed width for the window along the minor axis of the screen,
+             that is, when in portrait. Can be either an absolute dimension
+             or a fraction of the screen size in that dimension. 
+
+
+          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
+The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
+some parent container.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:windowFixedWidthMinor
+        */
+        public static final int Theme_windowFixedWidthMinor = 7;
+        /** Attributes that can be used with a Toolbar.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
+           <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td> Allows us to read in the minHeight attr pre-v16 </td></tr>
+           <tr><td><code>{@link #Toolbar_collapseContentDescription net.indivia.hacklabbo.statusreader:collapseContentDescription}</code></td><td> Text to set as the content description for the collapse button.</td></tr>
+           <tr><td><code>{@link #Toolbar_collapseIcon net.indivia.hacklabbo.statusreader:collapseIcon}</code></td><td> Icon drawable to use for the collapse button.</td></tr>
+           <tr><td><code>{@link #Toolbar_contentInsetEnd net.indivia.hacklabbo.statusreader:contentInsetEnd}</code></td><td> Minimum inset for content views within a bar.</td></tr>
+           <tr><td><code>{@link #Toolbar_contentInsetLeft net.indivia.hacklabbo.statusreader:contentInsetLeft}</code></td><td> Minimum inset for content views within a bar.</td></tr>
+           <tr><td><code>{@link #Toolbar_contentInsetRight net.indivia.hacklabbo.statusreader:contentInsetRight}</code></td><td> Minimum inset for content views within a bar.</td></tr>
+           <tr><td><code>{@link #Toolbar_contentInsetStart net.indivia.hacklabbo.statusreader:contentInsetStart}</code></td><td> Minimum inset for content views within a bar.</td></tr>
+           <tr><td><code>{@link #Toolbar_maxButtonHeight net.indivia.hacklabbo.statusreader:maxButtonHeight}</code></td><td></td></tr>
+           <tr><td><code>{@link #Toolbar_navigationContentDescription net.indivia.hacklabbo.statusreader:navigationContentDescription}</code></td><td> Text to set as the content description for the navigation button
+             located at the start of the toolbar.</td></tr>
+           <tr><td><code>{@link #Toolbar_navigationIcon net.indivia.hacklabbo.statusreader:navigationIcon}</code></td><td> Icon drawable to use for the navigation button located at
+             the start of the toolbar.</td></tr>
+           <tr><td><code>{@link #Toolbar_popupTheme net.indivia.hacklabbo.statusreader:popupTheme}</code></td><td> Reference to a theme that should be used to inflate popups
+             shown by widgets in the toolbar.</td></tr>
+           <tr><td><code>{@link #Toolbar_subtitle net.indivia.hacklabbo.statusreader:subtitle}</code></td><td> Specifies subtitle text used for navigationMode="normal" </td></tr>
+           <tr><td><code>{@link #Toolbar_subtitleTextAppearance net.indivia.hacklabbo.statusreader:subtitleTextAppearance}</code></td><td></td></tr>
+           <tr><td><code>{@link #Toolbar_theme net.indivia.hacklabbo.statusreader:theme}</code></td><td> Specifies a theme override for a view.</td></tr>
+           <tr><td><code>{@link #Toolbar_title net.indivia.hacklabbo.statusreader:title}</code></td><td></td></tr>
+           <tr><td><code>{@link #Toolbar_titleMarginBottom net.indivia.hacklabbo.statusreader:titleMarginBottom}</code></td><td></td></tr>
+           <tr><td><code>{@link #Toolbar_titleMarginEnd net.indivia.hacklabbo.statusreader:titleMarginEnd}</code></td><td></td></tr>
+           <tr><td><code>{@link #Toolbar_titleMarginStart net.indivia.hacklabbo.statusreader:titleMarginStart}</code></td><td></td></tr>
+           <tr><td><code>{@link #Toolbar_titleMarginTop net.indivia.hacklabbo.statusreader:titleMarginTop}</code></td><td></td></tr>
+           <tr><td><code>{@link #Toolbar_titleMargins net.indivia.hacklabbo.statusreader:titleMargins}</code></td><td></td></tr>
+           <tr><td><code>{@link #Toolbar_titleTextAppearance net.indivia.hacklabbo.statusreader:titleTextAppearance}</code></td><td></td></tr>
+           </table>
+           @see #Toolbar_android_gravity
+           @see #Toolbar_android_minHeight
+           @see #Toolbar_collapseContentDescription
+           @see #Toolbar_collapseIcon
+           @see #Toolbar_contentInsetEnd
+           @see #Toolbar_contentInsetLeft
+           @see #Toolbar_contentInsetRight
+           @see #Toolbar_contentInsetStart
+           @see #Toolbar_maxButtonHeight
+           @see #Toolbar_navigationContentDescription
+           @see #Toolbar_navigationIcon
+           @see #Toolbar_popupTheme
+           @see #Toolbar_subtitle
+           @see #Toolbar_subtitleTextAppearance
+           @see #Toolbar_theme
+           @see #Toolbar_title
+           @see #Toolbar_titleMarginBottom
+           @see #Toolbar_titleMarginEnd
+           @see #Toolbar_titleMarginStart
+           @see #Toolbar_titleMarginTop
+           @see #Toolbar_titleMargins
+           @see #Toolbar_titleTextAppearance
+         */
+        public static final int[] Toolbar = {
+            0x010100af, 0x01010140, 0x7f010000, 0x7f010057,
+            0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a,
+            0x7f01006c, 0x7f01008a, 0x7f01008b, 0x7f01008c,
+            0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090,
+            0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094,
+            0x7f010095, 0x7f010096
+        };
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#gravity}
+          attribute's value can be found in the {@link #Toolbar} array.
+          @attr name android:gravity
+        */
+        public static final int Toolbar_android_gravity = 0;
+        /**
+          <p>
+          @attr description
+           Allows us to read in the minHeight attr pre-v16 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#minHeight}.
+          @attr name android:minHeight
+        */
+        public static final int Toolbar_android_minHeight = 1;
+        /**
+          <p>
+          @attr description
+           Text to set as the content description for the collapse button. 
+
+
+          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:collapseContentDescription
+        */
+        public static final int Toolbar_collapseContentDescription = 19;
+        /**
+          <p>
+          @attr description
+           Icon drawable to use for the collapse button. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:collapseIcon
+        */
+        public static final int Toolbar_collapseIcon = 18;
+        /**
+          <p>
+          @attr description
+           Minimum inset for content views within a bar. Navigation buttons and
+             menu views are excepted. Only valid for some themes and configurations. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:contentInsetEnd
+        */
+        public static final int Toolbar_contentInsetEnd = 5;
+        /**
+          <p>
+          @attr description
+           Minimum inset for content views within a bar. Navigation buttons and
+             menu views are excepted. Only valid for some themes and configurations. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:contentInsetLeft
+        */
+        public static final int Toolbar_contentInsetLeft = 6;
+        /**
+          <p>
+          @attr description
+           Minimum inset for content views within a bar. Navigation buttons and
+             menu views are excepted. Only valid for some themes and configurations. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:contentInsetRight
+        */
+        public static final int Toolbar_contentInsetRight = 7;
+        /**
+          <p>
+          @attr description
+           Minimum inset for content views within a bar. Navigation buttons and
+             menu views are excepted. Only valid for some themes and configurations. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:contentInsetStart
+        */
+        public static final int Toolbar_contentInsetStart = 4;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#maxButtonHeight}
+          attribute's value can be found in the {@link #Toolbar} array.
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          @attr name net.indivia.hacklabbo.statusreader:maxButtonHeight
+        */
+        public static final int Toolbar_maxButtonHeight = 16;
+        /**
+          <p>
+          @attr description
+           Text to set as the content description for the navigation button
+             located at the start of the toolbar. 
+
+
+          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:navigationContentDescription
+        */
+        public static final int Toolbar_navigationContentDescription = 21;
+        /**
+          <p>
+          @attr description
+           Icon drawable to use for the navigation button located at
+             the start of the toolbar. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:navigationIcon
+        */
+        public static final int Toolbar_navigationIcon = 20;
+        /**
+          <p>
+          @attr description
+           Reference to a theme that should be used to inflate popups
+             shown by widgets in the toolbar. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:popupTheme
+        */
+        public static final int Toolbar_popupTheme = 8;
+        /**
+          <p>
+          @attr description
+           Specifies subtitle text used for navigationMode="normal" 
+
+
+          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:subtitle
+        */
+        public static final int Toolbar_subtitle = 3;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#subtitleTextAppearance}
+          attribute's value can be found in the {@link #Toolbar} array.
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          @attr name net.indivia.hacklabbo.statusreader:subtitleTextAppearance
+        */
+        public static final int Toolbar_subtitleTextAppearance = 10;
+        /**
+          <p>
+          @attr description
+           Specifies a theme override for a view. When a theme override is set, the
+             view will be inflated using a {@link android.content.Context} themed with
+             the specified resource. During XML inflation, any child views under the
+             view with a theme override will inherit the themed context. 
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:theme
+        */
+        public static final int Toolbar_theme = 17;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#title}
+          attribute's value can be found in the {@link #Toolbar} array.
+
+
+          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          @attr name net.indivia.hacklabbo.statusreader:title
+        */
+        public static final int Toolbar_title = 2;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#titleMarginBottom}
+          attribute's value can be found in the {@link #Toolbar} array.
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          @attr name net.indivia.hacklabbo.statusreader:titleMarginBottom
+        */
+        public static final int Toolbar_titleMarginBottom = 15;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#titleMarginEnd}
+          attribute's value can be found in the {@link #Toolbar} array.
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          @attr name net.indivia.hacklabbo.statusreader:titleMarginEnd
+        */
+        public static final int Toolbar_titleMarginEnd = 13;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#titleMarginStart}
+          attribute's value can be found in the {@link #Toolbar} array.
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          @attr name net.indivia.hacklabbo.statusreader:titleMarginStart
+        */
+        public static final int Toolbar_titleMarginStart = 12;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#titleMarginTop}
+          attribute's value can be found in the {@link #Toolbar} array.
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          @attr name net.indivia.hacklabbo.statusreader:titleMarginTop
+        */
+        public static final int Toolbar_titleMarginTop = 14;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#titleMargins}
+          attribute's value can be found in the {@link #Toolbar} array.
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          @attr name net.indivia.hacklabbo.statusreader:titleMargins
+        */
+        public static final int Toolbar_titleMargins = 11;
+        /**
+          <p>This symbol is the offset where the {@link net.indivia.hacklabbo.statusreader.R.attr#titleTextAppearance}
+          attribute's value can be found in the {@link #Toolbar} array.
+
+
+          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
+or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
+          @attr name net.indivia.hacklabbo.statusreader:titleTextAppearance
+        */
+        public static final int Toolbar_titleTextAppearance = 9;
+        /** Attributes that can be used with a View.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td> Boolean that controls whether a view can take focus.</td></tr>
+           <tr><td><code>{@link #View_paddingEnd net.indivia.hacklabbo.statusreader:paddingEnd}</code></td><td> Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.</td></tr>
+           <tr><td><code>{@link #View_paddingStart net.indivia.hacklabbo.statusreader:paddingStart}</code></td><td> Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.</td></tr>
+           </table>
+           @see #View_android_focusable
+           @see #View_paddingEnd
+           @see #View_paddingStart
+         */
+        public static final int[] View = {
+            0x010100da, 0x7f01006e, 0x7f01006f
+        };
+        /**
+          <p>
+          @attr description
+           Boolean that controls whether a view can take focus.  By default the user can not
+             move focus to a view; by setting this attribute to true the view is
+             allowed to take focus.  This value does not impact the behavior of
+             directly calling {@link android.view.View#requestFocus}, which will
+             always request focus regardless of this view.  It only impacts where
+             focus navigation will try to move focus. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#focusable}.
+          @attr name android:focusable
+        */
+        public static final int View_android_focusable = 0;
+        /**
+          <p>
+          @attr description
+           Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:paddingEnd
+        */
+        public static final int View_paddingEnd = 2;
+        /**
+          <p>
+          @attr description
+           Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. 
+
+
+          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
+Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
+in (inches), mm (millimeters).
+<p>This may also be a reference to a resource (in the form
+"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
+theme attribute (in the form
+"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
+containing a value of this type.
+          <p>This is a private symbol.
+          @attr name net.indivia.hacklabbo.statusreader:paddingStart
+        */
+        public static final int View_paddingStart = 1;
+        /** Attributes that can be used with a ViewStubCompat.
+           <p>Includes the following attributes:</p>
+           <table>
+           <colgroup align="left" />
+           <colgroup align="left" />
+           <tr><th>Attribute</th><th>Description</th></tr>
+           <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
+           <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td> Overrides the id of the inflated View with this value.</td></tr>
+           <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td> Supply an identifier for the layout resource to inflate when the ViewStub
+             becomes visible or when forced to do so.</td></tr>
+           </table>
+           @see #ViewStubCompat_android_id
+           @see #ViewStubCompat_android_inflatedId
+           @see #ViewStubCompat_android_layout
+         */
+        public static final int[] ViewStubCompat = {
+            0x010100d0, 0x010100f2, 0x010100f3
+        };
+        /**
+          <p>This symbol is the offset where the {@link android.R.attr#id}
+          attribute's value can be found in the {@link #ViewStubCompat} array.
+          @attr name android:id
+        */
+        public static final int ViewStubCompat_android_id = 0;
+        /**
+          <p>
+          @attr description
+           Overrides the id of the inflated View with this value. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#inflatedId}.
+          @attr name android:inflatedId
+        */
+        public static final int ViewStubCompat_android_inflatedId = 2;
+        /**
+          <p>
+          @attr description
+           Supply an identifier for the layout resource to inflate when the ViewStub
+             becomes visible or when forced to do so. The layout resource must be a
+             valid reference to a layout. 
+          <p>This corresponds to the global attribute
+          resource symbol {@link android.R.attr#layout}.
+          @attr name android:layout
+        */
+        public static final int ViewStubCompat_android_layout = 1;
+    };
+}

BIN
ic_launcher-web.png


+ 20 - 0
proguard-project.txt

@@ -0,0 +1,20 @@
+# To enable ProGuard in your project, edit project.properties
+# to define the proguard.config property as described in that file.
+#
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in ${sdk.dir}/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the ProGuard
+# include property in project.properties.
+#
+# For more details, see
+#   http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+#   public *;
+#}

+ 15 - 0
project.properties

@@ -0,0 +1,15 @@
+# This file is automatically generated by Android Tools.
+# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
+#
+# This file must be checked in Version Control Systems.
+#
+# To customize properties used by the Ant build system edit
+# "ant.properties", and override values to adapt the script to your
+# project structure.
+#
+# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
+#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
+
+# Project target.
+target=android-22
+android.library.reference.1=../appcompat_v7

BIN
res/drawable-hdpi/green_btn.png


BIN
res/drawable-hdpi/ic_launcher.png


BIN
res/drawable-hdpi/ic_menu_refresh.png


BIN
res/drawable-hdpi/ic_menu_settings.png


BIN
res/drawable-hdpi/red_btn.png


BIN
res/drawable-hdpi/software.png


BIN
res/drawable-mdpi/ic_launcher.png


BIN
res/drawable-xhdpi/ic_launcher.png


BIN
res/drawable-xxhdpi/ic_launcher.png


+ 98 - 0
res/layout/activity_main.xml

@@ -0,0 +1,98 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:tools="http://schemas.android.com/tools"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:background="#ffffff"
+    android:orientation="vertical" >
+
+    <ImageButton
+        android:id="@+id/status_btn"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:layout_gravity="center_horizontal"
+        android:background="#ffffff"
+        android:clickable="false"
+        android:focusable="false"
+        android:focusableInTouchMode="false"
+        android:longClickable="false"
+        android:paddingTop="5dp"
+        android:scaleType="center"
+        android:src="@drawable/red_btn" />
+
+    <TextView
+        android:id="@+id/server_label"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:paddingLeft="10dp"
+        android:paddingTop="2dp"
+        android:text="Server:"
+        android:textAppearance="?android:attr/textAppearanceSmall"
+        android:textStyle="italic" />
+
+    <TextView
+        android:id="@+id/server_value"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:paddingBottom="10dp"
+        android:paddingLeft="10dp"
+        android:text="http://isopen.hacklabbo.indivia.net/hacklabbo/state.json"
+        android:textAppearance="?android:attr/textAppearanceSmall" />
+
+    <TextView
+        android:id="@+id/status_label"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:paddingLeft="10dp"
+        android:paddingTop="2dp"
+        android:text="Status:"
+        android:textAppearance="?android:attr/textAppearanceSmall"
+        android:textStyle="italic" />
+
+    <TextView
+        android:id="@+id/status_value"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:paddingBottom="10dp"
+        android:paddingLeft="10dp"
+        android:text="@string/close"
+        android:textAppearance="?android:attr/textAppearanceSmall" />
+
+    <TextView
+        android:id="@+id/last_status_change_label"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:paddingLeft="10dp"
+        android:paddingTop="2dp"
+        android:text="Last Change:"
+        android:textAppearance="?android:attr/textAppearanceSmall"
+        android:textStyle="italic" />
+
+    <TextView
+        android:id="@+id/last_status_change_value"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:paddingBottom="10dp"
+        android:paddingLeft="10dp"
+        android:text="@string/mai"
+        android:textAppearance="?android:attr/textAppearanceSmall" />
+
+    <TextView
+        android:id="@+id/last_refresh_label"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:paddingLeft="10dp"
+        android:paddingTop="2dp"
+        android:text="Last Refresh:"
+        android:textAppearance="?android:attr/textAppearanceSmall"
+        android:textStyle="italic" />
+
+    <TextView
+        android:id="@+id/last_refresh_value"
+        android:layout_width="wrap_content"
+        android:layout_height="wrap_content"
+        android:paddingBottom="10dp"
+        android:paddingLeft="10dp"
+        android:text="@string/mai"
+        android:textAppearance="?android:attr/textAppearanceSmall" />
+
+</LinearLayout>

+ 19 - 0
res/menu/main.xml

@@ -0,0 +1,19 @@
+<menu xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:app="http://schemas.android.com/apk/res-auto"
+    xmlns:tools="http://schemas.android.com/tools"
+    tools:context="net.indivia.hacklabbo.statusreader.MainActivity" >
+
+    <item
+        android:id="@+id/action_settings"
+        android:orderInCategory="100"
+        android:title="@string/menu_action_settings"
+        android:icon="@drawable/ic_menu_settings"
+        app:showAsAction="never"/>
+
+    <item
+        android:id="@+id/action_refresh"
+        android:orderInCategory="99"
+        android:icon="@drawable/ic_menu_refresh"
+        android:title="@string/menu_action_refresh"
+        app:showAsAction="never"/>
+</menu>

+ 11 - 0
res/values-v11/styles.xml

@@ -0,0 +1,11 @@
+<resources>
+
+    <!--
+        Base application theme for API 11+. This theme completely replaces
+        AppBaseTheme from res/values/styles.xml on API 11+ devices.
+    -->
+    <style name="AppBaseTheme" parent="Theme.AppCompat.Light">
+        <!-- API 11 theme customizations can go here. -->
+    </style>
+
+</resources>

+ 12 - 0
res/values-v14/styles.xml

@@ -0,0 +1,12 @@
+<resources>
+
+    <!--
+        Base application theme for API 14+. This theme completely replaces
+        AppBaseTheme from BOTH res/values/styles.xml and
+        res/values-v11/styles.xml on API 14+ devices.
+    -->
+    <style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">
+        <!-- API 14 theme customizations can go here. -->
+    </style>
+
+</resources>

+ 10 - 0
res/values-w820dp/dimens.xml

@@ -0,0 +1,10 @@
+<resources>
+
+    <!--
+         Example customization of dimensions originally defined in res/values/dimens.xml
+         (such as screen margins) for screens with more than 820dp of available width. This
+         would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively).
+    -->
+    <dimen name="activity_horizontal_margin">64dp</dimen>
+
+</resources>

+ 7 - 0
res/values/dimens.xml

@@ -0,0 +1,7 @@
+<resources>
+
+    <!-- Default screen margins, per the Android Design guidelines. -->
+    <dimen name="activity_horizontal_margin">16dp</dimen>
+    <dimen name="activity_vertical_margin">16dp</dimen>
+
+</resources>

+ 12 - 0
res/values/keys.xml

@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+    <string name="key_refresh_service">service</string>
+    <string name="key_refresh_status_time">refresh_time</string>
+    <string name="key_server_name">server_name</string>
+    
+    <string name="key_states">states</string>
+    <string name="key_status">status</string>
+    <string name="key_last_refresh">last_refresh</string>
+    <string name="key_status_changed">status_changed</string>
+    <string name="key_update_service">update</string>
+</resources>

+ 21 - 0
res/values/prefs.xml

@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+    <string name="prefs_refresh_category">Refresh</string>
+    
+    <string name="prefs_refresh_service_title">Refresh automatico</string>
+    <string name="prefs_refresh_service_summary">Aggiornamento dello status mediante service in background</string>
+    
+    <string name="prefs_refresh_status_time_title">Refresh time</string>
+    
+    <string name="prefs_refresh_status_time_dialogTitle">Scegli un intervallo:</string>
+    <string name="prefs_refresh_status_time_summary">Tempo di attesa per il refresh dello status</string>
+
+    <string name="prefs_app_category">Applicazione</string>
+    
+    <string name="prefs_server_name_title">Server Name</string>
+    <string name="prefs_server_name_summary">Url dal quale fare il GET dello status</string>
+    
+    <string name="prefs_update_title">Update Service</string>
+    <string name="prefs_update_summary">All\'avvio vengono verificati se ci sono aggiornamenti per l\'applicazione</string>
+
+</resources>

+ 17 - 0
res/values/prefs_arrays.xml

@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+    <string-array name="prefs_refresh_time">
+        <item>3 minuti</item>
+        <item>5 minuti</item>
+        <item>10 minuti</item>
+        <item>15 minuti</item>
+        <item>30 minuti</item>
+    </string-array>
+    <string-array name="prefs_refresh_time_value">
+        <item>180</item>
+		<item>300</item>
+        <item>600</item>
+        <item>900</item>
+        <item>2400</item>
+    </string-array>
+</resources>

+ 11 - 0
res/values/strings.xml

@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+    <string name="app_name">StatusReader</string>
+    <string name="open">Open</string>
+    <string name="close">Close</string>
+    <string name="mai">Mai</string>
+    <string name="menu_action_settings">Settings</string>
+    <string name="menu_action_refresh">Refresh</string>
+    <string name="app_update_notify_title">Aggiornamento</string>
+    <string name="app_update_new_version">Nuova versione di StatusReader</string>
+</resources>

+ 20 - 0
res/values/styles.xml

@@ -0,0 +1,20 @@
+<resources>
+
+    <!--
+        Base application theme, dependent on API level. This theme is replaced
+        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
+    -->
+    <style name="AppBaseTheme" parent="Theme.AppCompat.Light">
+        <!--
+            Theme customizations available in newer API levels can go in
+            res/values-vXX/styles.xml, while customizations related to
+            backward-compatibility can go here.
+        -->
+    </style>
+
+    <!-- Application theme. -->
+    <style name="AppTheme" parent="AppBaseTheme">
+        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
+    </style>
+
+</resources>

+ 38 - 0
res/xml/prefs.xml

@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>
+<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
+    <PreferenceCategory android:title="@string/prefs_refresh_category">
+        <CheckBoxPreference 
+            android:title="@string/prefs_refresh_service_title" 
+            android:key="@string/key_refresh_service" 
+            android:persistent="true"
+            android:summary="@string/prefs_refresh_service_summary"
+            />
+		<ListPreference 
+		    android:entryValues="@array/prefs_refresh_time_value" 
+		    android:persistent="true"
+    		android:entries="@array/prefs_refresh_time"
+    		android:title="@string/prefs_refresh_status_time_title"
+          	android:dialogTitle="@string/prefs_refresh_status_time_dialogTitle" 
+          	android:key="@string/key_refresh_status_time" 
+          	android:summary="@string/prefs_refresh_status_time_summary"
+          	android:dependency="service"
+          	android:defaultValue="600"
+          	/>
+	</PreferenceCategory>
+	
+	<PreferenceCategory android:title="@string/prefs_app_category">
+	    <EditTextPreference
+	        android:title="@string/prefs_server_name_title"
+	        android:summary="@string/prefs_server_name_summary"
+	        android:key="@string/key_server_name"
+	        android:persistent="true"
+	        android:defaultValue="isopen.hacklabbo.indivia.net/hacklabbo/state.json"
+	        />
+		<CheckBoxPreference 
+            android:title="@string/prefs_update_title" 
+            android:key="@string/key_update_service" 
+            android:persistent="true"
+            android:summary="@string/prefs_update_summary" 
+            />
+	</PreferenceCategory>
+</PreferenceScreen>

+ 145 - 0
src/net/indivia/hacklabbo/statusreader/CheckUpdate.java

@@ -0,0 +1,145 @@
+
+package net.indivia.hacklabbo.statusreader;
+
+import org.json.JSONObject;
+
+import android.annotation.SuppressLint;
+import android.annotation.TargetApi;
+import android.app.Notification;
+import android.app.NotificationManager;
+import android.app.PendingIntent;
+import android.app.Service;
+import android.content.Context;
+import android.content.Intent;
+import android.content.res.Resources;
+import android.net.Uri;
+import android.os.Build;
+import android.os.IBinder;
+import android.provider.Settings;
+import android.util.Log;
+
+@SuppressLint("NewApi")
+public class CheckUpdate extends Service {
+  /*private final static String app_site = "http://isopen.hacklabbo.indivia.net/";*/
+  private final static String LOG_TAG = "CheckUpdate";
+  private final static String app_apk = "net.indivia.hacklabbo.statusreader";
+  private final static String app_site = "http://ginex.indivia.net/";
+  private final static String app_www_current_apk = "latest.apk";
+  private final static String app_www_current_version = "update.json";
+  //DEBUG:
+  private final static String app_www_current_version_fail = "update-fail.json";
+  private final static String app_www_current_version_true = "update-true.json";
+
+  public final static int NOTIFY_APP_UPDATE = 2;
+
+  private BgThread bgThread;
+  private NotificationManager notificationManager;
+  private Notification notification;
+  private PendingIntent pIntent;
+  private int notificationNumber;
+  private Resources res;
+
+  @Override
+  public void onCreate() {
+    super.onCreate();
+    res = getResources();
+
+    bgThread = new BgThread();
+    bgThread.start();
+    
+    
+    Intent intent = new Intent(this, Downloader.class);
+    String app_uri = app_site + app_www_current_apk;
+    intent.putExtra("checkUpdate", NOTIFY_APP_UPDATE);
+    intent.setData(Uri.parse(app_uri));
+    intent.putExtra("urlpath", app_uri);
+    
+    pIntent = PendingIntent.getService(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT );
+    
+    if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB)
+    	notifyBuilder();
+    else
+    	getNotify();
+    
+    notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
+    notification.flags |= Notification.FLAG_AUTO_CANCEL;
+
+    Log.i(LOG_TAG, "Service Created");
+  }
+  
+  @TargetApi(Build.VERSION_CODES.HONEYCOMB)
+  public void notifyBuilder(){
+	    notification = new Notification.Builder(this)
+	    	.setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
+        	.setContentTitle(getString(R.string.app_update_notify_title))
+        	.setContentText(getString(R.string.app_update_new_version))
+        	.setLights(0xFFFF0000, 500, 500)
+        	.setSmallIcon(R.drawable.software)
+        	.setContentIntent(pIntent)
+        	.build();
+  }
+  
+  @SuppressWarnings("deprecation")
+  public void getNotify(){
+		notification = new Notification(
+				R.drawable.software, 
+				getString(R.string.app_update_notify_title), 
+				System.currentTimeMillis());		
+		notification.flags |= Notification.FLAG_AUTO_CANCEL;
+
+  }
+
+  @SuppressWarnings("deprecation")
+  public void sendNotification(int newVersion) {
+    notification.number=++notificationNumber;
+    notification.setLatestEventInfo (this,
+        res.getString(R.string.app_update_notify_title),
+        res.getString(R.string.app_update_new_version),
+        pIntent);
+
+    notificationManager.notify(NOTIFY_APP_UPDATE, notification);
+  }
+
+  private final class BgThread extends Thread {
+    public void run() {
+      try {
+    	  //String json = SNetwork.GET(app_site + app_www_current_version);
+    	  String json = SNetwork.GET(app_site + app_www_current_version_true);
+    	  JSONObject jObject = new JSONObject(json);
+    	  
+    	  int newVersion = jObject.getInt("version");
+    	  int curVersion = getPackageManager().getPackageInfo(app_apk, 0).versionCode;
+    	  //Log.d(LOG_TAG,"cur:"+curVersion+" new:"+newVersion);
+
+    	  if (newVersion > curVersion){
+    		  if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB)
+    			  notificationManager.notify(0, notification);
+    		  else
+    			  sendNotification(newVersion);
+    	  }
+ 
+      } catch (Exception e) {
+    	  e.printStackTrace();
+      }
+
+      stopSelf();
+    }
+  }
+
+  @Override
+  public int onStartCommand(Intent intent, int flags, int startId) {
+    Log.i(LOG_TAG, "Service Started");
+    return super.onStartCommand(intent, flags, startId);
+  }
+
+  @Override
+  public void onDestroy() {
+    super.onDestroy();
+    Log.i(LOG_TAG, "Service Destroyed");
+  }
+
+  @Override
+  public IBinder onBind(Intent intent) {
+    return null;
+  }
+}

+ 97 - 0
src/net/indivia/hacklabbo/statusreader/Downloader.java

@@ -0,0 +1,97 @@
+package net.indivia.hacklabbo.statusreader;
+
+import java.io.BufferedInputStream;
+import java.io.File;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.net.HttpURLConnection;
+import java.net.URL;
+import java.net.URLConnection;
+
+import android.app.Activity;
+import android.app.IntentService;
+import android.app.ProgressDialog;
+import android.content.Intent;
+import android.net.Uri;
+import android.os.Bundle;
+import android.os.Message;
+import android.os.Messenger;
+import android.util.Log;
+
+public class Downloader extends IntentService {
+	private static final String LOG_TAG = "Downloader";
+    public static final int UPDATE_PROGRESS = 8344;
+	private int resultDownload = Activity.RESULT_CANCELED;
+	private File file;
+	public ProgressDialog mProgressDialog;
+	
+	public Downloader() {
+		super(LOG_TAG);
+	}
+	
+	public void sendNotification(Intent i) {
+		Bundle extras = i.getExtras();
+		if (extras != null) {
+			Messenger messenger = (Messenger) extras.get("messenger");
+			Message msg = Message.obtain();
+			msg.arg1 = resultDownload;
+			msg.obj = file.getAbsolutePath();
+			try {
+				messenger.send(msg);
+			} catch (android.os.RemoteException e1) {
+				Log.w(getClass().getName(), "Exception sending message", e1);
+			}
+
+		}
+	}	
+	
+	@Override
+	protected void onHandleIntent(Intent intent) {
+		try {
+			Log.d(LOG_TAG, "onHandIntent");
+			int cu = intent.getIntExtra("checkUpdate", 0);
+			String urlfile = intent.getStringExtra("urlpath");
+            URL url = new URL(urlfile);
+            
+            file = SUtility.getFile(urlfile,"");
+            if (cu != CheckUpdate.NOTIFY_APP_UPDATE){
+            	Log.d(LOG_TAG,"file exist & cu != 2 - STOP");     			
+            	resultDownload = Activity.RESULT_FIRST_USER;
+        		sendNotification(intent);
+            } else {
+            	if (file.exists()) {
+            		file.delete();
+            	}
+            	
+                URLConnection c = (HttpURLConnection) url.openConnection();            
+                c.connect();
+                
+                InputStream input = new BufferedInputStream(c.getInputStream());
+                OutputStream output = new FileOutputStream(file);
+                byte data[] = new byte[1024];
+                int count;
+                while ((count = input.read(data)) != -1) {
+                    output.write(data, 0, count);
+                }
+                output.flush();
+                output.close();
+                input.close();
+                            
+        		Intent i = new Intent(Intent.ACTION_VIEW);
+        		i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
+        		i.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
+        		startActivity(i);			
+            }
+        } catch (IOException e) {
+            e.getStackTrace();
+        }
+	}
+	
+	@Override
+	public void onDestroy() {
+		super.onDestroy();
+		Log.i(LOG_TAG, "Service Destroyed");
+	}
+}

+ 130 - 0
src/net/indivia/hacklabbo/statusreader/MainActivity.java

@@ -0,0 +1,130 @@
+package net.indivia.hacklabbo.statusreader;
+
+import android.support.v7.app.ActionBarActivity;
+import android.content.Intent;
+import android.content.SharedPreferences;
+import android.os.Bundle;
+import android.preference.PreferenceManager;
+import android.util.Log;
+import android.view.Menu;
+import android.view.MenuItem;
+import android.widget.ImageButton;
+import android.widget.TextView;
+
+public class MainActivity extends ActionBarActivity {
+	private static final String LOG_TAG = "MainActivity";
+	private SharedPreferences prefs;
+	public final static int 
+		MENU_SETTINGS_ID = 10,
+		MENU_REFRESH_ID = 11;
+	private static ImageButton ibStatusBtn;
+	private static TextView 
+		tvStatusValue,tvServerValue,tvLastRefreshValue,tvLastStatusValue;
+	
+
+	@Override
+	protected void onCreate(Bundle savedInstanceState) {
+		super.onCreate(savedInstanceState);
+		setContentView(R.layout.activity_main);
+		
+		prefs = PreferenceManager.getDefaultSharedPreferences(this);
+		ibStatusBtn = (ImageButton) findViewById(R.id.status_btn);
+		tvStatusValue = (TextView) findViewById(R.id.status_value);
+		tvServerValue = (TextView) findViewById(R.id.server_value);
+		tvLastRefreshValue = (TextView) findViewById(R.id.last_refresh_value);
+		tvLastStatusValue = (TextView) findViewById(R.id.last_status_change_value);
+	}
+	
+	@Override
+	protected void onResume(){
+		super.onResume();
+		LoadPreferences();
+	}
+	
+	private void LoadPreferences(){
+		//le preferenze relative ai servizi
+		Boolean refresh_service =prefs.getBoolean(getString(R.string.key_refresh_service), false);
+	    Boolean update_service = prefs.getBoolean("update", false);
+	    
+	    //setto il display 
+	    setDisplay(null,null,null);
+		
+	    //avvio il service che verifica se ci sono update del software
+		if (update_service)
+			startService(new Intent(this, CheckUpdate.class));
+			
+		//avvio il service che verifica se ci sono update dello stato
+		//TODO: se il service è già avviato?
+		if (refresh_service)
+			startService(setUpdateStatusIntent(true));
+	}
+	
+	public Intent setUpdateStatusIntent(Boolean isCicleService){
+		Intent intent = new Intent(this, StatusUpdate.class);
+		
+		String serverName = prefs.getString(getString(R.string.key_server_name), StatusUpdate.DEF_SITE);
+		int refresh_time =  Integer.parseInt(prefs.getString(getString(R.string.key_refresh_status_time), "600"));
+		
+		intent.putExtra("serverName", serverName);
+		
+		SharedPreferences states = getApplicationContext().getSharedPreferences(getString(R.string.key_states), 0);
+		Boolean oldStatus = states.getBoolean(getString(R.string.key_status), false);
+		intent.putExtra("oldStatus", oldStatus);
+		intent.putExtra("isCicleService", isCicleService);
+		if(isCicleService)
+			intent.putExtra("refreshTime", refresh_time);
+		
+		return intent;
+	}
+	
+	public void setDisplay(Boolean status, String last_refresh, String status_changed){
+		String serverName = prefs.getString(getString(R.string.key_server_name), StatusUpdate.DEF_SITE);
+	    SharedPreferences states = getApplicationContext().getSharedPreferences(getString(R.string.key_states), 0);
+	    
+	    String mai = getString(R.string.key_status_changed);
+	    if(status == null)
+	    	status = states.getBoolean(getString(R.string.key_status), false);
+	    
+	    if(last_refresh == null) 
+	    	last_refresh =  states.getString(getString(R.string.key_last_refresh), mai);
+	    
+	    if(status_changed == null) 
+	    	status_changed =  states.getString(getString(R.string.key_status_changed), mai);
+	    
+	    int statusImg = R.drawable.red_btn,
+	    	statusValue = R.string.close;
+	    if(status){
+	    	statusImg = R.drawable.green_btn;
+	    	statusValue = R.string.open;
+	    }
+	    ibStatusBtn.setImageResource(statusImg);
+    	tvStatusValue.setText(statusValue);
+	    
+	    tvLastRefreshValue.setText(last_refresh);
+		tvLastStatusValue.setText(status_changed);
+		tvServerValue.setText(serverName);
+	}
+	
+	@Override
+	public boolean onCreateOptionsMenu(Menu menu) {
+		// Inflate the menu; this adds items to the action bar if it is present.
+		getMenuInflater().inflate(R.menu.main, menu);
+		return true;
+	}
+
+	@Override
+	public boolean onOptionsItemSelected(MenuItem item) {
+		int id = item.getItemId();
+		if (id == R.id.action_settings) {
+			startActivity(new Intent(this, PrefScreen.class));
+		} else if( id== R.id.action_refresh){
+			startService(setUpdateStatusIntent(false));
+		}
+		return super.onOptionsItemSelected(item);
+	}
+	
+	@Override
+    protected void onStop() {
+      super.onStop();
+    }
+}

+ 67 - 0
src/net/indivia/hacklabbo/statusreader/PrefScreen.java

@@ -0,0 +1,67 @@
+package net.indivia.hacklabbo.statusreader;
+
+import android.app.Dialog;
+import android.content.Context;
+import android.content.Intent;
+import android.content.SharedPreferences;
+import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
+import android.net.Uri;
+import android.os.Bundle;
+import android.preference.Preference;
+import android.preference.Preference.OnPreferenceClickListener;
+import android.preference.PreferenceActivity;
+import android.preference.PreferenceManager;
+import android.util.Log;
+import android.widget.Toast;
+
+public class PrefScreen extends PreferenceActivity {
+	private static final String LOG_TAG = "PreferenceScreenActivity";
+	private static String 
+		SPREF_KEY_SERV,
+		SPREF_KEY_REFRESH,
+		SPREF_KEY_UPDATE;
+	private static Context ctx;
+
+    @Override
+    public void onCreate(Bundle savedInstanceState) {
+        super.onCreate(savedInstanceState);
+        extracted();
+        ctx = getApplicationContext();
+        
+        SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getBaseContext());
+        prefs.registerOnSharedPreferenceChangeListener(mListener);
+        
+		/*SPREF_KEY_SERV = getString(R.string.key_refresh_service);
+		SPREF_KEY_REFRESH = getString(R.string.key_refresh_time);
+		SPREF_KEY_UPDATE = getString(R.string.key_update_service);*/
+    }
+
+	private void extracted() {
+		addPreferencesFromResource(R.xml.prefs);
+	}
+    
+    public OnSharedPreferenceChangeListener mListener = new OnSharedPreferenceChangeListener() {        
+        @Override
+        public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
+        	boolean preference;
+        	Log.d(LOG_TAG, "onSharedPrefCh(): "+key);
+        	/*if (key.equalsIgnoreCase(SPREF_KEY_SERV)){
+        		preference = sharedPreferences.getBoolean(SPREF_KEY_SERV, false);
+        		if(preference){
+        			startService(ATab.feedBurnI);
+        		} else {
+        			stopService(ATab.feedBurnI);
+        		}
+        	} else if (key.equalsIgnoreCase(SPREF_KEY_REFRESH)) {
+        		stopService(ATab.feedBurnI);
+        		startService(ATab.feedBurnI);
+        	}*/
+        	
+        	/*preference = sharedPreferences.getBoolean(SPREF_KEY_UPDATE, true);
+        	if (preference){
+                Intent iUpdate = new Intent(ctx,CheckUpdate.class);
+        		startService(iUpdate);
+        	}*/
+        }
+    };
+}

+ 99 - 0
src/net/indivia/hacklabbo/statusreader/SNetwork.java

@@ -0,0 +1,99 @@
+package net.indivia.hacklabbo.statusreader;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.net.HttpURLConnection;
+import java.net.MalformedURLException;
+import java.net.ProtocolException;
+import java.net.URL;
+import android.annotation.TargetApi;
+import android.net.ConnectivityManager;
+import android.net.NetworkInfo;
+import android.os.Build;
+import android.os.StrictMode;
+import android.util.Log;
+
+public class SNetwork {
+	public static final String LOG_TAG = "SNetwork";
+	
+    public static boolean isConnected(ConnectivityManager cm) {
+        boolean connected = false;
+
+        if (cm != null) {
+            NetworkInfo[] netInfo = cm.getAllNetworkInfo();
+
+            for (NetworkInfo ni : netInfo) {
+            	Log.d(LOG_TAG, "type:"+ni.getTypeName()+" conn:"+ni.isConnected()
+            			+" avv:"+ni.isAvailable() );
+                if ((ni.getTypeName().equalsIgnoreCase("WIFI") || 
+                	 ni.getTypeName().equalsIgnoreCase("MOBILE")) 
+                	 && ni.isConnected() && ni.isAvailable()){
+                	connected = true;
+                	break;
+                }
+            }
+        }
+
+        return connected;
+    }
+    
+    @TargetApi(Build.VERSION_CODES.GINGERBREAD)
+	public static String GET(String uri){
+    	String result = "";
+    	HttpURLConnection con;
+    	
+		try {
+			con = (HttpURLConnection) ( new URL(uri)).openConnection();
+	    	try {
+				con.setRequestMethod("GET");
+		    	con.setDoOutput(false);
+		    	try {
+		    		if (android.os.Build.VERSION.SDK_INT > 9) {
+		    		    StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
+		    		    StrictMode.setThreadPolicy(policy);
+		    		}
+					con.connect();
+					
+					InputStream is = con.getInputStream();
+		            if(is != null)
+		                result = convertInputStreamToString(is);
+		            else
+		                result = "Did not work!";
+					
+					con.disconnect();
+				} catch (IOException e) {
+					Log.d(LOG_TAG,"no json");
+					result = "Il file json non esiste";
+					e.printStackTrace();
+				}
+			} catch (ProtocolException e1) {
+				Log.d(LOG_TAG,"protocoll");
+				e1.printStackTrace();
+			}
+		} catch (MalformedURLException e2) {
+			Log.d(LOG_TAG,"mal url");
+			result = "Manca il protocollo";
+			e2.printStackTrace();
+		} catch (IOException e2) {
+			Log.d(LOG_TAG,"IO 2");
+			e2.printStackTrace();
+		}
+ 
+        return result;
+    }
+ 
+    private static String convertInputStreamToString(InputStream inputStream) throws IOException{
+    	String line = "", result = "";
+    	
+    	BufferedReader bufferedReader = new BufferedReader( new InputStreamReader(inputStream));
+        
+        while((line = bufferedReader.readLine()) != null)
+            result += line;
+ 
+        inputStream.close();
+        
+        return result;
+    }
+}

+ 54 - 0
src/net/indivia/hacklabbo/statusreader/SUtility.java

@@ -0,0 +1,54 @@
+package net.indivia.hacklabbo.statusreader;
+
+import java.io.File;
+
+import android.annotation.SuppressLint;
+import android.annotation.TargetApi;
+import android.content.Context;
+import android.content.SharedPreferences;
+import android.content.res.Resources;
+import android.os.Build;
+import android.os.Environment;
+import android.util.Log;
+
+public class SUtility {
+	public static final String LOG_TAG = "SUtility";
+	
+	@SuppressLint("NewApi")
+	public static void saveState(Context ctx, Boolean status, String last_refresh, String status_change){
+		Resources res = ctx.getResources();
+	    //storing
+	    SharedPreferences states = ctx.getApplicationContext().getSharedPreferences(res.getString(R.string.key_states), 0);
+	    SharedPreferences.Editor editor = states.edit();
+	    
+	    editor.putBoolean(res.getString(R.string.key_status), status);
+	    editor.putString(res.getString(R.string.key_last_refresh), last_refresh);
+	    editor.putString(res.getString(R.string.key_status_changed), status_change);
+	    
+	    if(Build.VERSION.SDK_INT > Build.VERSION_CODES.FROYO)
+	    	editor.apply();
+	    else
+	    	commitShared(editor);
+	}
+	
+	@TargetApi(Build.VERSION_CODES.FROYO)
+	private static void commitShared(SharedPreferences.Editor editor){
+		editor.commit();
+	}
+
+	public static File getFile(String url, String reldir) {
+		final String ADIR = "/StatusReader/" ;
+		File file, apath;
+
+		String[] fileUrlParts = url.split("/");
+		apath = new File(Environment.getExternalStorageDirectory()+ ADIR + reldir);
+		if (! apath.exists()){
+			apath.mkdirs();
+		}
+
+		file = new File(apath.toString()+ "/" + fileUrlParts[fileUrlParts.length-1]);
+		Log.d(LOG_TAG,"external storage state:"+Environment.getExternalStorageState());
+    
+    	return file;
+	}
+}

+ 184 - 0
src/net/indivia/hacklabbo/statusreader/StatusUpdate.java

@@ -0,0 +1,184 @@
+package net.indivia.hacklabbo.statusreader;
+
+import java.text.SimpleDateFormat;
+import java.util.Calendar;
+import java.util.Locale;
+
+import org.json.JSONException;
+import org.json.JSONObject;
+
+import android.annotation.SuppressLint;
+import android.annotation.TargetApi;
+import android.app.Notification;
+import android.app.NotificationManager;
+import android.app.PendingIntent;
+import android.app.Service;
+import android.content.Context;
+import android.content.Intent;
+import android.content.res.Resources;
+import android.net.ConnectivityManager;
+import android.net.Uri;
+import android.os.Build;
+import android.os.IBinder;
+import android.provider.Settings;
+import android.util.Log;
+
+@SuppressLint("NewApi")
+public class StatusUpdate extends Service {
+	// private final static String app_site =
+	// "http://isopen.hacklabbo.indivia.net/";
+	private final static String app_site = "http://ginex.indivia.net/";
+	private final static String LOG_TAG = "StatusUpdate";
+	// public final static String DEF_SITE =
+	// "http://isopen.hacklabbo.indivia.net/hacklabbo/state.json";
+	public final static String DEF_SITE = "http://ginex.indivia.net/state.json";
+	private final static String app_www_current_apk = "latest.apk";
+
+	public final static int NOTIFY_APP_UPDATE = 2;
+
+	private BgThread bgThread;
+	private NotificationManager notificationManager;
+	private Notification notification;
+	private PendingIntent pIntent;
+	private int notificationNumber;
+	private Resources res;
+	private static String serverName;
+	private static Boolean oldStatus, isCicleService;
+	private static int refreshTime;
+	private ConnectivityManager cm; 
+	@Override
+	public void onCreate() {
+		super.onCreate();
+		res = getResources();
+		cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
+
+		bgThread = new BgThread();
+		bgThread.start();
+
+		String app_uri = app_site + app_www_current_apk;
+		Intent i = new Intent(this, MainActivity.class);
+		i.putExtra("checkUpdate", NOTIFY_APP_UPDATE);
+		i.setData(Uri.parse(app_uri));
+		i.putExtra("urlpath", app_uri);
+
+		pIntent = PendingIntent.getActivity(this, 0, i,
+				PendingIntent.FLAG_UPDATE_CURRENT);
+
+		notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
+
+		Log.i(LOG_TAG, "Service Created");
+	}
+
+	@TargetApi(Build.VERSION_CODES.HONEYCOMB)
+	public void notifyBuilder(String status) {
+		notification = new Notification.Builder(this)
+				.setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
+				// .setContentTitle(getString(R.string.app_update_notify_title))
+				.setContentTitle("StatusReader: cambio di stato")
+				.setContentText("Stato cambiato a: " + status)
+				.setLights(0xFFFF0000, 500, 500)
+				// TODO: cambiare l'icona
+				.setSmallIcon(R.drawable.software).setContentIntent(pIntent)
+				.setAutoCancel(true).build();
+	}
+
+	// TODO: cambiare titolo icone
+	@SuppressWarnings("deprecation")
+	public void getNotify() {
+		notification = new Notification(R.drawable.software,
+				getString(R.string.app_update_notify_title),
+				System.currentTimeMillis());
+		notification.flags |= Notification.FLAG_AUTO_CANCEL;
+
+	}
+
+	@SuppressWarnings("deprecation")
+	public void sendNotification(int newVersion) {
+		notification.number = ++notificationNumber;
+		notification.setLatestEventInfo(this,
+				res.getString(R.string.app_update_notify_title),
+				res.getString(R.string.app_update_new_version), pIntent);
+
+		notificationManager.notify(NOTIFY_APP_UPDATE, notification);
+	}
+
+	private final class BgThread extends Thread {
+		public void run() {
+			do {
+				if (SNetwork.isConnected(cm)) {
+					Log.i(LOG_TAG, "Service Cicle");
+					String json = SNetwork.GET(serverName);
+					try {
+						JSONObject jObject = new JSONObject(json);
+						boolean newStatus = jObject.getBoolean("open");
+						String statusChange = jObject.getString("date");
+
+						Calendar c = Calendar.getInstance();
+						SimpleDateFormat dateFormat = new SimpleDateFormat(
+								"yyyy-MM-dd'T'HH:mm:ssZZZZZ", Locale.ITALY);
+						String last_refresh = dateFormat.format(c.getTime());
+
+						if (newStatus != oldStatus) {
+							String status = res.getString(R.string.close);
+							if (newStatus)
+								status = res.getString(R.string.open);
+
+							if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
+								notifyBuilder(status);
+								notificationManager.notify(0, notification);
+							} else {
+								getNotify();
+								sendNotification(1);
+							}
+						}
+						SUtility.saveState(getApplicationContext(), newStatus,
+								last_refresh, statusChange);
+
+						if (!isCicleService) {
+							stopSelf();
+							Log.i(LOG_TAG, "Service stop");
+							// setDisplay(newStatus, last_refresh, statusChange);
+						}
+
+						try {
+							Thread.sleep(refreshTime);
+						} catch (InterruptedException ie) {
+							Log.d(LOG_TAG,
+									"Qualcosa è andato storto con il timer.\n"
+											+ ie.toString());
+						}
+					} catch (JSONException e) {
+						e.printStackTrace();
+					}
+				} else {
+					Log.d(LOG_TAG, "Non c'è connessione");
+				}
+			} while (isCicleService);
+		}
+	}
+
+	@Override
+	public int onStartCommand(Intent intent, int flags, int startId) {
+		isCicleService = intent.getBooleanExtra("isCicleService", false);
+		if (isCicleService)
+			refreshTime = intent.getIntExtra("refreshTime", 0);
+
+		serverName = intent.getStringExtra("serverName");
+		oldStatus = intent.getBooleanExtra("oldStatus", false);
+
+		Log.i(LOG_TAG, "Service Started");
+		return super.onStartCommand(intent, flags, startId);
+	}
+
+	@Override
+	public void onDestroy() {
+		super.onDestroy();
+		Log.i(LOG_TAG, "Service Destroyed");
+	}
+
+	@Override
+	public IBinder onBind(Intent intent) {
+		return null;
+	}
+
+}