├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.md ├── bin ├── AndroidManifest.xml ├── AndroidTest.apk ├── NumberCircleProgressBar.apk ├── R.txt ├── classes.dex ├── classes │ ├── android │ │ └── support │ │ │ └── v7 │ │ │ └── appcompat │ │ │ ├── R$anim.class │ │ │ ├── R$attr.class │ │ │ ├── R$bool.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$integer.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$styleable.class │ │ │ └── R.class │ └── com │ │ └── cjl │ │ ├── androidtest │ │ ├── BuildConfig.class │ │ ├── R$anim.class │ │ ├── R$attr.class │ │ ├── R$bool.class │ │ ├── R$color.class │ │ ├── R$dimen.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$integer.class │ │ ├── R$layout.class │ │ ├── R$menu.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ ├── R$styleable.class │ │ └── R.class │ │ └── numbercircleprogressbar │ │ ├── MainActivity$1$1.class │ │ ├── MainActivity$1.class │ │ ├── MainActivity.class │ │ ├── NumberCircleProgressBar$ProgressTextVisibility.class │ │ └── NumberCircleProgressBar.class ├── dexedLibs │ ├── android-support-v4-8fc1b72171b3bf36c4d53b0740a0e2f7.jar │ ├── android-support-v4-d3cfe945859fa17f9c9b0fde3bb7818e.jar │ ├── android-support-v7-appcompat-7839ae8881f16bcee9743bdf5ec00724.jar │ └── appcompat_v7-3421726ede696bee0a91dbda2ad3a95f.jar ├── jarlist.cache ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ └── drawable-xxhdpi │ │ └── ic_launcher.png └── resources.ap_ ├── gen ├── android │ └── support │ │ └── v7 │ │ └── appcompat │ │ └── R.java └── com │ └── cjl │ └── androidtest │ ├── BuildConfig.java │ └── R.java ├── ic_launcher-web.png ├── illustration ├── rising_water_1.gif ├── rising_water_2.png ├── rotate_1.gif ├── rotate_2.png └── zoning.png ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── layout │ └── activity_main.xml ├── menu │ └── main.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml ├── values-w820dp │ └── dimens.xml └── values │ ├── attrs.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── cjl └── numbercircleprogressbar ├── MainActivity.java └── NumberCircleProgressBar.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | NumberCircleProgressBar 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | NumberCircleProgressBar 2 | ======================= 3 | 4 | The NumberCircleProgressBar is a bar, slim and sexy. I decided to do this after I saw [@daimajia/NumberProgressBar](https://github.com/daimajia/NumberProgressBar). And I made some change for the progressbar's shape and style. 5 | 6 | --- 7 | 8 | ###Illustration 9 | --- 10 | ![NumberCircleProgressBar1](https://github.com/cjl/NumberCircleProgressBar/blob/master/illustration/rotate_1.gif) 11 | ![NumberCircleProgressBar2](https://github.com/cjl/NumberCircleProgressBar/blob/master/illustration/rotate_2.png) 12 | ![NumberCircleProgressBar3](https://github.com/cjl/NumberCircleProgressBar/blob/master/illustration/rising_water_1.gif) 13 | ![NumberCircleProgressBar4](https://github.com/cjl/NumberCircleProgressBar/blob/master/illustration/rising_water_2.png) 14 | 15 | ###Attributes 16 | ![NumberCircleProgressBar5](https://github.com/cjl/NumberCircleProgressBar/blob/master/illustration/zoning.png) 17 | 18 | There are several attributes you can set: 19 | 20 | **The Circle** 21 | * circle_radius 22 | * fill_mode(name="rotate" value="0",name="rising_water" value="1" ) 23 | 24 | The **reached area** and **unreached area**: 25 | 26 | * color 27 | * height 28 | 29 | The **text area**: 30 | 31 | * color 32 | * text size 33 | * visibility 34 | 35 | The **bar**: 36 | 37 | * max progress 38 | * current progress 39 | 40 | 41 | ###Usage 42 | ---- 43 | This widget is small,so I didn't build it as a library.You just copy the src/NumberCircleProgressBar.java and res/values/attrs.xml then: 44 | 45 | ####In the layout file,you can write as this: 46 | 47 | ```xml 48 | 63 | ``` 64 | 65 | ####You can also define the NumberCircleProgressBar's style like this: 66 | 67 | ```xml 68 | 80 | ``` 81 | ####When you use the style,just do this: 82 | ```xml 83 | 88 | ``` 89 | 90 | ####In my sample demo ,you can use NumberCircleBar in your Activity: 91 | 92 | ```java 93 | public void setTheNumberProgressBar() { 94 | 95 | final NumberCircleProgressBar bnp = (NumberCircleProgressBar) findViewById(R.id.numbercircleprogress_bar); 96 | timer = new Timer(); 97 | timer.schedule(new TimerTask() { 98 | @Override 99 | public void run() { 100 | runOnUiThread(new Runnable() { 101 | @Override 102 | public void run() { 103 | if (!isFinish) { 104 | bnp.incrementProgressBy(2); 105 | if (bnp.isFinished()) { 106 | isFinish = false; 107 | } 108 | } 109 | } 110 | }); 111 | } 112 | }, 1000, 100); 113 | } 114 | ``` 115 | 116 | How to accomplish this view,you can look my [Blog](http://blog.csdn.net/cjllife/article/details/39102243) 117 | -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /bin/AndroidTest.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/AndroidTest.apk -------------------------------------------------------------------------------- /bin/NumberCircleProgressBar.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/NumberCircleProgressBar.apk -------------------------------------------------------------------------------- /bin/R.txt: -------------------------------------------------------------------------------- 1 | int anim abc_fade_in 0x7f040000 2 | int anim abc_fade_out 0x7f040001 3 | int anim abc_slide_in_bottom 0x7f040002 4 | int anim abc_slide_in_top 0x7f040003 5 | int anim abc_slide_out_bottom 0x7f040004 6 | int anim abc_slide_out_top 0x7f040005 7 | int attr actionBarDivider 0x7f01000f 8 | int attr actionBarItemBackground 0x7f010010 9 | int attr actionBarSize 0x7f01000e 10 | int attr actionBarSplitStyle 0x7f01000c 11 | int attr actionBarStyle 0x7f01000b 12 | int attr actionBarTabBarStyle 0x7f010008 13 | int attr actionBarTabStyle 0x7f010007 14 | int attr actionBarTabTextStyle 0x7f010009 15 | int attr actionBarWidgetTheme 0x7f01000d 16 | int attr actionButtonStyle 0x7f010016 17 | int attr actionDropDownStyle 0x7f010047 18 | int attr actionLayout 0x7f01004e 19 | int attr actionMenuTextAppearance 0x7f010011 20 | int attr actionMenuTextColor 0x7f010012 21 | int attr actionModeBackground 0x7f01003c 22 | int attr actionModeCloseButtonStyle 0x7f01003b 23 | int attr actionModeCloseDrawable 0x7f01003e 24 | int attr actionModeCopyDrawable 0x7f010040 25 | int attr actionModeCutDrawable 0x7f01003f 26 | int attr actionModeFindDrawable 0x7f010044 27 | int attr actionModePasteDrawable 0x7f010041 28 | int attr actionModePopupWindowStyle 0x7f010046 29 | int attr actionModeSelectAllDrawable 0x7f010042 30 | int attr actionModeShareDrawable 0x7f010043 31 | int attr actionModeSplitBackground 0x7f01003d 32 | int attr actionModeStyle 0x7f01003a 33 | int attr actionModeWebSearchDrawable 0x7f010045 34 | int attr actionOverflowButtonStyle 0x7f01000a 35 | int attr actionProviderClass 0x7f010050 36 | int attr actionViewClass 0x7f01004f 37 | int attr activityChooserViewStyle 0x7f01006c 38 | int attr background 0x7f01002f 39 | int attr backgroundSplit 0x7f010031 40 | int attr backgroundStacked 0x7f010030 41 | int attr buttonBarButtonStyle 0x7f010018 42 | int attr buttonBarStyle 0x7f010017 43 | int attr customNavigationLayout 0x7f010032 44 | int attr disableChildrenWhenDisabled 0x7f010054 45 | int attr displayOptions 0x7f010028 46 | int attr divider 0x7f01002e 47 | int attr dividerHorizontal 0x7f01001b 48 | int attr dividerPadding 0x7f010056 49 | int attr dividerVertical 0x7f01001a 50 | int attr dropDownListViewStyle 0x7f010021 51 | int attr dropdownListPreferredItemHeight 0x7f010048 52 | int attr expandActivityOverflowButtonDrawable 0x7f01006b 53 | int attr height 0x7f010026 54 | int attr homeAsUpIndicator 0x7f010013 55 | int attr homeLayout 0x7f010033 56 | int attr icon 0x7f01002c 57 | int attr iconifiedByDefault 0x7f01005a 58 | int attr indeterminateProgressStyle 0x7f010035 59 | int attr initialActivityCount 0x7f01006a 60 | int attr isLightTheme 0x7f010059 61 | int attr itemPadding 0x7f010037 62 | int attr listChoiceBackgroundIndicator 0x7f01004c 63 | int attr listPopupWindowStyle 0x7f010022 64 | int attr listPreferredItemHeight 0x7f01001c 65 | int attr listPreferredItemHeightLarge 0x7f01001e 66 | int attr listPreferredItemHeightSmall 0x7f01001d 67 | int attr listPreferredItemPaddingLeft 0x7f01001f 68 | int attr listPreferredItemPaddingRight 0x7f010020 69 | int attr logo 0x7f01002d 70 | int attr max 0x7f01006f 71 | int attr navigationMode 0x7f010027 72 | int attr numberProgressBarStyle 0x7f010077 73 | int attr paddingEnd 0x7f010039 74 | int attr paddingStart 0x7f010038 75 | int attr panelMenuListTheme 0x7f01004b 76 | int attr panelMenuListWidth 0x7f01004a 77 | int attr popupMenuStyle 0x7f010049 78 | int attr popupPromptView 0x7f010053 79 | int attr progress 0x7f01006e 80 | int attr progressBarPadding 0x7f010036 81 | int attr progressBarStyle 0x7f010034 82 | int attr progress_circle_radius 0x7f010074 83 | int attr progress_fill_mode 0x7f010076 84 | int attr progress_reached_color 0x7f010071 85 | int attr progress_text_color 0x7f010073 86 | int attr progress_text_size 0x7f010072 87 | int attr progress_text_visibility 0x7f010075 88 | int attr progress_unreached_color 0x7f010070 89 | int attr prompt 0x7f010051 90 | int attr queryHint 0x7f01005b 91 | int attr searchDropdownBackground 0x7f01005c 92 | int attr searchResultListItemHeight 0x7f010065 93 | int attr searchViewAutoCompleteTextView 0x7f010069 94 | int attr searchViewCloseIcon 0x7f01005d 95 | int attr searchViewEditQuery 0x7f010061 96 | int attr searchViewEditQueryBackground 0x7f010062 97 | int attr searchViewGoIcon 0x7f01005e 98 | int attr searchViewSearchIcon 0x7f01005f 99 | int attr searchViewTextField 0x7f010063 100 | int attr searchViewTextFieldRight 0x7f010064 101 | int attr searchViewVoiceIcon 0x7f010060 102 | int attr selectableItemBackground 0x7f010019 103 | int attr showAsAction 0x7f01004d 104 | int attr showDividers 0x7f010055 105 | int attr spinnerDropDownItemStyle 0x7f010058 106 | int attr spinnerMode 0x7f010052 107 | int attr spinnerStyle 0x7f010057 108 | int attr subtitle 0x7f010029 109 | int attr subtitleTextStyle 0x7f01002b 110 | int attr textAllCaps 0x7f01006d 111 | int attr textAppearanceLargePopupMenu 0x7f010014 112 | int attr textAppearanceListItem 0x7f010023 113 | int attr textAppearanceListItemSmall 0x7f010024 114 | int attr textAppearanceSearchResultSubtitle 0x7f010067 115 | int attr textAppearanceSearchResultTitle 0x7f010066 116 | int attr textAppearanceSmallPopupMenu 0x7f010015 117 | int attr textColorSearchUrl 0x7f010068 118 | int attr title 0x7f010025 119 | int attr titleTextStyle 0x7f01002a 120 | int attr windowActionBar 0x7f010000 121 | int attr windowActionBarOverlay 0x7f010001 122 | int attr windowFixedHeightMajor 0x7f010006 123 | int attr windowFixedHeightMinor 0x7f010004 124 | int attr windowFixedWidthMajor 0x7f010003 125 | int attr windowFixedWidthMinor 0x7f010005 126 | int attr windowSplitActionBar 0x7f010002 127 | int bool abc_action_bar_embed_tabs_pre_jb 0x7f060000 128 | int bool abc_action_bar_expanded_action_views_exclusive 0x7f060001 129 | int bool abc_config_actionMenuItemAllCaps 0x7f060005 130 | int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060004 131 | int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060003 132 | int bool abc_split_action_bar_is_narrow 0x7f060002 133 | int color abc_search_url_text_holo 0x7f070003 134 | int color abc_search_url_text_normal 0x7f070000 135 | int color abc_search_url_text_pressed 0x7f070002 136 | int color abc_search_url_text_selected 0x7f070001 137 | int dimen abc_action_bar_default_height 0x7f080002 138 | int dimen abc_action_bar_icon_vertical_padding 0x7f080003 139 | int dimen abc_action_bar_progress_bar_size 0x7f08000a 140 | int dimen abc_action_bar_stacked_max_height 0x7f080009 141 | int dimen abc_action_bar_stacked_tab_max_width 0x7f080001 142 | int dimen abc_action_bar_subtitle_bottom_margin 0x7f080007 143 | int dimen abc_action_bar_subtitle_text_size 0x7f080005 144 | int dimen abc_action_bar_subtitle_top_margin 0x7f080006 145 | int dimen abc_action_bar_title_text_size 0x7f080004 146 | int dimen abc_action_button_min_width 0x7f080008 147 | int dimen abc_config_prefDialogWidth 0x7f080000 148 | int dimen abc_dropdownitem_icon_width 0x7f080010 149 | int dimen abc_dropdownitem_text_padding_left 0x7f08000e 150 | int dimen abc_dropdownitem_text_padding_right 0x7f08000f 151 | int dimen abc_panel_menu_list_width 0x7f08000b 152 | int dimen abc_search_view_preferred_width 0x7f08000d 153 | int dimen abc_search_view_text_min_width 0x7f08000c 154 | int dimen activity_horizontal_margin 0x7f080015 155 | int dimen activity_vertical_margin 0x7f080016 156 | int dimen dialog_fixed_height_major 0x7f080013 157 | int dimen dialog_fixed_height_minor 0x7f080014 158 | int dimen dialog_fixed_width_major 0x7f080011 159 | int dimen dialog_fixed_width_minor 0x7f080012 160 | int drawable abc_ab_bottom_solid_dark_holo 0x7f020000 161 | int drawable abc_ab_bottom_solid_light_holo 0x7f020001 162 | int drawable abc_ab_bottom_transparent_dark_holo 0x7f020002 163 | int drawable abc_ab_bottom_transparent_light_holo 0x7f020003 164 | int drawable abc_ab_share_pack_holo_dark 0x7f020004 165 | int drawable abc_ab_share_pack_holo_light 0x7f020005 166 | int drawable abc_ab_solid_dark_holo 0x7f020006 167 | int drawable abc_ab_solid_light_holo 0x7f020007 168 | int drawable abc_ab_stacked_solid_dark_holo 0x7f020008 169 | int drawable abc_ab_stacked_solid_light_holo 0x7f020009 170 | int drawable abc_ab_stacked_transparent_dark_holo 0x7f02000a 171 | int drawable abc_ab_stacked_transparent_light_holo 0x7f02000b 172 | int drawable abc_ab_transparent_dark_holo 0x7f02000c 173 | int drawable abc_ab_transparent_light_holo 0x7f02000d 174 | int drawable abc_cab_background_bottom_holo_dark 0x7f02000e 175 | int drawable abc_cab_background_bottom_holo_light 0x7f02000f 176 | int drawable abc_cab_background_top_holo_dark 0x7f020010 177 | int drawable abc_cab_background_top_holo_light 0x7f020011 178 | int drawable abc_ic_ab_back_holo_dark 0x7f020012 179 | int drawable abc_ic_ab_back_holo_light 0x7f020013 180 | int drawable abc_ic_cab_done_holo_dark 0x7f020014 181 | int drawable abc_ic_cab_done_holo_light 0x7f020015 182 | int drawable abc_ic_clear 0x7f020016 183 | int drawable abc_ic_clear_disabled 0x7f020017 184 | int drawable abc_ic_clear_holo_light 0x7f020018 185 | int drawable abc_ic_clear_normal 0x7f020019 186 | int drawable abc_ic_clear_search_api_disabled_holo_light 0x7f02001a 187 | int drawable abc_ic_clear_search_api_holo_light 0x7f02001b 188 | int drawable abc_ic_commit_search_api_holo_dark 0x7f02001c 189 | int drawable abc_ic_commit_search_api_holo_light 0x7f02001d 190 | int drawable abc_ic_go 0x7f02001e 191 | int drawable abc_ic_go_search_api_holo_light 0x7f02001f 192 | int drawable abc_ic_menu_moreoverflow_normal_holo_dark 0x7f020020 193 | int drawable abc_ic_menu_moreoverflow_normal_holo_light 0x7f020021 194 | int drawable abc_ic_menu_share_holo_dark 0x7f020022 195 | int drawable abc_ic_menu_share_holo_light 0x7f020023 196 | int drawable abc_ic_search 0x7f020024 197 | int drawable abc_ic_search_api_holo_light 0x7f020025 198 | int drawable abc_ic_voice_search 0x7f020026 199 | int drawable abc_ic_voice_search_api_holo_light 0x7f020027 200 | int drawable abc_item_background_holo_dark 0x7f020028 201 | int drawable abc_item_background_holo_light 0x7f020029 202 | int drawable abc_list_divider_holo_dark 0x7f02002a 203 | int drawable abc_list_divider_holo_light 0x7f02002b 204 | int drawable abc_list_focused_holo 0x7f02002c 205 | int drawable abc_list_longpressed_holo 0x7f02002d 206 | int drawable abc_list_pressed_holo_dark 0x7f02002e 207 | int drawable abc_list_pressed_holo_light 0x7f02002f 208 | int drawable abc_list_selector_background_transition_holo_dark 0x7f020030 209 | int drawable abc_list_selector_background_transition_holo_light 0x7f020031 210 | int drawable abc_list_selector_disabled_holo_dark 0x7f020032 211 | int drawable abc_list_selector_disabled_holo_light 0x7f020033 212 | int drawable abc_list_selector_holo_dark 0x7f020034 213 | int drawable abc_list_selector_holo_light 0x7f020035 214 | int drawable abc_menu_dropdown_panel_holo_dark 0x7f020036 215 | int drawable abc_menu_dropdown_panel_holo_light 0x7f020037 216 | int drawable abc_menu_hardkey_panel_holo_dark 0x7f020038 217 | int drawable abc_menu_hardkey_panel_holo_light 0x7f020039 218 | int drawable abc_search_dropdown_dark 0x7f02003a 219 | int drawable abc_search_dropdown_light 0x7f02003b 220 | int drawable abc_spinner_ab_default_holo_dark 0x7f02003c 221 | int drawable abc_spinner_ab_default_holo_light 0x7f02003d 222 | int drawable abc_spinner_ab_disabled_holo_dark 0x7f02003e 223 | int drawable abc_spinner_ab_disabled_holo_light 0x7f02003f 224 | int drawable abc_spinner_ab_focused_holo_dark 0x7f020040 225 | int drawable abc_spinner_ab_focused_holo_light 0x7f020041 226 | int drawable abc_spinner_ab_holo_dark 0x7f020042 227 | int drawable abc_spinner_ab_holo_light 0x7f020043 228 | int drawable abc_spinner_ab_pressed_holo_dark 0x7f020044 229 | int drawable abc_spinner_ab_pressed_holo_light 0x7f020045 230 | int drawable abc_tab_indicator_ab_holo 0x7f020046 231 | int drawable abc_tab_selected_focused_holo 0x7f020047 232 | int drawable abc_tab_selected_holo 0x7f020048 233 | int drawable abc_tab_selected_pressed_holo 0x7f020049 234 | int drawable abc_tab_unselected_pressed_holo 0x7f02004a 235 | int drawable abc_textfield_search_default_holo_dark 0x7f02004b 236 | int drawable abc_textfield_search_default_holo_light 0x7f02004c 237 | int drawable abc_textfield_search_right_default_holo_dark 0x7f02004d 238 | int drawable abc_textfield_search_right_default_holo_light 0x7f02004e 239 | int drawable abc_textfield_search_right_selected_holo_dark 0x7f02004f 240 | int drawable abc_textfield_search_right_selected_holo_light 0x7f020050 241 | int drawable abc_textfield_search_selected_holo_dark 0x7f020051 242 | int drawable abc_textfield_search_selected_holo_light 0x7f020052 243 | int drawable abc_textfield_searchview_holo_dark 0x7f020053 244 | int drawable abc_textfield_searchview_holo_light 0x7f020054 245 | int drawable abc_textfield_searchview_right_holo_dark 0x7f020055 246 | int drawable abc_textfield_searchview_right_holo_light 0x7f020056 247 | int drawable ic_launcher 0x7f020057 248 | int id action_bar 0x7f050020 249 | int id action_bar_activity_content 0x7f050015 250 | int id action_bar_container 0x7f05001f 251 | int id action_bar_overlay_layout 0x7f050023 252 | int id action_bar_root 0x7f05001e 253 | int id action_bar_subtitle 0x7f050027 254 | int id action_bar_title 0x7f050026 255 | int id action_context_bar 0x7f050021 256 | int id action_menu_divider 0x7f050016 257 | int id action_menu_presenter 0x7f050017 258 | int id action_mode_close_button 0x7f050028 259 | int id action_settings 0x7f050042 260 | int id activity_chooser_view_content 0x7f050029 261 | int id always 0x7f05000b 262 | int id beginning 0x7f050011 263 | int id checkbox 0x7f050031 264 | int id collapseActionView 0x7f05000d 265 | int id default_activity_button 0x7f05002c 266 | int id dialog 0x7f05000e 267 | int id disableHome 0x7f050008 268 | int id dropdown 0x7f05000f 269 | int id edit_query 0x7f050034 270 | int id end 0x7f050013 271 | int id expand_activities_button 0x7f05002a 272 | int id expanded_menu 0x7f050030 273 | int id home 0x7f050014 274 | int id homeAsUp 0x7f050005 275 | int id icon 0x7f05002e 276 | int id ifRoom 0x7f05000a 277 | int id image 0x7f05002b 278 | int id invisible 0x7f05001b 279 | int id listMode 0x7f050001 280 | int id list_item 0x7f05002d 281 | int id middle 0x7f050012 282 | int id never 0x7f050009 283 | int id none 0x7f050010 284 | int id normal 0x7f050000 285 | int id numbercircleprogress_bar 0x7f050041 286 | int id progress_circular 0x7f050018 287 | int id progress_horizontal 0x7f050019 288 | int id radio 0x7f050033 289 | int id rising_water 0x7f05001d 290 | int id rl_root 0x7f050040 291 | int id rotate 0x7f05001c 292 | int id search_badge 0x7f050036 293 | int id search_bar 0x7f050035 294 | int id search_button 0x7f050037 295 | int id search_close_btn 0x7f05003c 296 | int id search_edit_frame 0x7f050038 297 | int id search_go_btn 0x7f05003e 298 | int id search_mag_icon 0x7f050039 299 | int id search_plate 0x7f05003a 300 | int id search_src_text 0x7f05003b 301 | int id search_voice_btn 0x7f05003f 302 | int id shortcut 0x7f050032 303 | int id showCustom 0x7f050007 304 | int id showHome 0x7f050004 305 | int id showTitle 0x7f050006 306 | int id split_action_bar 0x7f050022 307 | int id submit_area 0x7f05003d 308 | int id tabMode 0x7f050002 309 | int id title 0x7f05002f 310 | int id top_action_bar 0x7f050024 311 | int id up 0x7f050025 312 | int id useLogo 0x7f050003 313 | int id visible 0x7f05001a 314 | int id withText 0x7f05000c 315 | int integer abc_max_action_buttons 0x7f090000 316 | int layout abc_action_bar_decor 0x7f030000 317 | int layout abc_action_bar_decor_include 0x7f030001 318 | int layout abc_action_bar_decor_overlay 0x7f030002 319 | int layout abc_action_bar_home 0x7f030003 320 | int layout abc_action_bar_tab 0x7f030004 321 | int layout abc_action_bar_tabbar 0x7f030005 322 | int layout abc_action_bar_title_item 0x7f030006 323 | int layout abc_action_bar_view_list_nav_layout 0x7f030007 324 | int layout abc_action_menu_item_layout 0x7f030008 325 | int layout abc_action_menu_layout 0x7f030009 326 | int layout abc_action_mode_bar 0x7f03000a 327 | int layout abc_action_mode_close_item 0x7f03000b 328 | int layout abc_activity_chooser_view 0x7f03000c 329 | int layout abc_activity_chooser_view_include 0x7f03000d 330 | int layout abc_activity_chooser_view_list_item 0x7f03000e 331 | int layout abc_expanded_menu_layout 0x7f03000f 332 | int layout abc_list_menu_item_checkbox 0x7f030010 333 | int layout abc_list_menu_item_icon 0x7f030011 334 | int layout abc_list_menu_item_layout 0x7f030012 335 | int layout abc_list_menu_item_radio 0x7f030013 336 | int layout abc_popup_menu_item_layout 0x7f030014 337 | int layout abc_search_dropdown_item_icons_2line 0x7f030015 338 | int layout abc_search_view 0x7f030016 339 | int layout abc_simple_decor 0x7f030017 340 | int layout activity_main 0x7f030018 341 | int layout support_simple_spinner_dropdown_item 0x7f030019 342 | int menu main 0x7f0c0000 343 | int string abc_action_bar_home_description 0x7f0a0001 344 | int string abc_action_bar_up_description 0x7f0a0002 345 | int string abc_action_menu_overflow_description 0x7f0a0003 346 | int string abc_action_mode_done 0x7f0a0000 347 | int string abc_activity_chooser_view_see_all 0x7f0a000a 348 | int string abc_activitychooserview_choose_application 0x7f0a0009 349 | int string abc_searchview_description_clear 0x7f0a0006 350 | int string abc_searchview_description_query 0x7f0a0005 351 | int string abc_searchview_description_search 0x7f0a0004 352 | int string abc_searchview_description_submit 0x7f0a0007 353 | int string abc_searchview_description_voice 0x7f0a0008 354 | int string abc_shareactionprovider_share_with 0x7f0a000c 355 | int string abc_shareactionprovider_share_with_application 0x7f0a000b 356 | int string action_settings 0x7f0a000e 357 | int string app_name 0x7f0a000d 358 | int style AppBaseTheme 0x7f0b008b 359 | int style AppTheme 0x7f0b008c 360 | int style NumberCircleProgressBar_Beauty_Red 0x7f0b008f 361 | int style NumberCircleProgressBar_Default 0x7f0b008d 362 | int style NumberCircleProgressBar_Funny_Orange 0x7f0b0093 363 | int style NumberCircleProgressBar_Grace_Yellow 0x7f0b0092 364 | int style NumberCircleProgressBar_Passing_Green 0x7f0b008e 365 | int style NumberCircleProgressBar_Relax_Blue 0x7f0b0091 366 | int style NumberCircleProgressBar_Twinkle_Night 0x7f0b0094 367 | int style NumberCircleProgressBar_Warning_Red 0x7f0b0090 368 | int style TextAppearance_AppCompat_Base_CompactMenu_Dialog 0x7f0b0063 369 | int style TextAppearance_AppCompat_Base_SearchResult 0x7f0b006d 370 | int style TextAppearance_AppCompat_Base_SearchResult_Subtitle 0x7f0b006f 371 | int style TextAppearance_AppCompat_Base_SearchResult_Title 0x7f0b006e 372 | int style TextAppearance_AppCompat_Base_Widget_PopupMenu_Large 0x7f0b0069 373 | int style TextAppearance_AppCompat_Base_Widget_PopupMenu_Small 0x7f0b006a 374 | int style TextAppearance_AppCompat_Light_Base_SearchResult 0x7f0b0070 375 | int style TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle 0x7f0b0072 376 | int style TextAppearance_AppCompat_Light_Base_SearchResult_Title 0x7f0b0071 377 | int style TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large 0x7f0b006b 378 | int style TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small 0x7f0b006c 379 | int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0b0035 380 | int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0b0034 381 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b0030 382 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b0031 383 | int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b0033 384 | int style TextAppearance_AppCompat_SearchResult_Title 0x7f0b0032 385 | int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b001a 386 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0006 387 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b0008 388 | int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b0005 389 | int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b0007 390 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b001e 391 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0b0020 392 | int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b001d 393 | int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0b001f 394 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Menu 0x7f0b0054 395 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle 0x7f0b0056 396 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse 0x7f0b0058 397 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Title 0x7f0b0055 398 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse 0x7f0b0057 399 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle 0x7f0b0051 400 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse 0x7f0b0053 401 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Title 0x7f0b0050 402 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse 0x7f0b0052 403 | int style TextAppearance_AppCompat_Widget_Base_DropDownItem 0x7f0b0061 404 | int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0021 405 | int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b002e 406 | int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b002f 407 | int style TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item 0x7f0b0062 408 | int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b0028 409 | int style Theme_AppCompat 0x7f0b0077 410 | int style Theme_AppCompat_Base_CompactMenu 0x7f0b0083 411 | int style Theme_AppCompat_Base_CompactMenu_Dialog 0x7f0b0084 412 | int style Theme_AppCompat_CompactMenu 0x7f0b007c 413 | int style Theme_AppCompat_CompactMenu_Dialog 0x7f0b007d 414 | int style Theme_AppCompat_DialogWhenLarge 0x7f0b007a 415 | int style Theme_AppCompat_Light 0x7f0b0078 416 | int style Theme_AppCompat_Light_DarkActionBar 0x7f0b0079 417 | int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0b007b 418 | int style Theme_Base 0x7f0b007e 419 | int style Theme_Base_AppCompat 0x7f0b0080 420 | int style Theme_Base_AppCompat_Dialog_FixedSize 0x7f0b0087 421 | int style Theme_Base_AppCompat_Dialog_Light_FixedSize 0x7f0b0088 422 | int style Theme_Base_AppCompat_DialogWhenLarge 0x7f0b0085 423 | int style Theme_Base_AppCompat_DialogWhenLarge_Base 0x7f0b0089 424 | int style Theme_Base_AppCompat_Light 0x7f0b0081 425 | int style Theme_Base_AppCompat_Light_DarkActionBar 0x7f0b0082 426 | int style Theme_Base_AppCompat_Light_DialogWhenLarge 0x7f0b0086 427 | int style Theme_Base_AppCompat_Light_DialogWhenLarge_Base 0x7f0b008a 428 | int style Theme_Base_Light 0x7f0b007f 429 | int style Widget_AppCompat_ActionBar 0x7f0b0000 430 | int style Widget_AppCompat_ActionBar_Solid 0x7f0b0002 431 | int style Widget_AppCompat_ActionBar_TabBar 0x7f0b0011 432 | int style Widget_AppCompat_ActionBar_TabText 0x7f0b0017 433 | int style Widget_AppCompat_ActionBar_TabView 0x7f0b0014 434 | int style Widget_AppCompat_ActionButton 0x7f0b000b 435 | int style Widget_AppCompat_ActionButton_CloseMode 0x7f0b000d 436 | int style Widget_AppCompat_ActionButton_Overflow 0x7f0b000f 437 | int style Widget_AppCompat_ActionMode 0x7f0b001b 438 | int style Widget_AppCompat_ActivityChooserView 0x7f0b0038 439 | int style Widget_AppCompat_AutoCompleteTextView 0x7f0b0036 440 | int style Widget_AppCompat_Base_ActionBar 0x7f0b003a 441 | int style Widget_AppCompat_Base_ActionBar_Solid 0x7f0b003c 442 | int style Widget_AppCompat_Base_ActionBar_TabBar 0x7f0b0045 443 | int style Widget_AppCompat_Base_ActionBar_TabText 0x7f0b004b 444 | int style Widget_AppCompat_Base_ActionBar_TabView 0x7f0b0048 445 | int style Widget_AppCompat_Base_ActionButton 0x7f0b003f 446 | int style Widget_AppCompat_Base_ActionButton_CloseMode 0x7f0b0041 447 | int style Widget_AppCompat_Base_ActionButton_Overflow 0x7f0b0043 448 | int style Widget_AppCompat_Base_ActionMode 0x7f0b004e 449 | int style Widget_AppCompat_Base_ActivityChooserView 0x7f0b0075 450 | int style Widget_AppCompat_Base_AutoCompleteTextView 0x7f0b0073 451 | int style Widget_AppCompat_Base_DropDownItem_Spinner 0x7f0b005d 452 | int style Widget_AppCompat_Base_ListPopupWindow 0x7f0b0065 453 | int style Widget_AppCompat_Base_ListView_DropDown 0x7f0b005f 454 | int style Widget_AppCompat_Base_ListView_Menu 0x7f0b0064 455 | int style Widget_AppCompat_Base_PopupMenu 0x7f0b0067 456 | int style Widget_AppCompat_Base_ProgressBar 0x7f0b005a 457 | int style Widget_AppCompat_Base_ProgressBar_Horizontal 0x7f0b0059 458 | int style Widget_AppCompat_Base_Spinner 0x7f0b005b 459 | int style Widget_AppCompat_DropDownItem_Spinner 0x7f0b0024 460 | int style Widget_AppCompat_Light_ActionBar 0x7f0b0001 461 | int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0003 462 | int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0b0004 463 | int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b0012 464 | int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0b0013 465 | int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0018 466 | int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0019 467 | int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0b0015 468 | int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0b0016 469 | int style Widget_AppCompat_Light_ActionButton 0x7f0b000c 470 | int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0b000e 471 | int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0b0010 472 | int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0b001c 473 | int style Widget_AppCompat_Light_ActivityChooserView 0x7f0b0039 474 | int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b0037 475 | int style Widget_AppCompat_Light_Base_ActionBar 0x7f0b003b 476 | int style Widget_AppCompat_Light_Base_ActionBar_Solid 0x7f0b003d 477 | int style Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse 0x7f0b003e 478 | int style Widget_AppCompat_Light_Base_ActionBar_TabBar 0x7f0b0046 479 | int style Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse 0x7f0b0047 480 | int style Widget_AppCompat_Light_Base_ActionBar_TabText 0x7f0b004c 481 | int style Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse 0x7f0b004d 482 | int style Widget_AppCompat_Light_Base_ActionBar_TabView 0x7f0b0049 483 | int style Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse 0x7f0b004a 484 | int style Widget_AppCompat_Light_Base_ActionButton 0x7f0b0040 485 | int style Widget_AppCompat_Light_Base_ActionButton_CloseMode 0x7f0b0042 486 | int style Widget_AppCompat_Light_Base_ActionButton_Overflow 0x7f0b0044 487 | int style Widget_AppCompat_Light_Base_ActionMode_Inverse 0x7f0b004f 488 | int style Widget_AppCompat_Light_Base_ActivityChooserView 0x7f0b0076 489 | int style Widget_AppCompat_Light_Base_AutoCompleteTextView 0x7f0b0074 490 | int style Widget_AppCompat_Light_Base_DropDownItem_Spinner 0x7f0b005e 491 | int style Widget_AppCompat_Light_Base_ListPopupWindow 0x7f0b0066 492 | int style Widget_AppCompat_Light_Base_ListView_DropDown 0x7f0b0060 493 | int style Widget_AppCompat_Light_Base_PopupMenu 0x7f0b0068 494 | int style Widget_AppCompat_Light_Base_Spinner 0x7f0b005c 495 | int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0b0025 496 | int style Widget_AppCompat_Light_ListPopupWindow 0x7f0b002a 497 | int style Widget_AppCompat_Light_ListView_DropDown 0x7f0b0027 498 | int style Widget_AppCompat_Light_PopupMenu 0x7f0b002c 499 | int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0b0023 500 | int style Widget_AppCompat_ListPopupWindow 0x7f0b0029 501 | int style Widget_AppCompat_ListView_DropDown 0x7f0b0026 502 | int style Widget_AppCompat_ListView_Menu 0x7f0b002d 503 | int style Widget_AppCompat_PopupMenu 0x7f0b002b 504 | int style Widget_AppCompat_ProgressBar 0x7f0b000a 505 | int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0009 506 | int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b0022 507 | int[] styleable ActionBar { 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037 } 508 | int styleable ActionBar_background 10 509 | int styleable ActionBar_backgroundSplit 12 510 | int styleable ActionBar_backgroundStacked 11 511 | int styleable ActionBar_customNavigationLayout 13 512 | int styleable ActionBar_displayOptions 3 513 | int styleable ActionBar_divider 9 514 | int styleable ActionBar_height 1 515 | int styleable ActionBar_homeLayout 14 516 | int styleable ActionBar_icon 7 517 | int styleable ActionBar_indeterminateProgressStyle 16 518 | int styleable ActionBar_itemPadding 18 519 | int styleable ActionBar_logo 8 520 | int styleable ActionBar_navigationMode 2 521 | int styleable ActionBar_progressBarPadding 17 522 | int styleable ActionBar_progressBarStyle 15 523 | int styleable ActionBar_subtitle 4 524 | int styleable ActionBar_subtitleTextStyle 6 525 | int styleable ActionBar_title 0 526 | int styleable ActionBar_titleTextStyle 5 527 | int[] styleable ActionBarLayout { 0x010100b3 } 528 | int styleable ActionBarLayout_android_layout_gravity 0 529 | int[] styleable ActionBarWindow { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006 } 530 | int styleable ActionBarWindow_windowActionBar 0 531 | int styleable ActionBarWindow_windowActionBarOverlay 1 532 | int styleable ActionBarWindow_windowFixedHeightMajor 6 533 | int styleable ActionBarWindow_windowFixedHeightMinor 4 534 | int styleable ActionBarWindow_windowFixedWidthMajor 3 535 | int styleable ActionBarWindow_windowFixedWidthMinor 5 536 | int styleable ActionBarWindow_windowSplitActionBar 2 537 | int[] styleable ActionMenuItemView { 0x0101013f } 538 | int styleable ActionMenuItemView_android_minWidth 0 539 | int[] styleable ActionMenuView { } 540 | int[] styleable ActionMode { 0x7f010026, 0x7f01002a, 0x7f01002b, 0x7f01002f, 0x7f010031 } 541 | int styleable ActionMode_background 3 542 | int styleable ActionMode_backgroundSplit 4 543 | int styleable ActionMode_height 0 544 | int styleable ActionMode_subtitleTextStyle 2 545 | int styleable ActionMode_titleTextStyle 1 546 | int[] styleable ActivityChooserView { 0x7f01006a, 0x7f01006b } 547 | int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1 548 | int styleable ActivityChooserView_initialActivityCount 0 549 | int[] styleable CompatTextView { 0x7f01006d } 550 | int styleable CompatTextView_textAllCaps 0 551 | int[] styleable LinearLayoutICS { 0x7f01002e, 0x7f010055, 0x7f010056 } 552 | int styleable LinearLayoutICS_divider 0 553 | int styleable LinearLayoutICS_dividerPadding 2 554 | int styleable LinearLayoutICS_showDividers 1 555 | int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } 556 | int styleable MenuGroup_android_checkableBehavior 5 557 | int styleable MenuGroup_android_enabled 0 558 | int styleable MenuGroup_android_id 1 559 | int styleable MenuGroup_android_menuCategory 3 560 | int styleable MenuGroup_android_orderInCategory 4 561 | int styleable MenuGroup_android_visible 2 562 | int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050 } 563 | int styleable MenuItem_actionLayout 14 564 | int styleable MenuItem_actionProviderClass 16 565 | int styleable MenuItem_actionViewClass 15 566 | int styleable MenuItem_android_alphabeticShortcut 9 567 | int styleable MenuItem_android_checkable 11 568 | int styleable MenuItem_android_checked 3 569 | int styleable MenuItem_android_enabled 1 570 | int styleable MenuItem_android_icon 0 571 | int styleable MenuItem_android_id 2 572 | int styleable MenuItem_android_menuCategory 5 573 | int styleable MenuItem_android_numericShortcut 10 574 | int styleable MenuItem_android_onClick 12 575 | int styleable MenuItem_android_orderInCategory 6 576 | int styleable MenuItem_android_title 7 577 | int styleable MenuItem_android_titleCondensed 8 578 | int styleable MenuItem_android_visible 4 579 | int styleable MenuItem_showAsAction 13 580 | int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x01010435 } 581 | int styleable MenuView_android_headerBackground 4 582 | int styleable MenuView_android_horizontalDivider 2 583 | int styleable MenuView_android_itemBackground 5 584 | int styleable MenuView_android_itemIconDisabledAlpha 6 585 | int styleable MenuView_android_itemTextAppearance 1 586 | int styleable MenuView_android_preserveIconSpacing 7 587 | int styleable MenuView_android_verticalDivider 3 588 | int styleable MenuView_android_windowAnimationStyle 0 589 | int[] styleable NumberCircleProgressBar { 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076 } 590 | int styleable NumberCircleProgressBar_max 1 591 | int styleable NumberCircleProgressBar_progress 0 592 | int styleable NumberCircleProgressBar_progress_circle_radius 6 593 | int styleable NumberCircleProgressBar_progress_fill_mode 8 594 | int styleable NumberCircleProgressBar_progress_reached_color 3 595 | int styleable NumberCircleProgressBar_progress_text_color 5 596 | int styleable NumberCircleProgressBar_progress_text_size 4 597 | int styleable NumberCircleProgressBar_progress_text_visibility 7 598 | int styleable NumberCircleProgressBar_progress_unreached_color 2 599 | int[] styleable SearchView { 0x0101011f, 0x01010220, 0x01010264, 0x7f01005a, 0x7f01005b } 600 | int styleable SearchView_android_imeOptions 2 601 | int styleable SearchView_android_inputType 1 602 | int styleable SearchView_android_maxWidth 0 603 | int styleable SearchView_iconifiedByDefault 3 604 | int styleable SearchView_queryHint 4 605 | int[] styleable Spinner { 0x010100af, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054 } 606 | int styleable Spinner_android_dropDownHorizontalOffset 4 607 | int styleable Spinner_android_dropDownSelector 1 608 | int styleable Spinner_android_dropDownVerticalOffset 5 609 | int styleable Spinner_android_dropDownWidth 3 610 | int styleable Spinner_android_gravity 0 611 | int styleable Spinner_android_popupBackground 2 612 | int styleable Spinner_disableChildrenWhenDisabled 9 613 | int styleable Spinner_popupPromptView 8 614 | int styleable Spinner_prompt 6 615 | int styleable Spinner_spinnerMode 7 616 | int[] styleable Theme { 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c } 617 | int styleable Theme_actionDropDownStyle 0 618 | int styleable Theme_dropdownListPreferredItemHeight 1 619 | int styleable Theme_listChoiceBackgroundIndicator 5 620 | int styleable Theme_panelMenuListTheme 4 621 | int styleable Theme_panelMenuListWidth 3 622 | int styleable Theme_popupMenuStyle 2 623 | int[] styleable Themes { 0x7f010077 } 624 | int styleable Themes_numberProgressBarStyle 0 625 | int[] styleable View { 0x010100da, 0x7f010038, 0x7f010039 } 626 | int styleable View_android_focusable 0 627 | int styleable View_paddingEnd 2 628 | int styleable View_paddingStart 1 629 | -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes.dex -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/R$anim.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/R$bool.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/R$color.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/R$integer.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/R$menu.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/R$styleable.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/androidtest/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/androidtest/R.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/numbercircleprogressbar/MainActivity$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/numbercircleprogressbar/MainActivity$1$1.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/numbercircleprogressbar/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/numbercircleprogressbar/MainActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/numbercircleprogressbar/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/numbercircleprogressbar/MainActivity.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/numbercircleprogressbar/NumberCircleProgressBar$ProgressTextVisibility.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/numbercircleprogressbar/NumberCircleProgressBar$ProgressTextVisibility.class -------------------------------------------------------------------------------- /bin/classes/com/cjl/numbercircleprogressbar/NumberCircleProgressBar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/classes/com/cjl/numbercircleprogressbar/NumberCircleProgressBar.class -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-8fc1b72171b3bf36c4d53b0740a0e2f7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/dexedLibs/android-support-v4-8fc1b72171b3bf36c4d53b0740a0e2f7.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-d3cfe945859fa17f9c9b0fde3bb7818e.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/dexedLibs/android-support-v4-d3cfe945859fa17f9c9b0fde3bb7818e.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v7-appcompat-7839ae8881f16bcee9743bdf5ec00724.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/dexedLibs/android-support-v7-appcompat-7839ae8881f16bcee9743bdf5ec00724.jar -------------------------------------------------------------------------------- /bin/dexedLibs/appcompat_v7-3421726ede696bee0a91dbda2ad3a95f.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/dexedLibs/appcompat_v7-3421726ede696bee0a91dbda2ad3a95f.jar -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | 1409300053422 758727 efec67655f6db90757faa37201efcee2a9ec3507 E:\Project\Android_Eclipse\NumberCircleProgressBar\libs\android-support-v4.jar 5 | 1403515040000 758727 efec67655f6db90757faa37201efcee2a9ec3507 E:\Project\Android_Eclipse\appcompat_v7\libs\android-support-v4.jar 6 | -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/bin/resources.ap_ -------------------------------------------------------------------------------- /gen/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package android.support.v7.appcompat; 8 | 9 | public final class R { 10 | public static final class anim { 11 | public static final int abc_fade_in = 0x7f040000; 12 | public static final int abc_fade_out = 0x7f040001; 13 | public static final int abc_slide_in_bottom = 0x7f040002; 14 | public static final int abc_slide_in_top = 0x7f040003; 15 | public static final int abc_slide_out_bottom = 0x7f040004; 16 | public static final int abc_slide_out_top = 0x7f040005; 17 | } 18 | public static final class attr { 19 | public static final int actionBarDivider = 0x7f01000f; 20 | public static final int actionBarItemBackground = 0x7f010010; 21 | public static final int actionBarSize = 0x7f01000e; 22 | public static final int actionBarSplitStyle = 0x7f01000c; 23 | public static final int actionBarStyle = 0x7f01000b; 24 | public static final int actionBarTabBarStyle = 0x7f010008; 25 | public static final int actionBarTabStyle = 0x7f010007; 26 | public static final int actionBarTabTextStyle = 0x7f010009; 27 | public static final int actionBarWidgetTheme = 0x7f01000d; 28 | public static final int actionButtonStyle = 0x7f010016; 29 | public static final int actionDropDownStyle = 0x7f010047; 30 | public static final int actionLayout = 0x7f01004e; 31 | public static final int actionMenuTextAppearance = 0x7f010011; 32 | public static final int actionMenuTextColor = 0x7f010012; 33 | public static final int actionModeBackground = 0x7f01003c; 34 | public static final int actionModeCloseButtonStyle = 0x7f01003b; 35 | public static final int actionModeCloseDrawable = 0x7f01003e; 36 | public static final int actionModeCopyDrawable = 0x7f010040; 37 | public static final int actionModeCutDrawable = 0x7f01003f; 38 | public static final int actionModeFindDrawable = 0x7f010044; 39 | public static final int actionModePasteDrawable = 0x7f010041; 40 | public static final int actionModePopupWindowStyle = 0x7f010046; 41 | public static final int actionModeSelectAllDrawable = 0x7f010042; 42 | public static final int actionModeShareDrawable = 0x7f010043; 43 | public static final int actionModeSplitBackground = 0x7f01003d; 44 | public static final int actionModeStyle = 0x7f01003a; 45 | public static final int actionModeWebSearchDrawable = 0x7f010045; 46 | public static final int actionOverflowButtonStyle = 0x7f01000a; 47 | public static final int actionProviderClass = 0x7f010050; 48 | public static final int actionViewClass = 0x7f01004f; 49 | public static final int activityChooserViewStyle = 0x7f01006c; 50 | public static final int background = 0x7f01002f; 51 | public static final int backgroundSplit = 0x7f010031; 52 | public static final int backgroundStacked = 0x7f010030; 53 | public static final int buttonBarButtonStyle = 0x7f010018; 54 | public static final int buttonBarStyle = 0x7f010017; 55 | public static final int customNavigationLayout = 0x7f010032; 56 | public static final int disableChildrenWhenDisabled = 0x7f010054; 57 | public static final int displayOptions = 0x7f010028; 58 | public static final int divider = 0x7f01002e; 59 | public static final int dividerHorizontal = 0x7f01001b; 60 | public static final int dividerPadding = 0x7f010056; 61 | public static final int dividerVertical = 0x7f01001a; 62 | public static final int dropDownListViewStyle = 0x7f010021; 63 | public static final int dropdownListPreferredItemHeight = 0x7f010048; 64 | public static final int expandActivityOverflowButtonDrawable = 0x7f01006b; 65 | public static final int height = 0x7f010026; 66 | public static final int homeAsUpIndicator = 0x7f010013; 67 | public static final int homeLayout = 0x7f010033; 68 | public static final int icon = 0x7f01002c; 69 | public static final int iconifiedByDefault = 0x7f01005a; 70 | public static final int indeterminateProgressStyle = 0x7f010035; 71 | public static final int initialActivityCount = 0x7f01006a; 72 | public static final int isLightTheme = 0x7f010059; 73 | public static final int itemPadding = 0x7f010037; 74 | public static final int listChoiceBackgroundIndicator = 0x7f01004c; 75 | public static final int listPopupWindowStyle = 0x7f010022; 76 | public static final int listPreferredItemHeight = 0x7f01001c; 77 | public static final int listPreferredItemHeightLarge = 0x7f01001e; 78 | public static final int listPreferredItemHeightSmall = 0x7f01001d; 79 | public static final int listPreferredItemPaddingLeft = 0x7f01001f; 80 | public static final int listPreferredItemPaddingRight = 0x7f010020; 81 | public static final int logo = 0x7f01002d; 82 | public static final int navigationMode = 0x7f010027; 83 | public static final int paddingEnd = 0x7f010039; 84 | public static final int paddingStart = 0x7f010038; 85 | public static final int panelMenuListTheme = 0x7f01004b; 86 | public static final int panelMenuListWidth = 0x7f01004a; 87 | public static final int popupMenuStyle = 0x7f010049; 88 | public static final int popupPromptView = 0x7f010053; 89 | public static final int progressBarPadding = 0x7f010036; 90 | public static final int progressBarStyle = 0x7f010034; 91 | public static final int prompt = 0x7f010051; 92 | public static final int queryHint = 0x7f01005b; 93 | public static final int searchDropdownBackground = 0x7f01005c; 94 | public static final int searchResultListItemHeight = 0x7f010065; 95 | public static final int searchViewAutoCompleteTextView = 0x7f010069; 96 | public static final int searchViewCloseIcon = 0x7f01005d; 97 | public static final int searchViewEditQuery = 0x7f010061; 98 | public static final int searchViewEditQueryBackground = 0x7f010062; 99 | public static final int searchViewGoIcon = 0x7f01005e; 100 | public static final int searchViewSearchIcon = 0x7f01005f; 101 | public static final int searchViewTextField = 0x7f010063; 102 | public static final int searchViewTextFieldRight = 0x7f010064; 103 | public static final int searchViewVoiceIcon = 0x7f010060; 104 | public static final int selectableItemBackground = 0x7f010019; 105 | public static final int showAsAction = 0x7f01004d; 106 | public static final int showDividers = 0x7f010055; 107 | public static final int spinnerDropDownItemStyle = 0x7f010058; 108 | public static final int spinnerMode = 0x7f010052; 109 | public static final int spinnerStyle = 0x7f010057; 110 | public static final int subtitle = 0x7f010029; 111 | public static final int subtitleTextStyle = 0x7f01002b; 112 | public static final int textAllCaps = 0x7f01006d; 113 | public static final int textAppearanceLargePopupMenu = 0x7f010014; 114 | public static final int textAppearanceListItem = 0x7f010023; 115 | public static final int textAppearanceListItemSmall = 0x7f010024; 116 | public static final int textAppearanceSearchResultSubtitle = 0x7f010067; 117 | public static final int textAppearanceSearchResultTitle = 0x7f010066; 118 | public static final int textAppearanceSmallPopupMenu = 0x7f010015; 119 | public static final int textColorSearchUrl = 0x7f010068; 120 | public static final int title = 0x7f010025; 121 | public static final int titleTextStyle = 0x7f01002a; 122 | public static final int windowActionBar = 0x7f010000; 123 | public static final int windowActionBarOverlay = 0x7f010001; 124 | public static final int windowFixedHeightMajor = 0x7f010006; 125 | public static final int windowFixedHeightMinor = 0x7f010004; 126 | public static final int windowFixedWidthMajor = 0x7f010003; 127 | public static final int windowFixedWidthMinor = 0x7f010005; 128 | public static final int windowSplitActionBar = 0x7f010002; 129 | } 130 | public static final class bool { 131 | public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f060000; 132 | public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f060001; 133 | public static final int abc_config_actionMenuItemAllCaps = 0x7f060005; 134 | public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f060004; 135 | public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f060003; 136 | public static final int abc_split_action_bar_is_narrow = 0x7f060002; 137 | } 138 | public static final class color { 139 | public static final int abc_search_url_text_holo = 0x7f070003; 140 | public static final int abc_search_url_text_normal = 0x7f070000; 141 | public static final int abc_search_url_text_pressed = 0x7f070002; 142 | public static final int abc_search_url_text_selected = 0x7f070001; 143 | } 144 | public static final class dimen { 145 | public static final int abc_action_bar_default_height = 0x7f080002; 146 | public static final int abc_action_bar_icon_vertical_padding = 0x7f080003; 147 | public static final int abc_action_bar_progress_bar_size = 0x7f08000a; 148 | public static final int abc_action_bar_stacked_max_height = 0x7f080009; 149 | public static final int abc_action_bar_stacked_tab_max_width = 0x7f080001; 150 | public static final int abc_action_bar_subtitle_bottom_margin = 0x7f080007; 151 | public static final int abc_action_bar_subtitle_text_size = 0x7f080005; 152 | public static final int abc_action_bar_subtitle_top_margin = 0x7f080006; 153 | public static final int abc_action_bar_title_text_size = 0x7f080004; 154 | public static final int abc_action_button_min_width = 0x7f080008; 155 | public static final int abc_config_prefDialogWidth = 0x7f080000; 156 | public static final int abc_dropdownitem_icon_width = 0x7f080010; 157 | public static final int abc_dropdownitem_text_padding_left = 0x7f08000e; 158 | public static final int abc_dropdownitem_text_padding_right = 0x7f08000f; 159 | public static final int abc_panel_menu_list_width = 0x7f08000b; 160 | public static final int abc_search_view_preferred_width = 0x7f08000d; 161 | public static final int abc_search_view_text_min_width = 0x7f08000c; 162 | public static final int dialog_fixed_height_major = 0x7f080013; 163 | public static final int dialog_fixed_height_minor = 0x7f080014; 164 | public static final int dialog_fixed_width_major = 0x7f080011; 165 | public static final int dialog_fixed_width_minor = 0x7f080012; 166 | } 167 | public static final class drawable { 168 | public static final int abc_ab_bottom_solid_dark_holo = 0x7f020000; 169 | public static final int abc_ab_bottom_solid_light_holo = 0x7f020001; 170 | public static final int abc_ab_bottom_transparent_dark_holo = 0x7f020002; 171 | public static final int abc_ab_bottom_transparent_light_holo = 0x7f020003; 172 | public static final int abc_ab_share_pack_holo_dark = 0x7f020004; 173 | public static final int abc_ab_share_pack_holo_light = 0x7f020005; 174 | public static final int abc_ab_solid_dark_holo = 0x7f020006; 175 | public static final int abc_ab_solid_light_holo = 0x7f020007; 176 | public static final int abc_ab_stacked_solid_dark_holo = 0x7f020008; 177 | public static final int abc_ab_stacked_solid_light_holo = 0x7f020009; 178 | public static final int abc_ab_stacked_transparent_dark_holo = 0x7f02000a; 179 | public static final int abc_ab_stacked_transparent_light_holo = 0x7f02000b; 180 | public static final int abc_ab_transparent_dark_holo = 0x7f02000c; 181 | public static final int abc_ab_transparent_light_holo = 0x7f02000d; 182 | public static final int abc_cab_background_bottom_holo_dark = 0x7f02000e; 183 | public static final int abc_cab_background_bottom_holo_light = 0x7f02000f; 184 | public static final int abc_cab_background_top_holo_dark = 0x7f020010; 185 | public static final int abc_cab_background_top_holo_light = 0x7f020011; 186 | public static final int abc_ic_ab_back_holo_dark = 0x7f020012; 187 | public static final int abc_ic_ab_back_holo_light = 0x7f020013; 188 | public static final int abc_ic_cab_done_holo_dark = 0x7f020014; 189 | public static final int abc_ic_cab_done_holo_light = 0x7f020015; 190 | public static final int abc_ic_clear = 0x7f020016; 191 | public static final int abc_ic_clear_disabled = 0x7f020017; 192 | public static final int abc_ic_clear_holo_light = 0x7f020018; 193 | public static final int abc_ic_clear_normal = 0x7f020019; 194 | public static final int abc_ic_clear_search_api_disabled_holo_light = 0x7f02001a; 195 | public static final int abc_ic_clear_search_api_holo_light = 0x7f02001b; 196 | public static final int abc_ic_commit_search_api_holo_dark = 0x7f02001c; 197 | public static final int abc_ic_commit_search_api_holo_light = 0x7f02001d; 198 | public static final int abc_ic_go = 0x7f02001e; 199 | public static final int abc_ic_go_search_api_holo_light = 0x7f02001f; 200 | public static final int abc_ic_menu_moreoverflow_normal_holo_dark = 0x7f020020; 201 | public static final int abc_ic_menu_moreoverflow_normal_holo_light = 0x7f020021; 202 | public static final int abc_ic_menu_share_holo_dark = 0x7f020022; 203 | public static final int abc_ic_menu_share_holo_light = 0x7f020023; 204 | public static final int abc_ic_search = 0x7f020024; 205 | public static final int abc_ic_search_api_holo_light = 0x7f020025; 206 | public static final int abc_ic_voice_search = 0x7f020026; 207 | public static final int abc_ic_voice_search_api_holo_light = 0x7f020027; 208 | public static final int abc_item_background_holo_dark = 0x7f020028; 209 | public static final int abc_item_background_holo_light = 0x7f020029; 210 | public static final int abc_list_divider_holo_dark = 0x7f02002a; 211 | public static final int abc_list_divider_holo_light = 0x7f02002b; 212 | public static final int abc_list_focused_holo = 0x7f02002c; 213 | public static final int abc_list_longpressed_holo = 0x7f02002d; 214 | public static final int abc_list_pressed_holo_dark = 0x7f02002e; 215 | public static final int abc_list_pressed_holo_light = 0x7f02002f; 216 | public static final int abc_list_selector_background_transition_holo_dark = 0x7f020030; 217 | public static final int abc_list_selector_background_transition_holo_light = 0x7f020031; 218 | public static final int abc_list_selector_disabled_holo_dark = 0x7f020032; 219 | public static final int abc_list_selector_disabled_holo_light = 0x7f020033; 220 | public static final int abc_list_selector_holo_dark = 0x7f020034; 221 | public static final int abc_list_selector_holo_light = 0x7f020035; 222 | public static final int abc_menu_dropdown_panel_holo_dark = 0x7f020036; 223 | public static final int abc_menu_dropdown_panel_holo_light = 0x7f020037; 224 | public static final int abc_menu_hardkey_panel_holo_dark = 0x7f020038; 225 | public static final int abc_menu_hardkey_panel_holo_light = 0x7f020039; 226 | public static final int abc_search_dropdown_dark = 0x7f02003a; 227 | public static final int abc_search_dropdown_light = 0x7f02003b; 228 | public static final int abc_spinner_ab_default_holo_dark = 0x7f02003c; 229 | public static final int abc_spinner_ab_default_holo_light = 0x7f02003d; 230 | public static final int abc_spinner_ab_disabled_holo_dark = 0x7f02003e; 231 | public static final int abc_spinner_ab_disabled_holo_light = 0x7f02003f; 232 | public static final int abc_spinner_ab_focused_holo_dark = 0x7f020040; 233 | public static final int abc_spinner_ab_focused_holo_light = 0x7f020041; 234 | public static final int abc_spinner_ab_holo_dark = 0x7f020042; 235 | public static final int abc_spinner_ab_holo_light = 0x7f020043; 236 | public static final int abc_spinner_ab_pressed_holo_dark = 0x7f020044; 237 | public static final int abc_spinner_ab_pressed_holo_light = 0x7f020045; 238 | public static final int abc_tab_indicator_ab_holo = 0x7f020046; 239 | public static final int abc_tab_selected_focused_holo = 0x7f020047; 240 | public static final int abc_tab_selected_holo = 0x7f020048; 241 | public static final int abc_tab_selected_pressed_holo = 0x7f020049; 242 | public static final int abc_tab_unselected_pressed_holo = 0x7f02004a; 243 | public static final int abc_textfield_search_default_holo_dark = 0x7f02004b; 244 | public static final int abc_textfield_search_default_holo_light = 0x7f02004c; 245 | public static final int abc_textfield_search_right_default_holo_dark = 0x7f02004d; 246 | public static final int abc_textfield_search_right_default_holo_light = 0x7f02004e; 247 | public static final int abc_textfield_search_right_selected_holo_dark = 0x7f02004f; 248 | public static final int abc_textfield_search_right_selected_holo_light = 0x7f020050; 249 | public static final int abc_textfield_search_selected_holo_dark = 0x7f020051; 250 | public static final int abc_textfield_search_selected_holo_light = 0x7f020052; 251 | public static final int abc_textfield_searchview_holo_dark = 0x7f020053; 252 | public static final int abc_textfield_searchview_holo_light = 0x7f020054; 253 | public static final int abc_textfield_searchview_right_holo_dark = 0x7f020055; 254 | public static final int abc_textfield_searchview_right_holo_light = 0x7f020056; 255 | } 256 | public static final class id { 257 | public static final int action_bar = 0x7f050020; 258 | public static final int action_bar_activity_content = 0x7f050015; 259 | public static final int action_bar_container = 0x7f05001f; 260 | public static final int action_bar_overlay_layout = 0x7f050023; 261 | public static final int action_bar_root = 0x7f05001e; 262 | public static final int action_bar_subtitle = 0x7f050027; 263 | public static final int action_bar_title = 0x7f050026; 264 | public static final int action_context_bar = 0x7f050021; 265 | public static final int action_menu_divider = 0x7f050016; 266 | public static final int action_menu_presenter = 0x7f050017; 267 | public static final int action_mode_close_button = 0x7f050028; 268 | public static final int activity_chooser_view_content = 0x7f050029; 269 | public static final int always = 0x7f05000b; 270 | public static final int beginning = 0x7f050011; 271 | public static final int checkbox = 0x7f050031; 272 | public static final int collapseActionView = 0x7f05000d; 273 | public static final int default_activity_button = 0x7f05002c; 274 | public static final int dialog = 0x7f05000e; 275 | public static final int disableHome = 0x7f050008; 276 | public static final int dropdown = 0x7f05000f; 277 | public static final int edit_query = 0x7f050034; 278 | public static final int end = 0x7f050013; 279 | public static final int expand_activities_button = 0x7f05002a; 280 | public static final int expanded_menu = 0x7f050030; 281 | public static final int home = 0x7f050014; 282 | public static final int homeAsUp = 0x7f050005; 283 | public static final int icon = 0x7f05002e; 284 | public static final int ifRoom = 0x7f05000a; 285 | public static final int image = 0x7f05002b; 286 | public static final int listMode = 0x7f050001; 287 | public static final int list_item = 0x7f05002d; 288 | public static final int middle = 0x7f050012; 289 | public static final int never = 0x7f050009; 290 | public static final int none = 0x7f050010; 291 | public static final int normal = 0x7f050000; 292 | public static final int progress_circular = 0x7f050018; 293 | public static final int progress_horizontal = 0x7f050019; 294 | public static final int radio = 0x7f050033; 295 | public static final int search_badge = 0x7f050036; 296 | public static final int search_bar = 0x7f050035; 297 | public static final int search_button = 0x7f050037; 298 | public static final int search_close_btn = 0x7f05003c; 299 | public static final int search_edit_frame = 0x7f050038; 300 | public static final int search_go_btn = 0x7f05003e; 301 | public static final int search_mag_icon = 0x7f050039; 302 | public static final int search_plate = 0x7f05003a; 303 | public static final int search_src_text = 0x7f05003b; 304 | public static final int search_voice_btn = 0x7f05003f; 305 | public static final int shortcut = 0x7f050032; 306 | public static final int showCustom = 0x7f050007; 307 | public static final int showHome = 0x7f050004; 308 | public static final int showTitle = 0x7f050006; 309 | public static final int split_action_bar = 0x7f050022; 310 | public static final int submit_area = 0x7f05003d; 311 | public static final int tabMode = 0x7f050002; 312 | public static final int title = 0x7f05002f; 313 | public static final int top_action_bar = 0x7f050024; 314 | public static final int up = 0x7f050025; 315 | public static final int useLogo = 0x7f050003; 316 | public static final int withText = 0x7f05000c; 317 | } 318 | public static final class integer { 319 | public static final int abc_max_action_buttons = 0x7f090000; 320 | } 321 | public static final class layout { 322 | public static final int abc_action_bar_decor = 0x7f030000; 323 | public static final int abc_action_bar_decor_include = 0x7f030001; 324 | public static final int abc_action_bar_decor_overlay = 0x7f030002; 325 | public static final int abc_action_bar_home = 0x7f030003; 326 | public static final int abc_action_bar_tab = 0x7f030004; 327 | public static final int abc_action_bar_tabbar = 0x7f030005; 328 | public static final int abc_action_bar_title_item = 0x7f030006; 329 | public static final int abc_action_bar_view_list_nav_layout = 0x7f030007; 330 | public static final int abc_action_menu_item_layout = 0x7f030008; 331 | public static final int abc_action_menu_layout = 0x7f030009; 332 | public static final int abc_action_mode_bar = 0x7f03000a; 333 | public static final int abc_action_mode_close_item = 0x7f03000b; 334 | public static final int abc_activity_chooser_view = 0x7f03000c; 335 | public static final int abc_activity_chooser_view_include = 0x7f03000d; 336 | public static final int abc_activity_chooser_view_list_item = 0x7f03000e; 337 | public static final int abc_expanded_menu_layout = 0x7f03000f; 338 | public static final int abc_list_menu_item_checkbox = 0x7f030010; 339 | public static final int abc_list_menu_item_icon = 0x7f030011; 340 | public static final int abc_list_menu_item_layout = 0x7f030012; 341 | public static final int abc_list_menu_item_radio = 0x7f030013; 342 | public static final int abc_popup_menu_item_layout = 0x7f030014; 343 | public static final int abc_search_dropdown_item_icons_2line = 0x7f030015; 344 | public static final int abc_search_view = 0x7f030016; 345 | public static final int abc_simple_decor = 0x7f030017; 346 | public static final int support_simple_spinner_dropdown_item = 0x7f030019; 347 | } 348 | public static final class string { 349 | public static final int abc_action_bar_home_description = 0x7f0a0001; 350 | public static final int abc_action_bar_up_description = 0x7f0a0002; 351 | public static final int abc_action_menu_overflow_description = 0x7f0a0003; 352 | public static final int abc_action_mode_done = 0x7f0a0000; 353 | public static final int abc_activity_chooser_view_see_all = 0x7f0a000a; 354 | public static final int abc_activitychooserview_choose_application = 0x7f0a0009; 355 | public static final int abc_searchview_description_clear = 0x7f0a0006; 356 | public static final int abc_searchview_description_query = 0x7f0a0005; 357 | public static final int abc_searchview_description_search = 0x7f0a0004; 358 | public static final int abc_searchview_description_submit = 0x7f0a0007; 359 | public static final int abc_searchview_description_voice = 0x7f0a0008; 360 | public static final int abc_shareactionprovider_share_with = 0x7f0a000c; 361 | public static final int abc_shareactionprovider_share_with_application = 0x7f0a000b; 362 | } 363 | public static final class style { 364 | public static final int TextAppearance_AppCompat_Base_CompactMenu_Dialog = 0x7f0b0063; 365 | public static final int TextAppearance_AppCompat_Base_SearchResult = 0x7f0b006d; 366 | public static final int TextAppearance_AppCompat_Base_SearchResult_Subtitle = 0x7f0b006f; 367 | public static final int TextAppearance_AppCompat_Base_SearchResult_Title = 0x7f0b006e; 368 | public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Large = 0x7f0b0069; 369 | public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Small = 0x7f0b006a; 370 | public static final int TextAppearance_AppCompat_Light_Base_SearchResult = 0x7f0b0070; 371 | public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle = 0x7f0b0072; 372 | public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Title = 0x7f0b0071; 373 | public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large = 0x7f0b006b; 374 | public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small = 0x7f0b006c; 375 | public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0b0035; 376 | public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0b0034; 377 | public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0b0030; 378 | public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0b0031; 379 | public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0b0033; 380 | public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0b0032; 381 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0b001a; 382 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0b0006; 383 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0b0008; 384 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0b0005; 385 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0b0007; 386 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0b001e; 387 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0b0020; 388 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0b001d; 389 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0b001f; 390 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Menu = 0x7f0b0054; 391 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle = 0x7f0b0056; 392 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse = 0x7f0b0058; 393 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title = 0x7f0b0055; 394 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse = 0x7f0b0057; 395 | public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle = 0x7f0b0051; 396 | public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse = 0x7f0b0053; 397 | public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title = 0x7f0b0050; 398 | public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse = 0x7f0b0052; 399 | public static final int TextAppearance_AppCompat_Widget_Base_DropDownItem = 0x7f0b0061; 400 | public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0b0021; 401 | public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0b002e; 402 | public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0b002f; 403 | public static final int TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item = 0x7f0b0062; 404 | public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0b0028; 405 | public static final int Theme_AppCompat = 0x7f0b0077; 406 | public static final int Theme_AppCompat_Base_CompactMenu = 0x7f0b0083; 407 | public static final int Theme_AppCompat_Base_CompactMenu_Dialog = 0x7f0b0084; 408 | public static final int Theme_AppCompat_CompactMenu = 0x7f0b007c; 409 | public static final int Theme_AppCompat_CompactMenu_Dialog = 0x7f0b007d; 410 | public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0b007a; 411 | public static final int Theme_AppCompat_Light = 0x7f0b0078; 412 | public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0b0079; 413 | public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0b007b; 414 | public static final int Theme_Base = 0x7f0b007e; 415 | public static final int Theme_Base_AppCompat = 0x7f0b0080; 416 | public static final int Theme_Base_AppCompat_DialogWhenLarge = 0x7f0b0085; 417 | public static final int Theme_Base_AppCompat_DialogWhenLarge_Base = 0x7f0b0089; 418 | public static final int Theme_Base_AppCompat_Dialog_FixedSize = 0x7f0b0087; 419 | public static final int Theme_Base_AppCompat_Dialog_Light_FixedSize = 0x7f0b0088; 420 | public static final int Theme_Base_AppCompat_Light = 0x7f0b0081; 421 | public static final int Theme_Base_AppCompat_Light_DarkActionBar = 0x7f0b0082; 422 | public static final int Theme_Base_AppCompat_Light_DialogWhenLarge = 0x7f0b0086; 423 | public static final int Theme_Base_AppCompat_Light_DialogWhenLarge_Base = 0x7f0b008a; 424 | public static final int Theme_Base_Light = 0x7f0b007f; 425 | public static final int Widget_AppCompat_ActionBar = 0x7f0b0000; 426 | public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0b0002; 427 | public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0b0011; 428 | public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0b0017; 429 | public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0b0014; 430 | public static final int Widget_AppCompat_ActionButton = 0x7f0b000b; 431 | public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0b000d; 432 | public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0b000f; 433 | public static final int Widget_AppCompat_ActionMode = 0x7f0b001b; 434 | public static final int Widget_AppCompat_ActivityChooserView = 0x7f0b0038; 435 | public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0b0036; 436 | public static final int Widget_AppCompat_Base_ActionBar = 0x7f0b003a; 437 | public static final int Widget_AppCompat_Base_ActionBar_Solid = 0x7f0b003c; 438 | public static final int Widget_AppCompat_Base_ActionBar_TabBar = 0x7f0b0045; 439 | public static final int Widget_AppCompat_Base_ActionBar_TabText = 0x7f0b004b; 440 | public static final int Widget_AppCompat_Base_ActionBar_TabView = 0x7f0b0048; 441 | public static final int Widget_AppCompat_Base_ActionButton = 0x7f0b003f; 442 | public static final int Widget_AppCompat_Base_ActionButton_CloseMode = 0x7f0b0041; 443 | public static final int Widget_AppCompat_Base_ActionButton_Overflow = 0x7f0b0043; 444 | public static final int Widget_AppCompat_Base_ActionMode = 0x7f0b004e; 445 | public static final int Widget_AppCompat_Base_ActivityChooserView = 0x7f0b0075; 446 | public static final int Widget_AppCompat_Base_AutoCompleteTextView = 0x7f0b0073; 447 | public static final int Widget_AppCompat_Base_DropDownItem_Spinner = 0x7f0b005d; 448 | public static final int Widget_AppCompat_Base_ListPopupWindow = 0x7f0b0065; 449 | public static final int Widget_AppCompat_Base_ListView_DropDown = 0x7f0b005f; 450 | public static final int Widget_AppCompat_Base_ListView_Menu = 0x7f0b0064; 451 | public static final int Widget_AppCompat_Base_PopupMenu = 0x7f0b0067; 452 | public static final int Widget_AppCompat_Base_ProgressBar = 0x7f0b005a; 453 | public static final int Widget_AppCompat_Base_ProgressBar_Horizontal = 0x7f0b0059; 454 | public static final int Widget_AppCompat_Base_Spinner = 0x7f0b005b; 455 | public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0b0024; 456 | public static final int Widget_AppCompat_Light_ActionBar = 0x7f0b0001; 457 | public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0b0003; 458 | public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0b0004; 459 | public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0b0012; 460 | public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0b0013; 461 | public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0b0018; 462 | public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0b0019; 463 | public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0b0015; 464 | public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0b0016; 465 | public static final int Widget_AppCompat_Light_ActionButton = 0x7f0b000c; 466 | public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0b000e; 467 | public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0b0010; 468 | public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0b001c; 469 | public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0b0039; 470 | public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0b0037; 471 | public static final int Widget_AppCompat_Light_Base_ActionBar = 0x7f0b003b; 472 | public static final int Widget_AppCompat_Light_Base_ActionBar_Solid = 0x7f0b003d; 473 | public static final int Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse = 0x7f0b003e; 474 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar = 0x7f0b0046; 475 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse = 0x7f0b0047; 476 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabText = 0x7f0b004c; 477 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse = 0x7f0b004d; 478 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabView = 0x7f0b0049; 479 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse = 0x7f0b004a; 480 | public static final int Widget_AppCompat_Light_Base_ActionButton = 0x7f0b0040; 481 | public static final int Widget_AppCompat_Light_Base_ActionButton_CloseMode = 0x7f0b0042; 482 | public static final int Widget_AppCompat_Light_Base_ActionButton_Overflow = 0x7f0b0044; 483 | public static final int Widget_AppCompat_Light_Base_ActionMode_Inverse = 0x7f0b004f; 484 | public static final int Widget_AppCompat_Light_Base_ActivityChooserView = 0x7f0b0076; 485 | public static final int Widget_AppCompat_Light_Base_AutoCompleteTextView = 0x7f0b0074; 486 | public static final int Widget_AppCompat_Light_Base_DropDownItem_Spinner = 0x7f0b005e; 487 | public static final int Widget_AppCompat_Light_Base_ListPopupWindow = 0x7f0b0066; 488 | public static final int Widget_AppCompat_Light_Base_ListView_DropDown = 0x7f0b0060; 489 | public static final int Widget_AppCompat_Light_Base_PopupMenu = 0x7f0b0068; 490 | public static final int Widget_AppCompat_Light_Base_Spinner = 0x7f0b005c; 491 | public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0b0025; 492 | public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0b002a; 493 | public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0b0027; 494 | public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0b002c; 495 | public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0b0023; 496 | public static final int Widget_AppCompat_ListPopupWindow = 0x7f0b0029; 497 | public static final int Widget_AppCompat_ListView_DropDown = 0x7f0b0026; 498 | public static final int Widget_AppCompat_ListView_Menu = 0x7f0b002d; 499 | public static final int Widget_AppCompat_PopupMenu = 0x7f0b002b; 500 | public static final int Widget_AppCompat_ProgressBar = 0x7f0b000a; 501 | public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0b0009; 502 | public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0b0022; 503 | } 504 | public static final class styleable { 505 | public static final int[] ActionBar = { 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037 }; 506 | public static final int[] ActionBarLayout = { 0x010100b3 }; 507 | public static final int ActionBarLayout_android_layout_gravity = 0; 508 | public static final int[] ActionBarWindow = { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006 }; 509 | public static final int ActionBarWindow_windowActionBar = 0; 510 | public static final int ActionBarWindow_windowActionBarOverlay = 1; 511 | public static final int ActionBarWindow_windowFixedHeightMajor = 6; 512 | public static final int ActionBarWindow_windowFixedHeightMinor = 4; 513 | public static final int ActionBarWindow_windowFixedWidthMajor = 3; 514 | public static final int ActionBarWindow_windowFixedWidthMinor = 5; 515 | public static final int ActionBarWindow_windowSplitActionBar = 2; 516 | public static final int ActionBar_background = 10; 517 | public static final int ActionBar_backgroundSplit = 12; 518 | public static final int ActionBar_backgroundStacked = 11; 519 | public static final int ActionBar_customNavigationLayout = 13; 520 | public static final int ActionBar_displayOptions = 3; 521 | public static final int ActionBar_divider = 9; 522 | public static final int ActionBar_height = 1; 523 | public static final int ActionBar_homeLayout = 14; 524 | public static final int ActionBar_icon = 7; 525 | public static final int ActionBar_indeterminateProgressStyle = 16; 526 | public static final int ActionBar_itemPadding = 18; 527 | public static final int ActionBar_logo = 8; 528 | public static final int ActionBar_navigationMode = 2; 529 | public static final int ActionBar_progressBarPadding = 17; 530 | public static final int ActionBar_progressBarStyle = 15; 531 | public static final int ActionBar_subtitle = 4; 532 | public static final int ActionBar_subtitleTextStyle = 6; 533 | public static final int ActionBar_title = 0; 534 | public static final int ActionBar_titleTextStyle = 5; 535 | public static final int[] ActionMenuItemView = { 0x0101013f }; 536 | public static final int ActionMenuItemView_android_minWidth = 0; 537 | public static final int[] ActionMenuView = { }; 538 | public static final int[] ActionMode = { 0x7f010026, 0x7f01002a, 0x7f01002b, 0x7f01002f, 0x7f010031 }; 539 | public static final int ActionMode_background = 3; 540 | public static final int ActionMode_backgroundSplit = 4; 541 | public static final int ActionMode_height = 0; 542 | public static final int ActionMode_subtitleTextStyle = 2; 543 | public static final int ActionMode_titleTextStyle = 1; 544 | public static final int[] ActivityChooserView = { 0x7f01006a, 0x7f01006b }; 545 | public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; 546 | public static final int ActivityChooserView_initialActivityCount = 0; 547 | public static final int[] CompatTextView = { 0x7f01006d }; 548 | public static final int CompatTextView_textAllCaps = 0; 549 | public static final int[] LinearLayoutICS = { 0x7f01002e, 0x7f010055, 0x7f010056 }; 550 | public static final int LinearLayoutICS_divider = 0; 551 | public static final int LinearLayoutICS_dividerPadding = 2; 552 | public static final int LinearLayoutICS_showDividers = 1; 553 | public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; 554 | public static final int MenuGroup_android_checkableBehavior = 5; 555 | public static final int MenuGroup_android_enabled = 0; 556 | public static final int MenuGroup_android_id = 1; 557 | public static final int MenuGroup_android_menuCategory = 3; 558 | public static final int MenuGroup_android_orderInCategory = 4; 559 | public static final int MenuGroup_android_visible = 2; 560 | public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050 }; 561 | public static final int MenuItem_actionLayout = 14; 562 | public static final int MenuItem_actionProviderClass = 16; 563 | public static final int MenuItem_actionViewClass = 15; 564 | public static final int MenuItem_android_alphabeticShortcut = 9; 565 | public static final int MenuItem_android_checkable = 11; 566 | public static final int MenuItem_android_checked = 3; 567 | public static final int MenuItem_android_enabled = 1; 568 | public static final int MenuItem_android_icon = 0; 569 | public static final int MenuItem_android_id = 2; 570 | public static final int MenuItem_android_menuCategory = 5; 571 | public static final int MenuItem_android_numericShortcut = 10; 572 | public static final int MenuItem_android_onClick = 12; 573 | public static final int MenuItem_android_orderInCategory = 6; 574 | public static final int MenuItem_android_title = 7; 575 | public static final int MenuItem_android_titleCondensed = 8; 576 | public static final int MenuItem_android_visible = 4; 577 | public static final int MenuItem_showAsAction = 13; 578 | public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x01010435 }; 579 | public static final int MenuView_android_headerBackground = 4; 580 | public static final int MenuView_android_horizontalDivider = 2; 581 | public static final int MenuView_android_itemBackground = 5; 582 | public static final int MenuView_android_itemIconDisabledAlpha = 6; 583 | public static final int MenuView_android_itemTextAppearance = 1; 584 | public static final int MenuView_android_preserveIconSpacing = 7; 585 | public static final int MenuView_android_verticalDivider = 3; 586 | public static final int MenuView_android_windowAnimationStyle = 0; 587 | public static final int[] SearchView = { 0x0101011f, 0x01010220, 0x01010264, 0x7f01005a, 0x7f01005b }; 588 | public static final int SearchView_android_imeOptions = 2; 589 | public static final int SearchView_android_inputType = 1; 590 | public static final int SearchView_android_maxWidth = 0; 591 | public static final int SearchView_iconifiedByDefault = 3; 592 | public static final int SearchView_queryHint = 4; 593 | public static final int[] Spinner = { 0x010100af, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054 }; 594 | public static final int Spinner_android_dropDownHorizontalOffset = 4; 595 | public static final int Spinner_android_dropDownSelector = 1; 596 | public static final int Spinner_android_dropDownVerticalOffset = 5; 597 | public static final int Spinner_android_dropDownWidth = 3; 598 | public static final int Spinner_android_gravity = 0; 599 | public static final int Spinner_android_popupBackground = 2; 600 | public static final int Spinner_disableChildrenWhenDisabled = 9; 601 | public static final int Spinner_popupPromptView = 8; 602 | public static final int Spinner_prompt = 6; 603 | public static final int Spinner_spinnerMode = 7; 604 | public static final int[] Theme = { 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c }; 605 | public static final int Theme_actionDropDownStyle = 0; 606 | public static final int Theme_dropdownListPreferredItemHeight = 1; 607 | public static final int Theme_listChoiceBackgroundIndicator = 5; 608 | public static final int Theme_panelMenuListTheme = 4; 609 | public static final int Theme_panelMenuListWidth = 3; 610 | public static final int Theme_popupMenuStyle = 2; 611 | public static final int[] View = { 0x010100da, 0x7f010038, 0x7f010039 }; 612 | public static final int View_android_focusable = 0; 613 | public static final int View_paddingEnd = 2; 614 | public static final int View_paddingStart = 1; 615 | } 616 | } 617 | -------------------------------------------------------------------------------- /gen/com/cjl/androidtest/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.cjl.androidtest; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/ic_launcher-web.png -------------------------------------------------------------------------------- /illustration/rising_water_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/illustration/rising_water_1.gif -------------------------------------------------------------------------------- /illustration/rising_water_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/illustration/rising_water_2.png -------------------------------------------------------------------------------- /illustration/rotate_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/illustration/rotate_1.gif -------------------------------------------------------------------------------- /illustration/rotate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/illustration/rotate_2.png -------------------------------------------------------------------------------- /illustration/zoning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/illustration/zoning.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/libs/android-support-v4.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | android.library.reference.1=../appcompat_v7 16 | -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 23 | 24 | 30 | 31 | 36 | 37 | 42 | 43 | 48 | 49 | 54 | 55 | 60 | 61 | 66 | 67 | 68 | -------------------------------------------------------------------------------- /res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AndroidCircleNumberProgressBar 3 | 设置 4 | 5 | -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 15 | 16 | 17 | 20 | 21 | 33 | 34 | 45 | 46 | 57 | 58 | 69 | 70 | 81 | 82 | 93 | 94 | 104 | 105 | 115 | 116 | -------------------------------------------------------------------------------- /src/com/cjl/numbercircleprogressbar/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.cjl.numbercircleprogressbar; 2 | 3 | import java.io.File; 4 | import java.io.FileNotFoundException; 5 | import java.io.FileOutputStream; 6 | import java.io.IOException; 7 | import java.security.InvalidParameterException; 8 | import java.text.SimpleDateFormat; 9 | import java.util.Date; 10 | import java.util.Timer; 11 | import java.util.TimerTask; 12 | 13 | import com.cjl.androidtest.R; 14 | 15 | import android.support.v7.app.ActionBarActivity; 16 | import android.app.Activity; 17 | import android.graphics.Bitmap; 18 | import android.graphics.Bitmap.CompressFormat; 19 | import android.graphics.Bitmap.Config; 20 | import android.graphics.Canvas; 21 | import android.graphics.Rect; 22 | import android.os.Bundle; 23 | import android.os.Environment; 24 | import android.util.Log; 25 | import android.view.Menu; 26 | import android.view.MenuItem; 27 | import android.view.View; 28 | import android.view.View.MeasureSpec; 29 | import android.widget.RelativeLayout; 30 | 31 | public class MainActivity extends ActionBarActivity { 32 | 33 | private RelativeLayout mRootLayout = null; 34 | 35 | @Override 36 | protected void onCreate(Bundle savedInstanceState) { 37 | super.onCreate(savedInstanceState); 38 | setContentView(R.layout.activity_main); 39 | 40 | setTheNumberProgressBar(); 41 | } 42 | 43 | private Timer timer; 44 | private boolean isFinish = false; 45 | 46 | public void setTheNumberProgressBar() { 47 | 48 | final NumberCircleProgressBar bnp = (NumberCircleProgressBar) findViewById(R.id.numbercircleprogress_bar); 49 | timer = new Timer(); 50 | timer.schedule(new TimerTask() { 51 | @Override 52 | public void run() { 53 | runOnUiThread(new Runnable() { 54 | @Override 55 | public void run() { 56 | if (!isFinish) { 57 | bnp.incrementProgressBy(2); 58 | if (bnp.isFinished()) { 59 | isFinish = false; 60 | } 61 | } 62 | } 63 | }); 64 | } 65 | }, 1000, 100); 66 | } 67 | 68 | 69 | 70 | @Override 71 | public boolean onCreateOptionsMenu(Menu menu) { 72 | // Inflate the menu; this adds items to the action bar if it is present. 73 | getMenuInflater().inflate(R.menu.main, menu); 74 | return true; 75 | } 76 | 77 | @Override 78 | public boolean onOptionsItemSelected(MenuItem item) { 79 | // Handle action bar item clicks here. The action bar will 80 | // automatically handle clicks on the Home/Up button, so long 81 | // as you specify a parent activity in AndroidManifest.xml. 82 | int id = item.getItemId(); 83 | if (id == R.id.action_settings) { 84 | return true; 85 | } 86 | return super.onOptionsItemSelected(item); 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /src/com/cjl/numbercircleprogressbar/NumberCircleProgressBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjl/NumberCircleProgressBar/96144465f0ba5e6ae4753ded2da8a86d0e028a0f/src/com/cjl/numbercircleprogressbar/NumberCircleProgressBar.java --------------------------------------------------------------------------------