| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604 |
- int anim abc_fade_in 0x7f010001
- int anim abc_fade_out 0x7f010002
- int anim abc_grow_fade_in_from_bottom 0x7f010003
- int anim abc_popup_enter 0x7f010004
- int anim abc_popup_exit 0x7f010005
- int anim abc_shrink_fade_out_from_bottom 0x7f010006
- int anim abc_slide_in_bottom 0x7f010007
- int anim abc_slide_in_top 0x7f010008
- int anim abc_slide_out_bottom 0x7f010009
- int anim abc_slide_out_top 0x7f01000a
- int anim abc_tooltip_enter 0x7f01000b
- int anim abc_tooltip_exit 0x7f01000c
- int anim slide_in_left 0x7f01000d
- int anim slide_in_right 0x7f01000e
- int anim slide_out_left 0x7f01000f
- int anim slide_out_right 0x7f010010
- int animator card_flip_left_in 0x7f020001
- int animator card_flip_left_out 0x7f020002
- int animator card_flip_right_in 0x7f020003
- int animator card_flip_right_out 0x7f020004
- int attr ItemPickerCurrentItemValue 0x7f040001
- int attr ItemPickerDecrementBackground 0x7f040002
- int attr ItemPickerDecrementSrc 0x7f040003
- int attr ItemPickerDisplayedValue 0x7f040004
- int attr ItemPickerEditTextBackground 0x7f040005
- int attr ItemPickerIncrementBackground 0x7f040006
- int attr ItemPickerIncrementSrc 0x7f040007
- int attr ItemPickerMaxItemValue 0x7f040008
- int attr ItemPickerMinItemValue 0x7f040009
- int attr ItemPickerSpeed 0x7f04000a
- int attr TimePickerDefaultValue 0x7f04000b
- int attr actionBarDivider 0x7f04000c
- int attr actionBarItemBackground 0x7f04000d
- int attr actionBarPopupTheme 0x7f04000e
- int attr actionBarSize 0x7f04000f
- int attr actionBarSplitStyle 0x7f040010
- int attr actionBarStyle 0x7f040011
- int attr actionBarTabBarStyle 0x7f040012
- int attr actionBarTabStyle 0x7f040013
- int attr actionBarTabTextStyle 0x7f040014
- int attr actionBarTheme 0x7f040015
- int attr actionBarWidgetTheme 0x7f040016
- int attr actionButtonStyle 0x7f040017
- int attr actionDropDownStyle 0x7f040018
- int attr actionLayout 0x7f040019
- int attr actionMenuTextAppearance 0x7f04001a
- int attr actionMenuTextColor 0x7f04001b
- int attr actionModeBackground 0x7f04001c
- int attr actionModeCloseButtonStyle 0x7f04001d
- int attr actionModeCloseDrawable 0x7f04001e
- int attr actionModeCopyDrawable 0x7f04001f
- int attr actionModeCutDrawable 0x7f040020
- int attr actionModeFindDrawable 0x7f040021
- int attr actionModePasteDrawable 0x7f040022
- int attr actionModePopupWindowStyle 0x7f040023
- int attr actionModeSelectAllDrawable 0x7f040024
- int attr actionModeShareDrawable 0x7f040025
- int attr actionModeSplitBackground 0x7f040026
- int attr actionModeStyle 0x7f040027
- int attr actionModeWebSearchDrawable 0x7f040028
- int attr actionOverflowButtonStyle 0x7f040029
- int attr actionOverflowMenuStyle 0x7f04002a
- int attr actionProviderClass 0x7f04002b
- int attr actionViewClass 0x7f04002c
- int attr activityChooserViewStyle 0x7f04002d
- int attr adjustable 0x7f04002e
- int attr alertDialogButtonGroupStyle 0x7f04002f
- int attr alertDialogCenterButtons 0x7f040030
- int attr alertDialogStyle 0x7f040031
- int attr alertDialogTheme 0x7f040032
- int attr allowDividerAbove 0x7f040033
- int attr allowDividerAfterLastItem 0x7f040034
- int attr allowDividerBelow 0x7f040035
- int attr allowStacking 0x7f040036
- int attr alpha 0x7f040037
- int attr alphabeticModifiers 0x7f040038
- int attr arrowHeadLength 0x7f040039
- int attr arrowShaftLength 0x7f04003a
- int attr aspect_ratio 0x7f04003b
- int attr autoCompleteTextViewStyle 0x7f04003c
- int attr autoSizeMaxTextSize 0x7f04003d
- int attr autoSizeMinTextSize 0x7f04003e
- int attr autoSizePresetSizes 0x7f04003f
- int attr autoSizeStepGranularity 0x7f040040
- int attr autoSizeTextType 0x7f040041
- int attr background 0x7f040042
- int attr backgroundSplit 0x7f040043
- int attr backgroundStacked 0x7f040044
- int attr backgroundTint 0x7f040045
- int attr backgroundTintMode 0x7f040046
- int attr barLength 0x7f040047
- int attr borderlessButtonStyle 0x7f040048
- int attr buttonBarButtonStyle 0x7f040049
- int attr buttonBarNegativeButtonStyle 0x7f04004a
- int attr buttonBarNeutralButtonStyle 0x7f04004b
- int attr buttonBarPositiveButtonStyle 0x7f04004c
- int attr buttonBarStyle 0x7f04004d
- int attr buttonGravity 0x7f04004e
- int attr buttonIconDimen 0x7f04004f
- int attr buttonPanelSideLayout 0x7f040050
- int attr buttonStyle 0x7f040051
- int attr buttonStyleSmall 0x7f040052
- int attr buttonTint 0x7f040053
- int attr buttonTintMode 0x7f040054
- int attr checkBoxPreferenceStyle 0x7f040055
- int attr checkboxStyle 0x7f040056
- int attr checkedTextViewStyle 0x7f040057
- int attr closeIcon 0x7f040058
- int attr closeItemLayout 0x7f040059
- int attr collapseContentDescription 0x7f04005a
- int attr collapseIcon 0x7f04005b
- int attr color 0x7f04005c
- int attr colorAccent 0x7f04005d
- int attr colorBackgroundFloating 0x7f04005e
- int attr colorButtonNormal 0x7f04005f
- int attr colorControlActivated 0x7f040060
- int attr colorControlHighlight 0x7f040061
- int attr colorControlNormal 0x7f040062
- int attr colorError 0x7f040063
- int attr colorPrimary 0x7f040064
- int attr colorPrimaryDark 0x7f040065
- int attr colorSwitchThumbNormal 0x7f040066
- int attr commitIcon 0x7f040067
- int attr contentDescription 0x7f040068
- int attr contentInsetEnd 0x7f040069
- int attr contentInsetEndWithActions 0x7f04006a
- int attr contentInsetLeft 0x7f04006b
- int attr contentInsetRight 0x7f04006c
- int attr contentInsetStart 0x7f04006d
- int attr contentInsetStartWithNavigation 0x7f04006e
- int attr controlBackground 0x7f04006f
- int attr coordinatorLayoutStyle 0x7f040070
- int attr customNavigationLayout 0x7f040071
- int attr defaultQueryHint 0x7f040072
- int attr defaultValue 0x7f040073
- int attr default_value 0x7f040074
- int attr dependency 0x7f040075
- int attr dialogIcon 0x7f040076
- int attr dialogLayout 0x7f040077
- int attr dialogMessage 0x7f040078
- int attr dialogPreferenceStyle 0x7f040079
- int attr dialogPreferredPadding 0x7f04007a
- int attr dialogTheme 0x7f04007b
- int attr dialogTitle 0x7f04007c
- int attr disableDependentsState 0x7f04007d
- int attr displayMode 0x7f04007e
- int attr displayOptions 0x7f04007f
- int attr divider 0x7f040080
- int attr dividerHorizontal 0x7f040081
- int attr dividerPadding 0x7f040082
- int attr dividerVertical 0x7f040083
- int attr drawableSize 0x7f040084
- int attr drawerArrowStyle 0x7f040085
- int attr dropDownListViewStyle 0x7f040086
- int attr dropdownListPreferredItemHeight 0x7f040087
- int attr dropdownPreferenceStyle 0x7f040088
- int attr editTextBackground 0x7f040089
- int attr editTextColor 0x7f04008a
- int attr editTextPreferenceStyle 0x7f04008b
- int attr editTextStyle 0x7f04008c
- int attr elevation 0x7f04008d
- int attr enableSubWindow 0x7f04008e
- int attr enabled 0x7f04008f
- int attr entries 0x7f040090
- int attr entryValues 0x7f040091
- int attr expandActivityOverflowButtonDrawable 0x7f040092
- int attr fastScrollEnabled 0x7f040093
- int attr fastScrollHorizontalThumbDrawable 0x7f040094
- int attr fastScrollHorizontalTrackDrawable 0x7f040095
- int attr fastScrollVerticalThumbDrawable 0x7f040096
- int attr fastScrollVerticalTrackDrawable 0x7f040097
- int attr flipChildPos 0x7f040098
- int attr font 0x7f040099
- int attr fontFamily 0x7f04009a
- int attr fontProviderAuthority 0x7f04009b
- int attr fontProviderCerts 0x7f04009c
- int attr fontProviderFetchStrategy 0x7f04009d
- int attr fontProviderFetchTimeout 0x7f04009e
- int attr fontProviderPackage 0x7f04009f
- int attr fontProviderQuery 0x7f0400a0
- int attr fontStyle 0x7f0400a1
- int attr fontWeight 0x7f0400a2
- int attr fragment 0x7f0400a3
- int attr frame_color 0x7f0400a4
- int attr frame_type 0x7f0400a5
- int attr frame_width 0x7f0400a6
- int attr gapBetweenBars 0x7f0400a7
- int attr goIcon 0x7f0400a8
- int attr handle_touch_event 0x7f0400a9
- int attr height 0x7f0400aa
- int attr hideOnContentScroll 0x7f0400ab
- int attr homeAsUpIndicator 0x7f0400ac
- int attr homeLayout 0x7f0400ad
- int attr icon 0x7f0400ae
- int attr iconSpaceReserved 0x7f0400af
- int attr iconTint 0x7f0400b0
- int attr iconTintMode 0x7f0400b1
- int attr iconifiedByDefault 0x7f0400b2
- int attr imageButtonStyle 0x7f0400b3
- int attr indeterminateProgressStyle 0x7f0400b4
- int attr initialActivityCount 0x7f0400b5
- int attr initialExpandedChildrenCount 0x7f0400b6
- int attr isLightTheme 0x7f0400b7
- int attr itemPadding 0x7f0400b8
- int attr key 0x7f0400b9
- int attr keylines 0x7f0400ba
- int attr layout 0x7f0400bb
- int attr layoutManager 0x7f0400bc
- int attr layout_anchor 0x7f0400bd
- int attr layout_anchorGravity 0x7f0400be
- int attr layout_behavior 0x7f0400bf
- int attr layout_dodgeInsetEdges 0x7f0400c0
- int attr layout_insetEdge 0x7f0400c1
- int attr layout_keyline 0x7f0400c2
- int attr listChoiceBackgroundIndicator 0x7f0400c3
- int attr listDivider 0x7f0400c4
- int attr listDividerAlertDialog 0x7f0400c5
- int attr listItemLayout 0x7f0400c6
- int attr listLayout 0x7f0400c7
- int attr listMenuViewStyle 0x7f0400c8
- int attr listPopupWindowStyle 0x7f0400c9
- int attr listPreferredItemHeight 0x7f0400ca
- int attr listPreferredItemHeightLarge 0x7f0400cb
- int attr listPreferredItemHeightSmall 0x7f0400cc
- int attr listPreferredItemPaddingLeft 0x7f0400cd
- int attr listPreferredItemPaddingRight 0x7f0400ce
- int attr logo 0x7f0400cf
- int attr logoDescription 0x7f0400d0
- int attr maxButtonHeight 0x7f0400d1
- int attr maxHeight 0x7f0400d2
- int attr maxWidth 0x7f0400d3
- int attr max_value 0x7f0400d4
- int attr measureWithLargestChild 0x7f0400d5
- int attr min 0x7f0400d6
- int attr min_value 0x7f0400d7
- int attr multiChoiceItemLayout 0x7f0400d8
- int attr navigationContentDescription 0x7f0400d9
- int attr navigationIcon 0x7f0400da
- int attr navigationMode 0x7f0400db
- int attr negativeButtonText 0x7f0400dc
- int attr numericModifiers 0x7f0400dd
- int attr order 0x7f0400de
- int attr orderingFromXml 0x7f0400df
- int attr orientation 0x7f0400e0
- int attr overlapAnchor 0x7f0400e1
- int attr paddingBottomNoButtons 0x7f0400e2
- int attr paddingEnd 0x7f0400e3
- int attr paddingStart 0x7f0400e4
- int attr paddingTopNoTitle 0x7f0400e5
- int attr panelBackground 0x7f0400e6
- int attr panelMenuListTheme 0x7f0400e7
- int attr panelMenuListWidth 0x7f0400e8
- int attr persistent 0x7f0400e9
- int attr popupMenuStyle 0x7f0400ea
- int attr popupTheme 0x7f0400eb
- int attr popupWindowStyle 0x7f0400ec
- int attr positiveButtonText 0x7f0400ed
- int attr preferenceActivityStyle 0x7f0400ee
- int attr preferenceCategoryStyle 0x7f0400ef
- int attr preferenceFragmentCompatStyle 0x7f0400f0
- int attr preferenceFragmentListStyle 0x7f0400f1
- int attr preferenceFragmentPaddingSide 0x7f0400f2
- int attr preferenceFragmentStyle 0x7f0400f3
- int attr preferenceHeaderPanelStyle 0x7f0400f4
- int attr preferenceInformationStyle 0x7f0400f5
- int attr preferenceLayoutChild 0x7f0400f6
- int attr preferenceListStyle 0x7f0400f7
- int attr preferencePanelStyle 0x7f0400f8
- int attr preferenceScreenStyle 0x7f0400f9
- int attr preferenceStyle 0x7f0400fa
- int attr preferenceTheme 0x7f0400fb
- int attr preserveIconSpacing 0x7f0400fc
- int attr progressBarPadding 0x7f0400fd
- int attr progressBarStyle 0x7f0400fe
- int attr queryBackground 0x7f0400ff
- int attr queryHint 0x7f040100
- int attr radioButtonStyle 0x7f040101
- int attr ratingBarStyle 0x7f040102
- int attr ratingBarStyleIndicator 0x7f040103
- int attr ratingBarStyleSmall 0x7f040104
- int attr reverseLayout 0x7f040105
- int attr ringtonePreferenceStyle 0x7f040106
- int attr scale_color 0x7f040107
- int attr scale_mode 0x7f040108
- int attr scale_rotation 0x7f040109
- int attr scale_scale 0x7f04010a
- int attr scale_type 0x7f04010b
- int attr scale_value 0x7f04010c
- int attr scale_width 0x7f04010d
- int attr searchHintIcon 0x7f04010e
- int attr searchIcon 0x7f04010f
- int attr searchViewStyle 0x7f040110
- int attr seekBarIncrement 0x7f040111
- int attr seekBarPreferenceStyle 0x7f040112
- int attr seekBarStyle 0x7f040113
- int attr seekbar_id 0x7f040114
- int attr seekbar_label_id 0x7f040115
- int attr seekbar_layout 0x7f040116
- int attr selectable 0x7f040117
- int attr selectableItemBackground 0x7f040118
- int attr selectableItemBackgroundBorderless 0x7f040119
- int attr shouldDisableView 0x7f04011a
- int attr showAsAction 0x7f04011b
- int attr showDividers 0x7f04011c
- int attr showSeekBarValue 0x7f04011d
- int attr showText 0x7f04011e
- int attr showTitle 0x7f04011f
- int attr singleChoiceItemLayout 0x7f040120
- int attr singleLineTitle 0x7f040121
- int attr spanCount 0x7f040122
- int attr spinBars 0x7f040123
- int attr spinnerDropDownItemStyle 0x7f040124
- int attr spinnerStyle 0x7f040125
- int attr splitTrack 0x7f040126
- int attr srcCompat 0x7f040127
- int attr stackFromEnd 0x7f040128
- int attr state_above_anchor 0x7f040129
- int attr statusBarBackground 0x7f04012a
- int attr subMenuArrow 0x7f04012b
- int attr subWindowScale 0x7f04012c
- int attr submitBackground 0x7f04012d
- int attr subtitle 0x7f04012e
- int attr subtitleTextAppearance 0x7f04012f
- int attr subtitleTextColor 0x7f040130
- int attr subtitleTextStyle 0x7f040131
- int attr suggestionRowLayout 0x7f040132
- int attr summary 0x7f040133
- int attr summaryOff 0x7f040134
- int attr summaryOn 0x7f040135
- int attr switchMinWidth 0x7f040136
- int attr switchPadding 0x7f040137
- int attr switchPreferenceCompatStyle 0x7f040138
- int attr switchPreferenceStyle 0x7f040139
- int attr switchStyle 0x7f04013a
- int attr switchTextAppearance 0x7f04013b
- int attr switchTextOff 0x7f04013c
- int attr switchTextOn 0x7f04013d
- int attr textAllCaps 0x7f04013e
- int attr textAppearanceLargePopupMenu 0x7f04013f
- int attr textAppearanceListItem 0x7f040140
- int attr textAppearanceListItemSecondary 0x7f040141
- int attr textAppearanceListItemSmall 0x7f040142
- int attr textAppearancePopupMenuHeader 0x7f040143
- int attr textAppearanceSearchResultSubtitle 0x7f040144
- int attr textAppearanceSearchResultTitle 0x7f040145
- int attr textAppearanceSmallPopupMenu 0x7f040146
- int attr textColorAlertDialogListItem 0x7f040147
- int attr textColorSearchUrl 0x7f040148
- int attr theme 0x7f040149
- int attr thickness 0x7f04014a
- int attr thumbTextPadding 0x7f04014b
- int attr thumbTint 0x7f04014c
- int attr thumbTintMode 0x7f04014d
- int attr tickMark 0x7f04014e
- int attr tickMarkTint 0x7f04014f
- int attr tickMarkTintMode 0x7f040150
- int attr tick_color 0x7f040151
- int attr tint 0x7f040152
- int attr tintMode 0x7f040153
- int attr title 0x7f040154
- int attr titleMargin 0x7f040155
- int attr titleMarginBottom 0x7f040156
- int attr titleMarginEnd 0x7f040157
- int attr titleMarginStart 0x7f040158
- int attr titleMarginTop 0x7f040159
- int attr titleMargins 0x7f04015a
- int attr titleTextAppearance 0x7f04015b
- int attr titleTextColor 0x7f04015c
- int attr titleTextStyle 0x7f04015d
- int attr toolbarNavigationButtonStyle 0x7f04015e
- int attr toolbarStyle 0x7f04015f
- int attr tooltipForegroundColor 0x7f040160
- int attr tooltipFrameBackground 0x7f040161
- int attr tooltipText 0x7f040162
- int attr track 0x7f040163
- int attr trackTint 0x7f040164
- int attr trackTintMode 0x7f040165
- int attr value_format 0x7f040166
- int attr viewInflaterClass 0x7f040167
- int attr voiceIcon 0x7f040168
- int attr widgetLayout 0x7f040169
- int attr windowActionBar 0x7f04016a
- int attr windowActionBarOverlay 0x7f04016b
- int attr windowActionModeOverlay 0x7f04016c
- int attr windowFixedHeightMajor 0x7f04016d
- int attr windowFixedHeightMinor 0x7f04016e
- int attr windowFixedWidthMajor 0x7f04016f
- int attr windowFixedWidthMinor 0x7f040170
- int attr windowMinWidthMajor 0x7f040171
- int attr windowMinWidthMinor 0x7f040172
- int attr windowNoTitle 0x7f040173
- int attr yesNoPreferenceStyle 0x7f040174
- int bool abc_action_bar_embed_tabs 0x7f050001
- int bool abc_allow_stacked_button_bar 0x7f050002
- int bool abc_config_actionMenuItemAllCaps 0x7f050003
- int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050004
- int color ALICEBLUE 0x7f060001
- int color ANTIQUEWHITE 0x7f060002
- int color AQUA 0x7f060003
- int color AQUAMARINE 0x7f060004
- int color AZURE 0x7f060005
- int color BEIGE 0x7f060006
- int color BISQUE 0x7f060007
- int color BLACK 0x7f060008
- int color BLACK_A010 0x7f060009
- int color BLACK_A020 0x7f06000a
- int color BLACK_A030 0x7f06000b
- int color BLACK_A040 0x7f06000c
- int color BLACK_A050 0x7f06000d
- int color BLACK_A060 0x7f06000e
- int color BLACK_A070 0x7f06000f
- int color BLACK_A080 0x7f060010
- int color BLACK_A090 0x7f060011
- int color BLACK_A100 0x7f060012
- int color BLANCHEDALMOND 0x7f060013
- int color BLUE 0x7f060014
- int color BLUEVIOLET 0x7f060015
- int color BLUE_A010 0x7f060016
- int color BLUE_A020 0x7f060017
- int color BLUE_A030 0x7f060018
- int color BLUE_A040 0x7f060019
- int color BLUE_A050 0x7f06001a
- int color BLUE_A060 0x7f06001b
- int color BLUE_A070 0x7f06001c
- int color BLUE_A080 0x7f06001d
- int color BLUE_A090 0x7f06001e
- int color BLUE_A100 0x7f06001f
- int color BROWN 0x7f060020
- int color BURLYWOOD 0x7f060021
- int color CADETBLUE 0x7f060022
- int color CHARTREUSE 0x7f060023
- int color CHOCOLATE 0x7f060024
- int color CLEAR 0x7f060025
- int color CORAL 0x7f060026
- int color CORNFLOWERBLUE 0x7f060027
- int color CORNSILK 0x7f060028
- int color CRIMSON 0x7f060029
- int color CYAN 0x7f06002a
- int color DARKBLUE 0x7f06002b
- int color DARKCYAN 0x7f06002c
- int color DARKGOLDENROD 0x7f06002d
- int color DARKGRAY 0x7f06002e
- int color DARKGREEN 0x7f06002f
- int color DARKKHAKI 0x7f060030
- int color DARKMAGENTA 0x7f060031
- int color DARKOLIVEGREEN 0x7f060032
- int color DARKORANGE 0x7f060033
- int color DARKORCHID 0x7f060034
- int color DARKRED 0x7f060035
- int color DARKSALMON 0x7f060036
- int color DARKSEAGREEN 0x7f060037
- int color DARKSLATEBLUE 0x7f060038
- int color DARKSLATEGRAY 0x7f060039
- int color DARKTURQUOISE 0x7f06003a
- int color DARKVIOLET 0x7f06003b
- int color DEEPPINK 0x7f06003c
- int color DEEPSKYBLUE 0x7f06003d
- int color DIMGRAY 0x7f06003e
- int color DODGERBLUE 0x7f06003f
- int color FIREBRICK 0x7f060040
- int color FLORALWHITE 0x7f060041
- int color FORESTGREEN 0x7f060042
- int color FUCHSIA 0x7f060043
- int color GAINSBORO 0x7f060044
- int color GHOSTWHITE 0x7f060045
- int color GOLD 0x7f060046
- int color GOLDENROD 0x7f060047
- int color GRAY 0x7f060048
- int color GRAY_050_A010 0x7f060049
- int color GRAY_050_A020 0x7f06004a
- int color GRAY_050_A030 0x7f06004b
- int color GRAY_050_A040 0x7f06004c
- int color GRAY_050_A050 0x7f06004d
- int color GRAY_050_A060 0x7f06004e
- int color GRAY_050_A070 0x7f06004f
- int color GRAY_050_A080 0x7f060050
- int color GRAY_050_A090 0x7f060051
- int color GRAY_050_A100 0x7f060052
- int color GRAY_100_A010 0x7f060053
- int color GRAY_100_A020 0x7f060054
- int color GRAY_100_A030 0x7f060055
- int color GRAY_100_A040 0x7f060056
- int color GRAY_100_A050 0x7f060057
- int color GRAY_100_A060 0x7f060058
- int color GRAY_100_A070 0x7f060059
- int color GRAY_100_A080 0x7f06005a
- int color GRAY_100_A090 0x7f06005b
- int color GRAY_100_A100 0x7f06005c
- int color GRAY_200_A010 0x7f06005d
- int color GRAY_200_A020 0x7f06005e
- int color GRAY_200_A030 0x7f06005f
- int color GRAY_200_A040 0x7f060060
- int color GRAY_200_A050 0x7f060061
- int color GRAY_200_A060 0x7f060062
- int color GRAY_200_A070 0x7f060063
- int color GRAY_200_A080 0x7f060064
- int color GRAY_200_A090 0x7f060065
- int color GRAY_200_A100 0x7f060066
- int color GRAY_300_A010 0x7f060067
- int color GRAY_300_A020 0x7f060068
- int color GRAY_300_A030 0x7f060069
- int color GRAY_300_A040 0x7f06006a
- int color GRAY_300_A050 0x7f06006b
- int color GRAY_300_A060 0x7f06006c
- int color GRAY_300_A070 0x7f06006d
- int color GRAY_300_A080 0x7f06006e
- int color GRAY_300_A090 0x7f06006f
- int color GRAY_300_A100 0x7f060070
- int color GRAY_400_A010 0x7f060071
- int color GRAY_400_A020 0x7f060072
- int color GRAY_400_A030 0x7f060073
- int color GRAY_400_A040 0x7f060074
- int color GRAY_400_A050 0x7f060075
- int color GRAY_400_A060 0x7f060076
- int color GRAY_400_A070 0x7f060077
- int color GRAY_400_A080 0x7f060078
- int color GRAY_400_A090 0x7f060079
- int color GRAY_400_A100 0x7f06007a
- int color GRAY_500_A010 0x7f06007b
- int color GRAY_500_A020 0x7f06007c
- int color GRAY_500_A030 0x7f06007d
- int color GRAY_500_A040 0x7f06007e
- int color GRAY_500_A050 0x7f06007f
- int color GRAY_500_A060 0x7f060080
- int color GRAY_500_A070 0x7f060081
- int color GRAY_500_A080 0x7f060082
- int color GRAY_500_A090 0x7f060083
- int color GRAY_500_A100 0x7f060084
- int color GRAY_600_A010 0x7f060085
- int color GRAY_600_A020 0x7f060086
- int color GRAY_600_A030 0x7f060087
- int color GRAY_600_A040 0x7f060088
- int color GRAY_600_A050 0x7f060089
- int color GRAY_600_A060 0x7f06008a
- int color GRAY_600_A070 0x7f06008b
- int color GRAY_600_A080 0x7f06008c
- int color GRAY_600_A090 0x7f06008d
- int color GRAY_600_A100 0x7f06008e
- int color GRAY_700_A010 0x7f06008f
- int color GRAY_700_A020 0x7f060090
- int color GRAY_700_A030 0x7f060091
- int color GRAY_700_A040 0x7f060092
- int color GRAY_700_A050 0x7f060093
- int color GRAY_700_A060 0x7f060094
- int color GRAY_700_A070 0x7f060095
- int color GRAY_700_A080 0x7f060096
- int color GRAY_700_A090 0x7f060097
- int color GRAY_700_A100 0x7f060098
- int color GRAY_800_A010 0x7f060099
- int color GRAY_800_A020 0x7f06009a
- int color GRAY_800_A030 0x7f06009b
- int color GRAY_800_A040 0x7f06009c
- int color GRAY_800_A050 0x7f06009d
- int color GRAY_800_A060 0x7f06009e
- int color GRAY_800_A070 0x7f06009f
- int color GRAY_800_A080 0x7f0600a0
- int color GRAY_800_A090 0x7f0600a1
- int color GRAY_800_A100 0x7f0600a2
- int color GRAY_900_A010 0x7f0600a3
- int color GRAY_900_A020 0x7f0600a4
- int color GRAY_900_A030 0x7f0600a5
- int color GRAY_900_A040 0x7f0600a6
- int color GRAY_900_A050 0x7f0600a7
- int color GRAY_900_A060 0x7f0600a8
- int color GRAY_900_A070 0x7f0600a9
- int color GRAY_900_A080 0x7f0600aa
- int color GRAY_900_A090 0x7f0600ab
- int color GRAY_900_A100 0x7f0600ac
- int color GREEN 0x7f0600ad
- int color GREENYELLOW 0x7f0600ae
- int color GREEN_A010 0x7f0600af
- int color GREEN_A020 0x7f0600b0
- int color GREEN_A030 0x7f0600b1
- int color GREEN_A040 0x7f0600b2
- int color GREEN_A050 0x7f0600b3
- int color GREEN_A060 0x7f0600b4
- int color GREEN_A070 0x7f0600b5
- int color GREEN_A080 0x7f0600b6
- int color GREEN_A090 0x7f0600b7
- int color GREEN_A100 0x7f0600b8
- int color HALF_CLEAR_ALICEBLUE 0x7f0600b9
- int color HALF_CLEAR_BLACK 0x7f0600ba
- int color HALF_CLEAR_GRAY 0x7f0600bb
- int color HALF_CLEAR_WHITE 0x7f0600bc
- int color HONEYDEW 0x7f0600bd
- int color HOTPINK 0x7f0600be
- int color INDIANRED 0x7f0600bf
- int color INDIGO 0x7f0600c0
- int color IVORY 0x7f0600c1
- int color KHAKI 0x7f0600c2
- int color LAVENDER 0x7f0600c3
- int color LAVENDERBLUSH 0x7f0600c4
- int color LAWNGREEN 0x7f0600c5
- int color LEMONCHIFFON 0x7f0600c6
- int color LIGHTBLUE 0x7f0600c7
- int color LIGHTCORAL 0x7f0600c8
- int color LIGHTCYAN 0x7f0600c9
- int color LIGHTGOLDENRODYELLOW 0x7f0600ca
- int color LIGHTGRAY 0x7f0600cb
- int color LIGHTGREEN 0x7f0600cc
- int color LIGHTPINK 0x7f0600cd
- int color LIGHTSALMON 0x7f0600ce
- int color LIGHTSEAGREEN 0x7f0600cf
- int color LIGHTSKYBLUE 0x7f0600d0
- int color LIGHTSLATEGRAY 0x7f0600d1
- int color LIGHTSTEELBLUE 0x7f0600d2
- int color LIGHTYELLOW 0x7f0600d3
- int color LIME 0x7f0600d4
- int color LIMEGREEN 0x7f0600d5
- int color LINEN 0x7f0600d6
- int color MAGENTA 0x7f0600d7
- int color MAROON 0x7f0600d8
- int color MEDIUMAQUAMARINE 0x7f0600d9
- int color MEDIUMBLUE 0x7f0600da
- int color MEDIUMORCHID 0x7f0600db
- int color MEDIUMPURPLE 0x7f0600dc
- int color MEDIUMSEAGREEN 0x7f0600dd
- int color MEDIUMSLATEBLUE 0x7f0600de
- int color MEDIUMSPRINGGREEN 0x7f0600df
- int color MEDIUMTURQUOISE 0x7f0600e0
- int color MEDIUMVIOLETRED 0x7f0600e1
- int color MIDNIGHTBLUE 0x7f0600e2
- int color MINTCREAM 0x7f0600e3
- int color MISTYROSE 0x7f0600e4
- int color MOCCASIN 0x7f0600e5
- int color NAVAJOWHITE 0x7f0600e6
- int color NAVY 0x7f0600e7
- int color OLDLACE 0x7f0600e8
- int color OLIVE 0x7f0600e9
- int color OLIVEDRAB 0x7f0600ea
- int color ORANGE 0x7f0600eb
- int color ORANGERED 0x7f0600ec
- int color ORCHID 0x7f0600ed
- int color PALEGOLDENROD 0x7f0600ee
- int color PALEGREEN 0x7f0600ef
- int color PALETURQUOISE 0x7f0600f0
- int color PALEVIOLETRED 0x7f0600f1
- int color PAPAYAWHIP 0x7f0600f2
- int color PEACHPUFF 0x7f0600f3
- int color PERU 0x7f0600f4
- int color PINK 0x7f0600f5
- int color PLUM 0x7f0600f6
- int color POWDERBLUE 0x7f0600f7
- int color PURPLE 0x7f0600f8
- int color PURPLE_A010 0x7f0600f9
- int color PURPLE_A020 0x7f0600fa
- int color PURPLE_A030 0x7f0600fb
- int color PURPLE_A040 0x7f0600fc
- int color PURPLE_A050 0x7f0600fd
- int color PURPLE_A060 0x7f0600fe
- int color PURPLE_A070 0x7f0600ff
- int color PURPLE_A080 0x7f060100
- int color PURPLE_A090 0x7f060101
- int color PURPLE_A100 0x7f060102
- int color QUARTER_CLEAR_BLACK 0x7f060103
- int color QUARTER_CLEAR_GRAY 0x7f060104
- int color QUARTER_CLEAR_WHITE 0x7f060105
- int color RED 0x7f060106
- int color RED_050_A010 0x7f060107
- int color RED_050_A020 0x7f060108
- int color RED_050_A030 0x7f060109
- int color RED_050_A040 0x7f06010a
- int color RED_050_A050 0x7f06010b
- int color RED_050_A060 0x7f06010c
- int color RED_050_A070 0x7f06010d
- int color RED_050_A080 0x7f06010e
- int color RED_050_A090 0x7f06010f
- int color RED_050_A100 0x7f060110
- int color RED_100_A010 0x7f060111
- int color RED_100_A020 0x7f060112
- int color RED_100_A030 0x7f060113
- int color RED_100_A040 0x7f060114
- int color RED_100_A050 0x7f060115
- int color RED_100_A060 0x7f060116
- int color RED_100_A070 0x7f060117
- int color RED_100_A080 0x7f060118
- int color RED_100_A090 0x7f060119
- int color RED_100_A100 0x7f06011a
- int color RED_200_A010 0x7f06011b
- int color RED_200_A020 0x7f06011c
- int color RED_200_A030 0x7f06011d
- int color RED_200_A040 0x7f06011e
- int color RED_200_A050 0x7f06011f
- int color RED_200_A060 0x7f060120
- int color RED_200_A070 0x7f060121
- int color RED_200_A080 0x7f060122
- int color RED_200_A090 0x7f060123
- int color RED_200_A100 0x7f060124
- int color RED_300_A010 0x7f060125
- int color RED_300_A020 0x7f060126
- int color RED_300_A030 0x7f060127
- int color RED_300_A040 0x7f060128
- int color RED_300_A050 0x7f060129
- int color RED_300_A060 0x7f06012a
- int color RED_300_A070 0x7f06012b
- int color RED_300_A080 0x7f06012c
- int color RED_300_A090 0x7f06012d
- int color RED_300_A100 0x7f06012e
- int color RED_400_A010 0x7f06012f
- int color RED_400_A020 0x7f060130
- int color RED_400_A030 0x7f060131
- int color RED_400_A040 0x7f060132
- int color RED_400_A050 0x7f060133
- int color RED_400_A060 0x7f060134
- int color RED_400_A070 0x7f060135
- int color RED_400_A080 0x7f060136
- int color RED_400_A090 0x7f060137
- int color RED_400_A100 0x7f060138
- int color RED_500_A010 0x7f060139
- int color RED_500_A020 0x7f06013a
- int color RED_500_A030 0x7f06013b
- int color RED_500_A040 0x7f06013c
- int color RED_500_A050 0x7f06013d
- int color RED_500_A060 0x7f06013e
- int color RED_500_A070 0x7f06013f
- int color RED_500_A080 0x7f060140
- int color RED_500_A090 0x7f060141
- int color RED_500_A100 0x7f060142
- int color RED_600_A010 0x7f060143
- int color RED_600_A020 0x7f060144
- int color RED_600_A030 0x7f060145
- int color RED_600_A040 0x7f060146
- int color RED_600_A050 0x7f060147
- int color RED_600_A060 0x7f060148
- int color RED_600_A070 0x7f060149
- int color RED_600_A080 0x7f06014a
- int color RED_600_A090 0x7f06014b
- int color RED_600_A100 0x7f06014c
- int color RED_700_A010 0x7f06014d
- int color RED_700_A020 0x7f06014e
- int color RED_700_A030 0x7f06014f
- int color RED_700_A040 0x7f060150
- int color RED_700_A050 0x7f060151
- int color RED_700_A060 0x7f060152
- int color RED_700_A070 0x7f060153
- int color RED_700_A080 0x7f060154
- int color RED_700_A090 0x7f060155
- int color RED_700_A100 0x7f060156
- int color RED_800_A010 0x7f060157
- int color RED_800_A020 0x7f060158
- int color RED_800_A030 0x7f060159
- int color RED_800_A040 0x7f06015a
- int color RED_800_A050 0x7f06015b
- int color RED_800_A060 0x7f06015c
- int color RED_800_A070 0x7f06015d
- int color RED_800_A080 0x7f06015e
- int color RED_800_A090 0x7f06015f
- int color RED_800_A100 0x7f060160
- int color RED_900_A010 0x7f060161
- int color RED_900_A020 0x7f060162
- int color RED_900_A030 0x7f060163
- int color RED_900_A040 0x7f060164
- int color RED_900_A050 0x7f060165
- int color RED_900_A060 0x7f060166
- int color RED_900_A070 0x7f060167
- int color RED_900_A080 0x7f060168
- int color RED_900_A090 0x7f060169
- int color RED_900_A100 0x7f06016a
- int color RED_A010 0x7f06016b
- int color RED_A020 0x7f06016c
- int color RED_A030 0x7f06016d
- int color RED_A040 0x7f06016e
- int color RED_A050 0x7f06016f
- int color RED_A060 0x7f060170
- int color RED_A070 0x7f060171
- int color RED_A080 0x7f060172
- int color RED_A090 0x7f060173
- int color RED_A100 0x7f060174
- int color ROSYBROWN 0x7f060175
- int color ROYALBLUE 0x7f060176
- int color SADDLEBROWN 0x7f060177
- int color SALMON 0x7f060178
- int color SANDYBROWN 0x7f060179
- int color SEAGREEN 0x7f06017a
- int color SEASHELL 0x7f06017b
- int color SIENNA 0x7f06017c
- int color SILVER 0x7f06017d
- int color SKYBLUE 0x7f06017e
- int color SLATEBLUE 0x7f06017f
- int color SLATEGRAY 0x7f060180
- int color SNOW 0x7f060181
- int color SPRINGGREEN 0x7f060182
- int color STEELBLUE 0x7f060183
- int color TAN 0x7f060184
- int color TEAL 0x7f060185
- int color TEAL_050_A010 0x7f060186
- int color TEAL_050_A020 0x7f060187
- int color TEAL_050_A030 0x7f060188
- int color TEAL_050_A040 0x7f060189
- int color TEAL_050_A050 0x7f06018a
- int color TEAL_050_A060 0x7f06018b
- int color TEAL_050_A070 0x7f06018c
- int color TEAL_050_A080 0x7f06018d
- int color TEAL_050_A090 0x7f06018e
- int color TEAL_050_A100 0x7f06018f
- int color TEAL_100_A010 0x7f060190
- int color TEAL_100_A020 0x7f060191
- int color TEAL_100_A030 0x7f060192
- int color TEAL_100_A040 0x7f060193
- int color TEAL_100_A050 0x7f060194
- int color TEAL_100_A060 0x7f060195
- int color TEAL_100_A070 0x7f060196
- int color TEAL_100_A080 0x7f060197
- int color TEAL_100_A090 0x7f060198
- int color TEAL_100_A100 0x7f060199
- int color TEAL_200_A010 0x7f06019a
- int color TEAL_200_A020 0x7f06019b
- int color TEAL_200_A030 0x7f06019c
- int color TEAL_200_A040 0x7f06019d
- int color TEAL_200_A050 0x7f06019e
- int color TEAL_200_A060 0x7f06019f
- int color TEAL_200_A070 0x7f0601a0
- int color TEAL_200_A080 0x7f0601a1
- int color TEAL_200_A090 0x7f0601a2
- int color TEAL_200_A100 0x7f0601a3
- int color TEAL_300_A010 0x7f0601a4
- int color TEAL_300_A020 0x7f0601a5
- int color TEAL_300_A030 0x7f0601a6
- int color TEAL_300_A040 0x7f0601a7
- int color TEAL_300_A050 0x7f0601a8
- int color TEAL_300_A060 0x7f0601a9
- int color TEAL_300_A070 0x7f0601aa
- int color TEAL_300_A080 0x7f0601ab
- int color TEAL_300_A090 0x7f0601ac
- int color TEAL_300_A100 0x7f0601ad
- int color TEAL_400_A010 0x7f0601ae
- int color TEAL_400_A020 0x7f0601af
- int color TEAL_400_A030 0x7f0601b0
- int color TEAL_400_A040 0x7f0601b1
- int color TEAL_400_A050 0x7f0601b2
- int color TEAL_400_A060 0x7f0601b3
- int color TEAL_400_A070 0x7f0601b4
- int color TEAL_400_A080 0x7f0601b5
- int color TEAL_400_A090 0x7f0601b6
- int color TEAL_400_A100 0x7f0601b7
- int color TEAL_500_A010 0x7f0601b8
- int color TEAL_500_A020 0x7f0601b9
- int color TEAL_500_A030 0x7f0601ba
- int color TEAL_500_A040 0x7f0601bb
- int color TEAL_500_A050 0x7f0601bc
- int color TEAL_500_A060 0x7f0601bd
- int color TEAL_500_A070 0x7f0601be
- int color TEAL_500_A080 0x7f0601bf
- int color TEAL_500_A090 0x7f0601c0
- int color TEAL_500_A100 0x7f0601c1
- int color TEAL_600_A010 0x7f0601c2
- int color TEAL_600_A020 0x7f0601c3
- int color TEAL_600_A030 0x7f0601c4
- int color TEAL_600_A040 0x7f0601c5
- int color TEAL_600_A050 0x7f0601c6
- int color TEAL_600_A060 0x7f0601c7
- int color TEAL_600_A070 0x7f0601c8
- int color TEAL_600_A080 0x7f0601c9
- int color TEAL_600_A090 0x7f0601ca
- int color TEAL_600_A100 0x7f0601cb
- int color TEAL_700_A010 0x7f0601cc
- int color TEAL_700_A020 0x7f0601cd
- int color TEAL_700_A030 0x7f0601ce
- int color TEAL_700_A040 0x7f0601cf
- int color TEAL_700_A050 0x7f0601d0
- int color TEAL_700_A060 0x7f0601d1
- int color TEAL_700_A070 0x7f0601d2
- int color TEAL_700_A080 0x7f0601d3
- int color TEAL_700_A090 0x7f0601d4
- int color TEAL_700_A100 0x7f0601d5
- int color TEAL_800_A010 0x7f0601d6
- int color TEAL_800_A020 0x7f0601d7
- int color TEAL_800_A030 0x7f0601d8
- int color TEAL_800_A040 0x7f0601d9
- int color TEAL_800_A050 0x7f0601da
- int color TEAL_800_A060 0x7f0601db
- int color TEAL_800_A070 0x7f0601dc
- int color TEAL_800_A080 0x7f0601dd
- int color TEAL_800_A090 0x7f0601de
- int color TEAL_800_A100 0x7f0601df
- int color TEAL_900_A010 0x7f0601e0
- int color TEAL_900_A020 0x7f0601e1
- int color TEAL_900_A030 0x7f0601e2
- int color TEAL_900_A040 0x7f0601e3
- int color TEAL_900_A050 0x7f0601e4
- int color TEAL_900_A060 0x7f0601e5
- int color TEAL_900_A070 0x7f0601e6
- int color TEAL_900_A080 0x7f0601e7
- int color TEAL_900_A090 0x7f0601e8
- int color TEAL_900_A100 0x7f0601e9
- int color THISTLE 0x7f0601ea
- int color TOMATO 0x7f0601eb
- int color TRANSPARENT 0x7f0601ec
- int color TURQUOISE 0x7f0601ed
- int color VIOLET 0x7f0601ee
- int color WHEAT 0x7f0601ef
- int color WHITE 0x7f0601f0
- int color WHITESMOKE 0x7f0601f1
- int color WHITE_A010 0x7f0601f2
- int color WHITE_A020 0x7f0601f3
- int color WHITE_A030 0x7f0601f4
- int color WHITE_A040 0x7f0601f5
- int color WHITE_A050 0x7f0601f6
- int color WHITE_A060 0x7f0601f7
- int color WHITE_A070 0x7f0601f8
- int color WHITE_A080 0x7f0601f9
- int color WHITE_A090 0x7f0601fa
- int color WHITE_A100 0x7f0601fb
- int color YELLOW 0x7f0601fc
- int color YELLOWGREEN 0x7f0601fd
- int color YELLOW_A010 0x7f0601fe
- int color YELLOW_A020 0x7f0601ff
- int color YELLOW_A030 0x7f060200
- int color YELLOW_A040 0x7f060201
- int color YELLOW_A050 0x7f060202
- int color YELLOW_A060 0x7f060203
- int color YELLOW_A070 0x7f060204
- int color YELLOW_A080 0x7f060205
- int color YELLOW_A090 0x7f060206
- int color YELLOW_A100 0x7f060207
- int color abc_background_cache_hint_selector_material_dark 0x7f060208
- int color abc_background_cache_hint_selector_material_light 0x7f060209
- int color abc_btn_colored_borderless_text_material 0x7f06020a
- int color abc_btn_colored_text_material 0x7f06020b
- int color abc_color_highlight_material 0x7f06020c
- int color abc_hint_foreground_material_dark 0x7f06020d
- int color abc_hint_foreground_material_light 0x7f06020e
- int color abc_input_method_navigation_guard 0x7f06020f
- int color abc_primary_text_disable_only_material_dark 0x7f060210
- int color abc_primary_text_disable_only_material_light 0x7f060211
- int color abc_primary_text_material_dark 0x7f060212
- int color abc_primary_text_material_light 0x7f060213
- int color abc_search_url_text 0x7f060214
- int color abc_search_url_text_normal 0x7f060215
- int color abc_search_url_text_pressed 0x7f060216
- int color abc_search_url_text_selected 0x7f060217
- int color abc_secondary_text_material_dark 0x7f060218
- int color abc_secondary_text_material_light 0x7f060219
- int color abc_tint_btn_checkable 0x7f06021a
- int color abc_tint_default 0x7f06021b
- int color abc_tint_edittext 0x7f06021c
- int color abc_tint_seek_thumb 0x7f06021d
- int color abc_tint_spinner 0x7f06021e
- int color abc_tint_switch_track 0x7f06021f
- int color accent_material_dark 0x7f060220
- int color accent_material_light 0x7f060221
- int color background_floating_material_dark 0x7f060222
- int color background_floating_material_light 0x7f060223
- int color background_material_dark 0x7f060224
- int color background_material_light 0x7f060225
- int color bright_foreground_disabled_material_dark 0x7f060226
- int color bright_foreground_disabled_material_light 0x7f060227
- int color bright_foreground_inverse_material_dark 0x7f060228
- int color bright_foreground_inverse_material_light 0x7f060229
- int color bright_foreground_material_dark 0x7f06022a
- int color bright_foreground_material_light 0x7f06022b
- int color button_material_dark 0x7f06022c
- int color button_material_light 0x7f06022d
- int color contents_text 0x7f06022e
- int color dim_foreground_disabled_material_dark 0x7f06022f
- int color dim_foreground_disabled_material_light 0x7f060230
- int color dim_foreground_material_dark 0x7f060231
- int color dim_foreground_material_light 0x7f060232
- int color encode_view 0x7f060233
- int color error_color_material 0x7f060234
- int color foreground_material_dark 0x7f060235
- int color foreground_material_light 0x7f060236
- int color highlighted_text_material_dark 0x7f060237
- int color highlighted_text_material_light 0x7f060238
- int color material_blue_grey_800 0x7f060239
- int color material_blue_grey_900 0x7f06023a
- int color material_blue_grey_950 0x7f06023b
- int color material_deep_teal_200 0x7f06023c
- int color material_deep_teal_500 0x7f06023d
- int color material_grey_100 0x7f06023e
- int color material_grey_300 0x7f06023f
- int color material_grey_50 0x7f060240
- int color material_grey_600 0x7f060241
- int color material_grey_800 0x7f060242
- int color material_grey_850 0x7f060243
- int color material_grey_900 0x7f060244
- int color notification_action_color_filter 0x7f060245
- int color notification_icon_bg_color 0x7f060246
- int color notification_material_background_media_default_color 0x7f060247
- int color possible_result_points 0x7f060248
- int color preference_fallback_accent_color 0x7f060249
- int color primary_dark_material_dark 0x7f06024a
- int color primary_dark_material_light 0x7f06024b
- int color primary_material_dark 0x7f06024c
- int color primary_material_light 0x7f06024d
- int color primary_text_default_material_dark 0x7f06024e
- int color primary_text_default_material_light 0x7f06024f
- int color primary_text_disabled_material_dark 0x7f060250
- int color primary_text_disabled_material_light 0x7f060251
- int color result_minor_text 0x7f060252
- int color result_points 0x7f060253
- int color result_text 0x7f060254
- int color result_view 0x7f060255
- int color ripple_material_dark 0x7f060256
- int color ripple_material_light 0x7f060257
- int color secondary_text_default_material_dark 0x7f060258
- int color secondary_text_default_material_light 0x7f060259
- int color secondary_text_disabled_material_dark 0x7f06025a
- int color secondary_text_disabled_material_light 0x7f06025b
- int color status_text 0x7f06025c
- int color switch_thumb_disabled_material_dark 0x7f06025d
- int color switch_thumb_disabled_material_light 0x7f06025e
- int color switch_thumb_material_dark 0x7f06025f
- int color switch_thumb_material_light 0x7f060260
- int color switch_thumb_normal_material_dark 0x7f060261
- int color switch_thumb_normal_material_light 0x7f060262
- int color tooltip_background_dark 0x7f060263
- int color tooltip_background_light 0x7f060264
- int color viewfinder_laser 0x7f060265
- int color viewfinder_mask 0x7f060266
- int dimen abc_action_bar_content_inset_material 0x7f070001
- int dimen abc_action_bar_content_inset_with_nav 0x7f070002
- int dimen abc_action_bar_default_height_material 0x7f070003
- int dimen abc_action_bar_default_padding_end_material 0x7f070004
- int dimen abc_action_bar_default_padding_start_material 0x7f070005
- int dimen abc_action_bar_elevation_material 0x7f070006
- int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007
- int dimen abc_action_bar_overflow_padding_end_material 0x7f070008
- int dimen abc_action_bar_overflow_padding_start_material 0x7f070009
- int dimen abc_action_bar_progress_bar_size 0x7f07000a
- int dimen abc_action_bar_stacked_max_height 0x7f07000b
- int dimen abc_action_bar_stacked_tab_max_width 0x7f07000c
- int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000d
- int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000e
- int dimen abc_action_button_min_height_material 0x7f07000f
- int dimen abc_action_button_min_width_material 0x7f070010
- int dimen abc_action_button_min_width_overflow_material 0x7f070011
- int dimen abc_alert_dialog_button_bar_height 0x7f070012
- int dimen abc_alert_dialog_button_dimen 0x7f070013
- int dimen abc_button_inset_horizontal_material 0x7f070014
- int dimen abc_button_inset_vertical_material 0x7f070015
- int dimen abc_button_padding_horizontal_material 0x7f070016
- int dimen abc_button_padding_vertical_material 0x7f070017
- int dimen abc_cascading_menus_min_smallest_width 0x7f070018
- int dimen abc_config_prefDialogWidth 0x7f070019
- int dimen abc_control_corner_material 0x7f07001a
- int dimen abc_control_inset_material 0x7f07001b
- int dimen abc_control_padding_material 0x7f07001c
- int dimen abc_dialog_fixed_height_major 0x7f07001d
- int dimen abc_dialog_fixed_height_minor 0x7f07001e
- int dimen abc_dialog_fixed_width_major 0x7f07001f
- int dimen abc_dialog_fixed_width_minor 0x7f070020
- int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070021
- int dimen abc_dialog_list_padding_top_no_title 0x7f070022
- int dimen abc_dialog_min_width_major 0x7f070023
- int dimen abc_dialog_min_width_minor 0x7f070024
- int dimen abc_dialog_padding_material 0x7f070025
- int dimen abc_dialog_padding_top_material 0x7f070026
- int dimen abc_dialog_title_divider_material 0x7f070027
- int dimen abc_disabled_alpha_material_dark 0x7f070028
- int dimen abc_disabled_alpha_material_light 0x7f070029
- int dimen abc_dropdownitem_icon_width 0x7f07002a
- int dimen abc_dropdownitem_text_padding_left 0x7f07002b
- int dimen abc_dropdownitem_text_padding_right 0x7f07002c
- int dimen abc_edit_text_inset_bottom_material 0x7f07002d
- int dimen abc_edit_text_inset_horizontal_material 0x7f07002e
- int dimen abc_edit_text_inset_top_material 0x7f07002f
- int dimen abc_floating_window_z 0x7f070030
- int dimen abc_list_item_padding_horizontal_material 0x7f070031
- int dimen abc_panel_menu_list_width 0x7f070032
- int dimen abc_progress_bar_height_material 0x7f070033
- int dimen abc_search_view_preferred_height 0x7f070034
- int dimen abc_search_view_preferred_width 0x7f070035
- int dimen abc_seekbar_track_background_height_material 0x7f070036
- int dimen abc_seekbar_track_progress_height_material 0x7f070037
- int dimen abc_select_dialog_padding_start_material 0x7f070038
- int dimen abc_switch_padding 0x7f070039
- int dimen abc_text_size_body_1_material 0x7f07003a
- int dimen abc_text_size_body_2_material 0x7f07003b
- int dimen abc_text_size_button_material 0x7f07003c
- int dimen abc_text_size_caption_material 0x7f07003d
- int dimen abc_text_size_display_1_material 0x7f07003e
- int dimen abc_text_size_display_2_material 0x7f07003f
- int dimen abc_text_size_display_3_material 0x7f070040
- int dimen abc_text_size_display_4_material 0x7f070041
- int dimen abc_text_size_headline_material 0x7f070042
- int dimen abc_text_size_large_material 0x7f070043
- int dimen abc_text_size_medium_material 0x7f070044
- int dimen abc_text_size_menu_header_material 0x7f070045
- int dimen abc_text_size_menu_material 0x7f070046
- int dimen abc_text_size_small_material 0x7f070047
- int dimen abc_text_size_subhead_material 0x7f070048
- int dimen abc_text_size_subtitle_material_toolbar 0x7f070049
- int dimen abc_text_size_title_material 0x7f07004a
- int dimen abc_text_size_title_material_toolbar 0x7f07004b
- int dimen button_size 0x7f07004c
- int dimen color_picker_margin_horizontal 0x7f07004d
- int dimen color_picker_margin_vertical 0x7f07004e
- int dimen color_swatch_large 0x7f07004f
- int dimen color_swatch_margins_large 0x7f070050
- int dimen color_swatch_margins_small 0x7f070051
- int dimen color_swatch_small 0x7f070052
- int dimen compat_button_inset_horizontal_material 0x7f070053
- int dimen compat_button_inset_vertical_material 0x7f070054
- int dimen compat_button_padding_horizontal_material 0x7f070055
- int dimen compat_button_padding_vertical_material 0x7f070056
- int dimen compat_control_corner_material 0x7f070057
- int dimen disabled_alpha_material_dark 0x7f070058
- int dimen disabled_alpha_material_light 0x7f070059
- int dimen fastscroll_default_thickness 0x7f07005a
- int dimen fastscroll_margin 0x7f07005b
- int dimen fastscroll_minimum_range 0x7f07005c
- int dimen highlight_alpha_material_colored 0x7f07005d
- int dimen highlight_alpha_material_dark 0x7f07005e
- int dimen highlight_alpha_material_light 0x7f07005f
- int dimen hint_alpha_material_dark 0x7f070060
- int dimen hint_alpha_material_light 0x7f070061
- int dimen hint_pressed_alpha_material_dark 0x7f070062
- int dimen hint_pressed_alpha_material_light 0x7f070063
- int dimen horizontal_margin 0x7f070064
- int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070065
- int dimen item_touch_helper_swipe_escape_max_velocity 0x7f070066
- int dimen item_touch_helper_swipe_escape_velocity 0x7f070067
- int dimen list_font_size 0x7f070068
- int dimen list_height_min 0x7f070069
- int dimen list_item_bluetooth_info_padding 0x7f07006a
- int dimen notification_action_icon_size 0x7f07006b
- int dimen notification_action_text_size 0x7f07006c
- int dimen notification_big_circle_margin 0x7f07006d
- int dimen notification_content_margin_start 0x7f07006e
- int dimen notification_large_icon_height 0x7f07006f
- int dimen notification_large_icon_width 0x7f070070
- int dimen notification_main_column_padding_top 0x7f070071
- int dimen notification_media_narrow_margin 0x7f070072
- int dimen notification_right_icon_size 0x7f070073
- int dimen notification_right_side_padding_top 0x7f070074
- int dimen notification_small_icon_background_padding 0x7f070075
- int dimen notification_small_icon_size_as_large 0x7f070076
- int dimen notification_subtext_size 0x7f070077
- int dimen notification_top_pad 0x7f070078
- int dimen notification_top_pad_large_text 0x7f070079
- int dimen preference_icon_minWidth 0x7f07007a
- int dimen preference_seekbar_padding_end 0x7f07007b
- int dimen preference_seekbar_padding_start 0x7f07007c
- int dimen preference_seekbar_value_width 0x7f07007d
- int dimen scale_type_margin_top 0x7f07007e
- int dimen scale_type_padding 0x7f07007f
- int dimen text_sz_scale_type 0x7f070080
- int dimen tooltip_corner_radius 0x7f070081
- int dimen tooltip_horizontal_padding 0x7f070082
- int dimen tooltip_margin 0x7f070083
- int dimen tooltip_precise_anchor_extra_offset 0x7f070084
- int dimen tooltip_precise_anchor_threshold 0x7f070085
- int dimen tooltip_vertical_padding 0x7f070086
- int dimen tooltip_y_offset_non_touch 0x7f070087
- int dimen tooltip_y_offset_touch 0x7f070088
- int dimen vertical_margin 0x7f070089
- int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001
- int drawable abc_action_bar_item_background_material 0x7f080002
- int drawable abc_btn_borderless_material 0x7f080003
- int drawable abc_btn_check_material 0x7f080004
- int drawable abc_btn_check_to_on_mtrl_000 0x7f080005
- int drawable abc_btn_check_to_on_mtrl_015 0x7f080006
- int drawable abc_btn_colored_material 0x7f080007
- int drawable abc_btn_default_mtrl_shape 0x7f080008
- int drawable abc_btn_radio_material 0x7f080009
- int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000a
- int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000b
- int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000c
- int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000d
- int drawable abc_cab_background_internal_bg 0x7f08000e
- int drawable abc_cab_background_top_material 0x7f08000f
- int drawable abc_cab_background_top_mtrl_alpha 0x7f080010
- int drawable abc_control_background_material 0x7f080011
- int drawable abc_dialog_material_background 0x7f080012
- int drawable abc_edit_text_material 0x7f080013
- int drawable abc_ic_ab_back_material 0x7f080014
- int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080015
- int drawable abc_ic_clear_material 0x7f080016
- int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080017
- int drawable abc_ic_go_search_api_material 0x7f080018
- int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f080019
- int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001a
- int drawable abc_ic_menu_overflow_material 0x7f08001b
- int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f08001c
- int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f08001d
- int drawable abc_ic_menu_share_mtrl_alpha 0x7f08001e
- int drawable abc_ic_search_api_material 0x7f08001f
- int drawable abc_ic_star_black_16dp 0x7f080020
- int drawable abc_ic_star_black_36dp 0x7f080021
- int drawable abc_ic_star_black_48dp 0x7f080022
- int drawable abc_ic_star_half_black_16dp 0x7f080023
- int drawable abc_ic_star_half_black_36dp 0x7f080024
- int drawable abc_ic_star_half_black_48dp 0x7f080025
- int drawable abc_ic_voice_search_api_material 0x7f080026
- int drawable abc_item_background_holo_dark 0x7f080027
- int drawable abc_item_background_holo_light 0x7f080028
- int drawable abc_list_divider_mtrl_alpha 0x7f080029
- int drawable abc_list_focused_holo 0x7f08002a
- int drawable abc_list_longpressed_holo 0x7f08002b
- int drawable abc_list_pressed_holo_dark 0x7f08002c
- int drawable abc_list_pressed_holo_light 0x7f08002d
- int drawable abc_list_selector_background_transition_holo_dark 0x7f08002e
- int drawable abc_list_selector_background_transition_holo_light 0x7f08002f
- int drawable abc_list_selector_disabled_holo_dark 0x7f080030
- int drawable abc_list_selector_disabled_holo_light 0x7f080031
- int drawable abc_list_selector_holo_dark 0x7f080032
- int drawable abc_list_selector_holo_light 0x7f080033
- int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080034
- int drawable abc_popup_background_mtrl_mult 0x7f080035
- int drawable abc_ratingbar_indicator_material 0x7f080036
- int drawable abc_ratingbar_material 0x7f080037
- int drawable abc_ratingbar_small_material 0x7f080038
- int drawable abc_scrubber_control_off_mtrl_alpha 0x7f080039
- int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003a
- int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f08003b
- int drawable abc_scrubber_primary_mtrl_alpha 0x7f08003c
- int drawable abc_scrubber_track_mtrl_alpha 0x7f08003d
- int drawable abc_seekbar_thumb_material 0x7f08003e
- int drawable abc_seekbar_tick_mark_material 0x7f08003f
- int drawable abc_seekbar_track_material 0x7f080040
- int drawable abc_spinner_mtrl_am_alpha 0x7f080041
- int drawable abc_spinner_textfield_background_material 0x7f080042
- int drawable abc_switch_thumb_material 0x7f080043
- int drawable abc_switch_track_mtrl_alpha 0x7f080044
- int drawable abc_tab_indicator_material 0x7f080045
- int drawable abc_tab_indicator_mtrl_alpha 0x7f080046
- int drawable abc_text_cursor_material 0x7f080047
- int drawable abc_text_select_handle_left_mtrl_dark 0x7f080048
- int drawable abc_text_select_handle_left_mtrl_light 0x7f080049
- int drawable abc_text_select_handle_middle_mtrl_dark 0x7f08004a
- int drawable abc_text_select_handle_middle_mtrl_light 0x7f08004b
- int drawable abc_text_select_handle_right_mtrl_dark 0x7f08004c
- int drawable abc_text_select_handle_right_mtrl_light 0x7f08004d
- int drawable abc_textfield_activated_mtrl_alpha 0x7f08004e
- int drawable abc_textfield_default_mtrl_alpha 0x7f08004f
- int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080050
- int drawable abc_textfield_search_default_mtrl_alpha 0x7f080051
- int drawable abc_textfield_search_material 0x7f080052
- int drawable abc_vector_test 0x7f080053
- int drawable border 0x7f080054
- int drawable border_black 0x7f080055
- int drawable border_gray 0x7f080056
- int drawable btn_new_shutter 0x7f080057
- int drawable btn_new_shutter_video 0x7f080058
- int drawable btn_repeat_shutter_recording 0x7f080059
- int drawable btn_shutter_video_recording 0x7f08005a
- int drawable frame 0x7f08005b
- int drawable frame_cross 0x7f08005c
- int drawable ic_arrow_down_24dp 0x7f08005d
- int drawable ic_notification 0x7f08005e
- int drawable mask_circle 0x7f08005f
- int drawable notification_action_background 0x7f080060
- int drawable notification_bg 0x7f080061
- int drawable notification_bg_low 0x7f080062
- int drawable notification_bg_low_normal 0x7f080063
- int drawable notification_bg_low_pressed 0x7f080064
- int drawable notification_bg_normal 0x7f080065
- int drawable notification_bg_normal_pressed 0x7f080066
- int drawable notification_icon_background 0x7f080067
- int drawable notification_template_icon_bg 0x7f080068
- int drawable notification_template_icon_low_bg 0x7f080069
- int drawable notification_tile_bg 0x7f08006a
- int drawable notify_panel_notification_icon_bg 0x7f08006b
- int drawable preference_list_divider_material 0x7f08006c
- int drawable quater_clear_rect 0x7f08006d
- int drawable recordingtime 0x7f08006e
- int drawable star 0x7f08006f
- int drawable toggle 0x7f080070
- int drawable toggle_button_base 0x7f080071
- int drawable toggle_slide 0x7f080072
- int drawable tooltip_frame_dark 0x7f080073
- int drawable tooltip_frame_light 0x7f080074
- int drawable transparent_rect 0x7f080075
- int id LinearLayout1 0x7f0b0001
- int id action0 0x7f0b0002
- int id action_bar 0x7f0b0003
- int id action_bar_activity_content 0x7f0b0004
- int id action_bar_container 0x7f0b0005
- int id action_bar_root 0x7f0b0006
- int id action_bar_spinner 0x7f0b0007
- int id action_bar_subtitle 0x7f0b0008
- int id action_bar_title 0x7f0b0009
- int id action_container 0x7f0b000a
- int id action_context_bar 0x7f0b000b
- int id action_divider 0x7f0b000c
- int id action_image 0x7f0b000d
- int id action_menu_divider 0x7f0b000e
- int id action_menu_presenter 0x7f0b000f
- int id action_mode_bar 0x7f0b0010
- int id action_mode_bar_stub 0x7f0b0011
- int id action_mode_close_button 0x7f0b0012
- int id action_text 0x7f0b0013
- int id actions 0x7f0b0014
- int id activity_chooser_view_content 0x7f0b0015
- int id add 0x7f0b0016
- int id address 0x7f0b0017
- int id alertTitle 0x7f0b0018
- int id anim_duration 0x7f0b0019
- int id anim_listener 0x7f0b001a
- int id anim_type 0x7f0b001b
- int id async 0x7f0b001c
- int id blocking 0x7f0b001d
- int id bottom 0x7f0b001e
- int id buttonPanel 0x7f0b001f
- int id cancel_action 0x7f0b0020
- int id checkbox 0x7f0b0021
- int id chronometer 0x7f0b0022
- int id color1_button 0x7f0b0023
- int id color2_button 0x7f0b0024
- int id color3_button 0x7f0b0025
- int id color4_button 0x7f0b0026
- int id color5_button 0x7f0b0027
- int id color6_button 0x7f0b0028
- int id color7_button 0x7f0b0029
- int id color8_button 0x7f0b002a
- int id color_picker 0x7f0b002b
- int id color_picker_frame 0x7f0b002c
- int id color_select_button 0x7f0b002d
- int id contentPanel 0x7f0b002e
- int id crop_center 0x7f0b002f
- int id custom 0x7f0b0030
- int id customPanel 0x7f0b0031
- int id decor_content_parent 0x7f0b0032
- int id decrement 0x7f0b0033
- int id default_activity_button 0x7f0b0034
- int id dummy_radiobutton 0x7f0b0035
- int id edit_query 0x7f0b0036
- int id end 0x7f0b0037
- int id end_padder 0x7f0b0038
- int id expand_activities_button 0x7f0b0039
- int id expanded_menu 0x7f0b003a
- int id forever 0x7f0b003b
- int id frame_circle2_button 0x7f0b003c
- int id frame_circle_button 0x7f0b003d
- int id frame_cross_button 0x7f0b003e
- int id frame_cross_circle2_button 0x7f0b003f
- int id frame_cross_circle_button 0x7f0b0040
- int id frame_cross_quarter_button 0x7f0b0041
- int id frame_frame_button 0x7f0b0042
- int id frame_type_circle 0x7f0b0043
- int id frame_type_circle2 0x7f0b0044
- int id frame_type_cross_circle 0x7f0b0045
- int id frame_type_cross_circle2 0x7f0b0046
- int id frame_type_cross_full 0x7f0b0047
- int id frame_type_cross_quarter 0x7f0b0048
- int id frame_type_frame 0x7f0b0049
- int id frame_type_none 0x7f0b004a
- int id has_divider 0x7f0b004b
- int id home 0x7f0b004c
- int id horizontal 0x7f0b004d
- int id icon 0x7f0b004e
- int id icon_frame 0x7f0b004f
- int id icon_group 0x7f0b0050
- int id image 0x7f0b0051
- int id increment 0x7f0b0052
- int id info 0x7f0b0053
- int id input 0x7f0b0054
- int id italic 0x7f0b0055
- int id item_touch_helper_previous_elevation 0x7f0b0056
- int id keep_aspect 0x7f0b0057
- int id left 0x7f0b0058
- int id line1 0x7f0b0059
- int id line3 0x7f0b005a
- int id line_width_seekbar 0x7f0b005b
- int id line_width_textview 0x7f0b005c
- int id list 0x7f0b005d
- int id listMode 0x7f0b005e
- int id list_item 0x7f0b005f
- int id media_actions 0x7f0b0060
- int id mediastorephotoadapter 0x7f0b0061
- int id message 0x7f0b0062
- int id multiply 0x7f0b0063
- int id name 0x7f0b0064
- int id name_text 0x7f0b0065
- int id none 0x7f0b0066
- int id normal 0x7f0b0067
- int id notification_background 0x7f0b0068
- int id notification_main_column 0x7f0b0069
- int id notification_main_column_container 0x7f0b006a
- int id parentPanel 0x7f0b006b
- int id position 0x7f0b006c
- int id progress_circular 0x7f0b006d
- int id progress_horizontal 0x7f0b006e
- int id radio 0x7f0b006f
- int id right 0x7f0b0070
- int id right_icon 0x7f0b0071
- int id right_side 0x7f0b0072
- int id scale_inch 0x7f0b0073
- int id scale_mm 0x7f0b0074
- int id scale_none 0x7f0b0075
- int id scale_type_inch_radiobutton 0x7f0b0076
- int id scale_type_mm_radiobutton 0x7f0b0077
- int id scale_type_non_radiobutton 0x7f0b0078
- int id scale_type_radiogroup 0x7f0b0079
- int id screen 0x7f0b007a
- int id scrollIndicatorDown 0x7f0b007b
- int id scrollIndicatorUp 0x7f0b007c
- int id scrollView 0x7f0b007d
- int id search_badge 0x7f0b007e
- int id search_bar 0x7f0b007f
- int id search_button 0x7f0b0080
- int id search_close_btn 0x7f0b0081
- int id search_edit_frame 0x7f0b0082
- int id search_go_btn 0x7f0b0083
- int id search_mag_icon 0x7f0b0084
- int id search_plate 0x7f0b0085
- int id search_src_text 0x7f0b0086
- int id search_voice_btn 0x7f0b0087
- int id seekbar 0x7f0b0088
- int id seekbar_value 0x7f0b0089
- int id seekbar_value_label 0x7f0b008a
- int id select1 0x7f0b008b
- int id select2 0x7f0b008c
- int id select_dialog_listview 0x7f0b008d
- int id shortcut 0x7f0b008e
- int id single1 0x7f0b008f
- int id single2 0x7f0b0090
- int id spacer 0x7f0b0091
- int id spinner 0x7f0b0092
- int id spinner1 0x7f0b0093
- int id split 0x7f0b0094
- int id split_action_bar 0x7f0b0095
- int id src_atop 0x7f0b0096
- int id src_in 0x7f0b0097
- int id src_over 0x7f0b0098
- int id start 0x7f0b0099
- int id status_bar_latest_event_content 0x7f0b009a
- int id stretch_to_fit 0x7f0b009b
- int id submenuarrow 0x7f0b009c
- int id submit_area 0x7f0b009d
- int id switchWidget 0x7f0b009e
- int id tabMode 0x7f0b009f
- int id tag_transition_group 0x7f0b00a0
- int id text 0x7f0b00a1
- int id text2 0x7f0b00a2
- int id textSpacerNoButtons 0x7f0b00a3
- int id textSpacerNoTitle 0x7f0b00a4
- int id textView1 0x7f0b00a5
- int id thumbnail 0x7f0b00a6
- int id time 0x7f0b00a7
- int id title 0x7f0b00a8
- int id titleDividerNoCustom 0x7f0b00a9
- int id title_template 0x7f0b00aa
- int id top 0x7f0b00ab
- int id topPanel 0x7f0b00ac
- int id uniform 0x7f0b00ad
- int id up 0x7f0b00ae
- int id vertical 0x7f0b00af
- int id wrap_content 0x7f0b00b0
- int integer abc_config_activityDefaultDur 0x7f0c0001
- int integer abc_config_activityShortDur 0x7f0c0002
- int integer cancel_button_image_alpha 0x7f0c0003
- int integer card_flip_time_full 0x7f0c0004
- int integer card_flip_time_half 0x7f0c0005
- int integer config_tooltipAnimTime 0x7f0c0006
- int integer status_bar_notification_info_maxnum 0x7f0c0007
- int layout abc_action_bar_title_item 0x7f0e0001
- int layout abc_action_bar_up_container 0x7f0e0002
- int layout abc_action_menu_item_layout 0x7f0e0003
- int layout abc_action_menu_layout 0x7f0e0004
- int layout abc_action_mode_bar 0x7f0e0005
- int layout abc_action_mode_close_item_material 0x7f0e0006
- int layout abc_activity_chooser_view 0x7f0e0007
- int layout abc_activity_chooser_view_list_item 0x7f0e0008
- int layout abc_alert_dialog_button_bar_material 0x7f0e0009
- int layout abc_alert_dialog_material 0x7f0e000a
- int layout abc_alert_dialog_title_material 0x7f0e000b
- int layout abc_dialog_title_material 0x7f0e000c
- int layout abc_expanded_menu_layout 0x7f0e000d
- int layout abc_list_menu_item_checkbox 0x7f0e000e
- int layout abc_list_menu_item_icon 0x7f0e000f
- int layout abc_list_menu_item_layout 0x7f0e0010
- int layout abc_list_menu_item_radio 0x7f0e0011
- int layout abc_popup_menu_header_item_layout 0x7f0e0012
- int layout abc_popup_menu_item_layout 0x7f0e0013
- int layout abc_screen_content_include 0x7f0e0014
- int layout abc_screen_simple 0x7f0e0015
- int layout abc_screen_simple_overlay_action_mode 0x7f0e0016
- int layout abc_screen_toolbar 0x7f0e0017
- int layout abc_search_dropdown_item_icons_2line 0x7f0e0018
- int layout abc_search_view 0x7f0e0019
- int layout abc_select_dialog_material 0x7f0e001a
- int layout abc_tooltip 0x7f0e001b
- int layout color_picker 0x7f0e001c
- int layout color_picker_dialog 0x7f0e001d
- int layout dialog_camera 0x7f0e001e
- int layout expand_button 0x7f0e001f
- int layout item_picker 0x7f0e0020
- int layout list_item_bluetooth_device_info 0x7f0e0021
- int layout listitem_device 0x7f0e0022
- int layout notification_action 0x7f0e0023
- int layout notification_action_tombstone 0x7f0e0024
- int layout notification_media_action 0x7f0e0025
- int layout notification_media_cancel_action 0x7f0e0026
- int layout notification_template_big_media 0x7f0e0027
- int layout notification_template_big_media_custom 0x7f0e0028
- int layout notification_template_big_media_narrow 0x7f0e0029
- int layout notification_template_big_media_narrow_custom 0x7f0e002a
- int layout notification_template_custom_big 0x7f0e002b
- int layout notification_template_icon_group 0x7f0e002c
- int layout notification_template_lines_media 0x7f0e002d
- int layout notification_template_media 0x7f0e002e
- int layout notification_template_media_custom 0x7f0e002f
- int layout notification_template_part_chronometer 0x7f0e0030
- int layout notification_template_part_time 0x7f0e0031
- int layout preference 0x7f0e0032
- int layout preference_category 0x7f0e0033
- int layout preference_category_material 0x7f0e0034
- int layout preference_dialog_edittext 0x7f0e0035
- int layout preference_dropdown 0x7f0e0036
- int layout preference_dropdown_material 0x7f0e0037
- int layout preference_information 0x7f0e0038
- int layout preference_information_material 0x7f0e0039
- int layout preference_list_fragment 0x7f0e003a
- int layout preference_material 0x7f0e003b
- int layout preference_recyclerview 0x7f0e003c
- int layout preference_widget_checkbox 0x7f0e003d
- int layout preference_widget_seekbar 0x7f0e003e
- int layout preference_widget_seekbar_material 0x7f0e003f
- int layout preference_widget_switch 0x7f0e0040
- int layout preference_widget_switch_compat 0x7f0e0041
- int layout seekbar_preference 0x7f0e0042
- int layout select_dialog_item_material 0x7f0e0043
- int layout select_dialog_multichoice_material 0x7f0e0044
- int layout select_dialog_singlechoice_material 0x7f0e0045
- int layout support_simple_spinner_dropdown_item 0x7f0e0046
- int layout view_frame_selector 0x7f0e0047
- int mipmap btn_repeat_shutter_default 0x7f100001
- int mipmap btn_repeat_shutter_pressed 0x7f100002
- int mipmap btn_repeat_shutter_recording_holo 0x7f100003
- int mipmap btn_repeat_shutter_recording_pressed_holo 0x7f100004
- int mipmap btn_shutter_default 0x7f100005
- int mipmap btn_shutter_pressed 0x7f100006
- int mipmap btn_shutter_video_default 0x7f100007
- int mipmap btn_shutter_video_pressed 0x7f100008
- int mipmap btn_video_shutter_recording_holo 0x7f100009
- int mipmap btn_video_shutter_recording_pressed_holo 0x7f10000a
- int mipmap ic_color_circle 0x7f10000b
- int mipmap ic_decrement 0x7f10000c
- int mipmap ic_drawer 0x7f10000d
- int mipmap ic_frame_circle 0x7f10000e
- int mipmap ic_frame_circle_2 0x7f10000f
- int mipmap ic_frame_cross 0x7f100010
- int mipmap ic_frame_cross_circle 0x7f100011
- int mipmap ic_frame_cross_circle2 0x7f100012
- int mipmap ic_frame_cross_quarter 0x7f100013
- int mipmap ic_frame_frame 0x7f100014
- int mipmap ic_increment 0x7f100015
- int mipmap ic_transparent 0x7f100016
- int string abc_action_bar_home_description 0x7f140001
- int string abc_action_bar_up_description 0x7f140002
- int string abc_action_menu_overflow_description 0x7f140003
- int string abc_action_mode_done 0x7f140004
- int string abc_activity_chooser_view_see_all 0x7f140005
- int string abc_activitychooserview_choose_application 0x7f140006
- int string abc_capital_off 0x7f140007
- int string abc_capital_on 0x7f140008
- int string abc_font_family_body_1_material 0x7f140009
- int string abc_font_family_body_2_material 0x7f14000a
- int string abc_font_family_button_material 0x7f14000b
- int string abc_font_family_caption_material 0x7f14000c
- int string abc_font_family_display_1_material 0x7f14000d
- int string abc_font_family_display_2_material 0x7f14000e
- int string abc_font_family_display_3_material 0x7f14000f
- int string abc_font_family_display_4_material 0x7f140010
- int string abc_font_family_headline_material 0x7f140011
- int string abc_font_family_menu_material 0x7f140012
- int string abc_font_family_subhead_material 0x7f140013
- int string abc_font_family_title_material 0x7f140014
- int string abc_search_hint 0x7f140015
- int string abc_searchview_description_clear 0x7f140016
- int string abc_searchview_description_query 0x7f140017
- int string abc_searchview_description_search 0x7f140018
- int string abc_searchview_description_submit 0x7f140019
- int string abc_searchview_description_voice 0x7f14001a
- int string abc_shareactionprovider_share_with 0x7f14001b
- int string abc_shareactionprovider_share_with_application 0x7f14001c
- int string abc_toolbar_collapse_description 0x7f14001d
- int string camera 0x7f14001e
- int string color_picker_cancel 0x7f14001f
- int string color_picker_default_title 0x7f140020
- int string color_picker_select 0x7f140021
- int string color_swatch_description 0x7f140022
- int string color_swatch_description_selected 0x7f140023
- int string expand_button_title 0x7f140024
- int string no_device 0x7f140025
- int string permission_audio 0x7f140026
- int string permission_audio_recording_reason 0x7f140027
- int string permission_audio_recording_request 0x7f140028
- int string permission_audio_streaming_reason 0x7f140029
- int string permission_audio_streaming_request 0x7f14002a
- int string permission_camera 0x7f14002b
- int string permission_camera_finish 0x7f14002c
- int string permission_camera_reason 0x7f14002d
- int string permission_camera_request 0x7f14002e
- int string permission_ext_storage 0x7f14002f
- int string permission_ext_storage_finish 0x7f140030
- int string permission_ext_storage_reason 0x7f140031
- int string permission_ext_storage_request 0x7f140032
- int string permission_location 0x7f140033
- int string permission_location_finish 0x7f140034
- int string permission_location_reason 0x7f140035
- int string permission_location_request 0x7f140036
- int string permission_network 0x7f140037
- int string permission_network_finish 0x7f140038
- int string permission_network_reason 0x7f140039
- int string permission_network_request 0x7f14003a
- int string permission_title 0x7f14003b
- int string refresh 0x7f14003c
- int string scale_type_inch 0x7f14003d
- int string scale_type_mm 0x7f14003e
- int string scale_type_none 0x7f14003f
- int string search_menu_title 0x7f140040
- int string select 0x7f140041
- int string service_name 0x7f140042
- int string service_start 0x7f140043
- int string service_stop 0x7f140044
- int string status_bar_notification_info_overflow 0x7f140045
- int string summary_collapsed_preference_list 0x7f140046
- int string v7_preference_off 0x7f140047
- int string v7_preference_on 0x7f140048
- int style AlertDialog_AppCompat 0x7f150001
- int style AlertDialog_AppCompat_Light 0x7f150002
- int style Animation_AppCompat_Dialog 0x7f150003
- int style Animation_AppCompat_DropDownUp 0x7f150004
- int style Animation_AppCompat_Tooltip 0x7f150005
- int style Base_AlertDialog_AppCompat 0x7f150006
- int style Base_AlertDialog_AppCompat_Light 0x7f150007
- int style Base_Animation_AppCompat_Dialog 0x7f150008
- int style Base_Animation_AppCompat_DropDownUp 0x7f150009
- int style Base_Animation_AppCompat_Tooltip 0x7f15000a
- int style Base_DialogWindowTitleBackground_AppCompat 0x7f15000b
- int style Base_DialogWindowTitle_AppCompat 0x7f15000c
- int style Base_TextAppearance_AppCompat 0x7f15000d
- int style Base_TextAppearance_AppCompat_Body1 0x7f15000e
- int style Base_TextAppearance_AppCompat_Body2 0x7f15000f
- int style Base_TextAppearance_AppCompat_Button 0x7f150010
- int style Base_TextAppearance_AppCompat_Caption 0x7f150011
- int style Base_TextAppearance_AppCompat_Display1 0x7f150012
- int style Base_TextAppearance_AppCompat_Display2 0x7f150013
- int style Base_TextAppearance_AppCompat_Display3 0x7f150014
- int style Base_TextAppearance_AppCompat_Display4 0x7f150015
- int style Base_TextAppearance_AppCompat_Headline 0x7f150016
- int style Base_TextAppearance_AppCompat_Inverse 0x7f150017
- int style Base_TextAppearance_AppCompat_Large 0x7f150018
- int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f150019
- int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15001a
- int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15001b
- int style Base_TextAppearance_AppCompat_Medium 0x7f15001c
- int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f15001d
- int style Base_TextAppearance_AppCompat_Menu 0x7f15001e
- int style Base_TextAppearance_AppCompat_SearchResult 0x7f15001f
- int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150020
- int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f150021
- int style Base_TextAppearance_AppCompat_Small 0x7f150022
- int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f150023
- int style Base_TextAppearance_AppCompat_Subhead 0x7f150024
- int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f150025
- int style Base_TextAppearance_AppCompat_Title 0x7f150026
- int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f150027
- int style Base_TextAppearance_AppCompat_Tooltip 0x7f150028
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150029
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15002a
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15002b
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15002c
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15002d
- int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f15002e
- int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f15002f
- int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150030
- int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150031
- int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f150032
- int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150033
- int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f150034
- int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150035
- int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150036
- int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150037
- int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f150038
- int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f150039
- int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15003a
- int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15003b
- int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15003c
- int style Base_ThemeOverlay_AppCompat 0x7f15003d
- int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f15003e
- int style Base_ThemeOverlay_AppCompat_Dark 0x7f15003f
- int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150040
- int style Base_ThemeOverlay_AppCompat_Dialog 0x7f150041
- int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f150042
- int style Base_ThemeOverlay_AppCompat_Light 0x7f150043
- int style Base_Theme_AppCompat 0x7f150044
- int style Base_Theme_AppCompat_CompactMenu 0x7f150045
- int style Base_Theme_AppCompat_Dialog 0x7f150046
- int style Base_Theme_AppCompat_DialogWhenLarge 0x7f150047
- int style Base_Theme_AppCompat_Dialog_Alert 0x7f150048
- int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f150049
- int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15004a
- int style Base_Theme_AppCompat_Light 0x7f15004b
- int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f15004c
- int style Base_Theme_AppCompat_Light_Dialog 0x7f15004d
- int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f15004e
- int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f15004f
- int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150050
- int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150051
- int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150052
- int style Base_V21_Theme_AppCompat 0x7f150053
- int style Base_V21_Theme_AppCompat_Dialog 0x7f150054
- int style Base_V21_Theme_AppCompat_Light 0x7f150055
- int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150056
- int style Base_V22_Theme_AppCompat 0x7f150057
- int style Base_V22_Theme_AppCompat_Light 0x7f150058
- int style Base_V23_Theme_AppCompat 0x7f150059
- int style Base_V23_Theme_AppCompat_Light 0x7f15005a
- int style Base_V26_Theme_AppCompat 0x7f15005b
- int style Base_V26_Theme_AppCompat_Light 0x7f15005c
- int style Base_V26_Widget_AppCompat_Toolbar 0x7f15005d
- int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f15005e
- int style Base_V7_Theme_AppCompat 0x7f15005f
- int style Base_V7_Theme_AppCompat_Dialog 0x7f150060
- int style Base_V7_Theme_AppCompat_Light 0x7f150061
- int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f150062
- int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f150063
- int style Base_V7_Widget_AppCompat_EditText 0x7f150064
- int style Base_V7_Widget_AppCompat_Toolbar 0x7f150065
- int style Base_Widget_AppCompat_ActionBar 0x7f150066
- int style Base_Widget_AppCompat_ActionBar_Solid 0x7f150067
- int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f150068
- int style Base_Widget_AppCompat_ActionBar_TabText 0x7f150069
- int style Base_Widget_AppCompat_ActionBar_TabView 0x7f15006a
- int style Base_Widget_AppCompat_ActionButton 0x7f15006b
- int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f15006c
- int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f15006d
- int style Base_Widget_AppCompat_ActionMode 0x7f15006e
- int style Base_Widget_AppCompat_ActivityChooserView 0x7f15006f
- int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f150070
- int style Base_Widget_AppCompat_Button 0x7f150071
- int style Base_Widget_AppCompat_ButtonBar 0x7f150072
- int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f150073
- int style Base_Widget_AppCompat_Button_Borderless 0x7f150074
- int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f150075
- int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150076
- int style Base_Widget_AppCompat_Button_Colored 0x7f150077
- int style Base_Widget_AppCompat_Button_Small 0x7f150078
- int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f150079
- int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f15007a
- int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f15007b
- int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f15007c
- int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f15007d
- int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f15007e
- int style Base_Widget_AppCompat_EditText 0x7f15007f
- int style Base_Widget_AppCompat_ImageButton 0x7f150080
- int style Base_Widget_AppCompat_Light_ActionBar 0x7f150081
- int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f150082
- int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f150083
- int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f150084
- int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150085
- int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f150086
- int style Base_Widget_AppCompat_Light_PopupMenu 0x7f150087
- int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f150088
- int style Base_Widget_AppCompat_ListMenuView 0x7f150089
- int style Base_Widget_AppCompat_ListPopupWindow 0x7f15008a
- int style Base_Widget_AppCompat_ListView 0x7f15008b
- int style Base_Widget_AppCompat_ListView_DropDown 0x7f15008c
- int style Base_Widget_AppCompat_ListView_Menu 0x7f15008d
- int style Base_Widget_AppCompat_PopupMenu 0x7f15008e
- int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f15008f
- int style Base_Widget_AppCompat_PopupWindow 0x7f150090
- int style Base_Widget_AppCompat_ProgressBar 0x7f150091
- int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f150092
- int style Base_Widget_AppCompat_RatingBar 0x7f150093
- int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f150094
- int style Base_Widget_AppCompat_RatingBar_Small 0x7f150095
- int style Base_Widget_AppCompat_SearchView 0x7f150096
- int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f150097
- int style Base_Widget_AppCompat_SeekBar 0x7f150098
- int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f150099
- int style Base_Widget_AppCompat_Spinner 0x7f15009a
- int style Base_Widget_AppCompat_Spinner_Underlined 0x7f15009b
- int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f15009c
- int style Base_Widget_AppCompat_Toolbar 0x7f15009d
- int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f15009e
- int style Platform_AppCompat 0x7f15009f
- int style Platform_AppCompat_Light 0x7f1500a0
- int style Platform_ThemeOverlay_AppCompat 0x7f1500a1
- int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1500a2
- int style Platform_ThemeOverlay_AppCompat_Light 0x7f1500a3
- int style Platform_V21_AppCompat 0x7f1500a4
- int style Platform_V21_AppCompat_Light 0x7f1500a5
- int style Platform_V25_AppCompat 0x7f1500a6
- int style Platform_V25_AppCompat_Light 0x7f1500a7
- int style Platform_Widget_AppCompat_Spinner 0x7f1500a8
- int style Preference 0x7f1500a9
- int style PreferenceFragment 0x7f1500aa
- int style PreferenceFragmentList 0x7f1500ab
- int style PreferenceFragmentList_Material 0x7f1500ac
- int style PreferenceFragment_Material 0x7f1500ad
- int style PreferenceThemeOverlay 0x7f1500ae
- int style PreferenceThemeOverlay_v14 0x7f1500af
- int style PreferenceThemeOverlay_v14_Material 0x7f1500b0
- int style Preference_Category 0x7f1500b1
- int style Preference_Category_Material 0x7f1500b2
- int style Preference_CheckBoxPreference 0x7f1500b3
- int style Preference_CheckBoxPreference_Material 0x7f1500b4
- int style Preference_DialogPreference 0x7f1500b5
- int style Preference_DialogPreference_EditTextPreference 0x7f1500b6
- int style Preference_DialogPreference_EditTextPreference_Material 0x7f1500b7
- int style Preference_DialogPreference_Material 0x7f1500b8
- int style Preference_DropDown 0x7f1500b9
- int style Preference_DropDown_Material 0x7f1500ba
- int style Preference_Information 0x7f1500bb
- int style Preference_Information_Material 0x7f1500bc
- int style Preference_Material 0x7f1500bd
- int style Preference_PreferenceScreen 0x7f1500be
- int style Preference_PreferenceScreen_Material 0x7f1500bf
- int style Preference_SeekBarPreference 0x7f1500c0
- int style Preference_SeekBarPreference_Material 0x7f1500c1
- int style Preference_SwitchPreference 0x7f1500c2
- int style Preference_SwitchPreferenceCompat 0x7f1500c3
- int style Preference_SwitchPreferenceCompat_Material 0x7f1500c4
- int style Preference_SwitchPreference_Material 0x7f1500c5
- int style Preference_TextAppearanceMaterialBody2 0x7f1500c6
- int style Preference_TextAppearanceMaterialSubhead 0x7f1500c7
- int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f1500c8
- int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f1500c9
- int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f1500ca
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f1500cb
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f1500cc
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f1500cd
- int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f1500ce
- int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f1500cf
- int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f1500d0
- int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f1500d1
- int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f1500d2
- int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f1500d3
- int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f1500d4
- int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f1500d5
- int style SeekBarPreference_summary 0x7f1500d6
- int style SeekBarPreference_title 0x7f1500d7
- int style TextAppearance_AppCompat 0x7f1500d8
- int style TextAppearance_AppCompat_Body1 0x7f1500d9
- int style TextAppearance_AppCompat_Body2 0x7f1500da
- int style TextAppearance_AppCompat_Button 0x7f1500db
- int style TextAppearance_AppCompat_Caption 0x7f1500dc
- int style TextAppearance_AppCompat_Display1 0x7f1500dd
- int style TextAppearance_AppCompat_Display2 0x7f1500de
- int style TextAppearance_AppCompat_Display3 0x7f1500df
- int style TextAppearance_AppCompat_Display4 0x7f1500e0
- int style TextAppearance_AppCompat_Headline 0x7f1500e1
- int style TextAppearance_AppCompat_Inverse 0x7f1500e2
- int style TextAppearance_AppCompat_Large 0x7f1500e3
- int style TextAppearance_AppCompat_Large_Inverse 0x7f1500e4
- int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1500e5
- int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1500e6
- int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1500e7
- int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1500e8
- int style TextAppearance_AppCompat_Medium 0x7f1500e9
- int style TextAppearance_AppCompat_Medium_Inverse 0x7f1500ea
- int style TextAppearance_AppCompat_Menu 0x7f1500eb
- int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f1500ec
- int style TextAppearance_AppCompat_SearchResult_Title 0x7f1500ed
- int style TextAppearance_AppCompat_Small 0x7f1500ee
- int style TextAppearance_AppCompat_Small_Inverse 0x7f1500ef
- int style TextAppearance_AppCompat_Subhead 0x7f1500f0
- int style TextAppearance_AppCompat_Subhead_Inverse 0x7f1500f1
- int style TextAppearance_AppCompat_Title 0x7f1500f2
- int style TextAppearance_AppCompat_Title_Inverse 0x7f1500f3
- int style TextAppearance_AppCompat_Tooltip 0x7f1500f4
- int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f1500f5
- int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f1500f6
- int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f1500f7
- int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f1500f8
- int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f1500f9
- int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f1500fa
- int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f1500fb
- int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f1500fc
- int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f1500fd
- int style TextAppearance_AppCompat_Widget_Button 0x7f1500fe
- int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f1500ff
- int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f150100
- int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150101
- int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f150102
- int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150103
- int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150104
- int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150105
- int style TextAppearance_AppCompat_Widget_Switch 0x7f150106
- int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f150107
- int style TextAppearance_Compat_Notification 0x7f150108
- int style TextAppearance_Compat_Notification_Info 0x7f150109
- int style TextAppearance_Compat_Notification_Info_Media 0x7f15010a
- int style TextAppearance_Compat_Notification_Line2 0x7f15010b
- int style TextAppearance_Compat_Notification_Line2_Media 0x7f15010c
- int style TextAppearance_Compat_Notification_Media 0x7f15010d
- int style TextAppearance_Compat_Notification_Time 0x7f15010e
- int style TextAppearance_Compat_Notification_Time_Media 0x7f15010f
- int style TextAppearance_Compat_Notification_Title 0x7f150110
- int style TextAppearance_Compat_Notification_Title_Media 0x7f150111
- int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f150112
- int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f150113
- int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f150114
- int style ThemeOverlay_AppCompat 0x7f150115
- int style ThemeOverlay_AppCompat_ActionBar 0x7f150116
- int style ThemeOverlay_AppCompat_Dark 0x7f150117
- int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150118
- int style ThemeOverlay_AppCompat_Dialog 0x7f150119
- int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f15011a
- int style ThemeOverlay_AppCompat_Light 0x7f15011b
- int style Theme_AppCompat 0x7f15011c
- int style Theme_AppCompat_CompactMenu 0x7f15011d
- int style Theme_AppCompat_DayNight 0x7f15011e
- int style Theme_AppCompat_DayNight_DarkActionBar 0x7f15011f
- int style Theme_AppCompat_DayNight_Dialog 0x7f150120
- int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f150121
- int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f150122
- int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f150123
- int style Theme_AppCompat_DayNight_NoActionBar 0x7f150124
- int style Theme_AppCompat_Dialog 0x7f150125
- int style Theme_AppCompat_DialogWhenLarge 0x7f150126
- int style Theme_AppCompat_Dialog_Alert 0x7f150127
- int style Theme_AppCompat_Dialog_MinWidth 0x7f150128
- int style Theme_AppCompat_Light 0x7f150129
- int style Theme_AppCompat_Light_DarkActionBar 0x7f15012a
- int style Theme_AppCompat_Light_Dialog 0x7f15012b
- int style Theme_AppCompat_Light_DialogWhenLarge 0x7f15012c
- int style Theme_AppCompat_Light_Dialog_Alert 0x7f15012d
- int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f15012e
- int style Theme_AppCompat_Light_NoActionBar 0x7f15012f
- int style Theme_AppCompat_NoActionBar 0x7f150130
- int style Widget_AppCompat_ActionBar 0x7f150131
- int style Widget_AppCompat_ActionBar_Solid 0x7f150132
- int style Widget_AppCompat_ActionBar_TabBar 0x7f150133
- int style Widget_AppCompat_ActionBar_TabText 0x7f150134
- int style Widget_AppCompat_ActionBar_TabView 0x7f150135
- int style Widget_AppCompat_ActionButton 0x7f150136
- int style Widget_AppCompat_ActionButton_CloseMode 0x7f150137
- int style Widget_AppCompat_ActionButton_Overflow 0x7f150138
- int style Widget_AppCompat_ActionMode 0x7f150139
- int style Widget_AppCompat_ActivityChooserView 0x7f15013a
- int style Widget_AppCompat_AutoCompleteTextView 0x7f15013b
- int style Widget_AppCompat_Button 0x7f15013c
- int style Widget_AppCompat_ButtonBar 0x7f15013d
- int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f15013e
- int style Widget_AppCompat_Button_Borderless 0x7f15013f
- int style Widget_AppCompat_Button_Borderless_Colored 0x7f150140
- int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150141
- int style Widget_AppCompat_Button_Colored 0x7f150142
- int style Widget_AppCompat_Button_Small 0x7f150143
- int style Widget_AppCompat_CompoundButton_CheckBox 0x7f150144
- int style Widget_AppCompat_CompoundButton_RadioButton 0x7f150145
- int style Widget_AppCompat_CompoundButton_Switch 0x7f150146
- int style Widget_AppCompat_DrawerArrowToggle 0x7f150147
- int style Widget_AppCompat_DropDownItem_Spinner 0x7f150148
- int style Widget_AppCompat_EditText 0x7f150149
- int style Widget_AppCompat_ImageButton 0x7f15014a
- int style Widget_AppCompat_Light_ActionBar 0x7f15014b
- int style Widget_AppCompat_Light_ActionBar_Solid 0x7f15014c
- int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f15014d
- int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f15014e
- int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f15014f
- int style Widget_AppCompat_Light_ActionBar_TabText 0x7f150150
- int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150151
- int style Widget_AppCompat_Light_ActionBar_TabView 0x7f150152
- int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f150153
- int style Widget_AppCompat_Light_ActionButton 0x7f150154
- int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f150155
- int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f150156
- int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f150157
- int style Widget_AppCompat_Light_ActivityChooserView 0x7f150158
- int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f150159
- int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f15015a
- int style Widget_AppCompat_Light_ListPopupWindow 0x7f15015b
- int style Widget_AppCompat_Light_ListView_DropDown 0x7f15015c
- int style Widget_AppCompat_Light_PopupMenu 0x7f15015d
- int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f15015e
- int style Widget_AppCompat_Light_SearchView 0x7f15015f
- int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f150160
- int style Widget_AppCompat_ListMenuView 0x7f150161
- int style Widget_AppCompat_ListPopupWindow 0x7f150162
- int style Widget_AppCompat_ListView 0x7f150163
- int style Widget_AppCompat_ListView_DropDown 0x7f150164
- int style Widget_AppCompat_ListView_Menu 0x7f150165
- int style Widget_AppCompat_PopupMenu 0x7f150166
- int style Widget_AppCompat_PopupMenu_Overflow 0x7f150167
- int style Widget_AppCompat_PopupWindow 0x7f150168
- int style Widget_AppCompat_ProgressBar 0x7f150169
- int style Widget_AppCompat_ProgressBar_Horizontal 0x7f15016a
- int style Widget_AppCompat_RatingBar 0x7f15016b
- int style Widget_AppCompat_RatingBar_Indicator 0x7f15016c
- int style Widget_AppCompat_RatingBar_Small 0x7f15016d
- int style Widget_AppCompat_SearchView 0x7f15016e
- int style Widget_AppCompat_SearchView_ActionBar 0x7f15016f
- int style Widget_AppCompat_SeekBar 0x7f150170
- int style Widget_AppCompat_SeekBar_Discrete 0x7f150171
- int style Widget_AppCompat_Spinner 0x7f150172
- int style Widget_AppCompat_Spinner_DropDown 0x7f150173
- int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f150174
- int style Widget_AppCompat_Spinner_Underlined 0x7f150175
- int style Widget_AppCompat_TextView_SpinnerItem 0x7f150176
- int style Widget_AppCompat_Toolbar 0x7f150177
- int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f150178
- int style Widget_Compat_NotificationActionContainer 0x7f150179
- int style Widget_Compat_NotificationActionText 0x7f15017a
- int style Widget_Support_CoordinatorLayout 0x7f15017b
- int[] styleable ActionBar { 0x7f040042, 0x7f040043, 0x7f040044, 0x7f040069, 0x7f04006a, 0x7f04006b, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f040071, 0x7f04007f, 0x7f040080, 0x7f04008d, 0x7f0400aa, 0x7f0400ab, 0x7f0400ac, 0x7f0400ad, 0x7f0400ae, 0x7f0400b4, 0x7f0400b8, 0x7f0400cf, 0x7f0400db, 0x7f0400eb, 0x7f0400fd, 0x7f0400fe, 0x7f04012e, 0x7f040131, 0x7f040154, 0x7f04015d }
- int styleable ActionBar_background 0
- int styleable ActionBar_backgroundSplit 1
- int styleable ActionBar_backgroundStacked 2
- int styleable ActionBar_contentInsetEnd 3
- int styleable ActionBar_contentInsetEndWithActions 4
- int styleable ActionBar_contentInsetLeft 5
- int styleable ActionBar_contentInsetRight 6
- int styleable ActionBar_contentInsetStart 7
- int styleable ActionBar_contentInsetStartWithNavigation 8
- int styleable ActionBar_customNavigationLayout 9
- int styleable ActionBar_displayOptions 10
- int styleable ActionBar_divider 11
- int styleable ActionBar_elevation 12
- int styleable ActionBar_height 13
- int styleable ActionBar_hideOnContentScroll 14
- int styleable ActionBar_homeAsUpIndicator 15
- int styleable ActionBar_homeLayout 16
- int styleable ActionBar_icon 17
- int styleable ActionBar_indeterminateProgressStyle 18
- int styleable ActionBar_itemPadding 19
- int styleable ActionBar_logo 20
- int styleable ActionBar_navigationMode 21
- int styleable ActionBar_popupTheme 22
- int styleable ActionBar_progressBarPadding 23
- int styleable ActionBar_progressBarStyle 24
- int styleable ActionBar_subtitle 25
- int styleable ActionBar_subtitleTextStyle 26
- int styleable ActionBar_title 27
- int styleable ActionBar_titleTextStyle 28
- int[] styleable ActionBarLayout { 0x10100b3 }
- int styleable ActionBarLayout_android_layout_gravity 0
- int[] styleable ActionMenuItemView { 0x101013f }
- int styleable ActionMenuItemView_android_minWidth 0
- int[] styleable ActionMode { 0x7f040042, 0x7f040043, 0x7f040059, 0x7f0400aa, 0x7f040131, 0x7f04015d }
- int styleable ActionMode_background 0
- int styleable ActionMode_backgroundSplit 1
- int styleable ActionMode_closeItemLayout 2
- int styleable ActionMode_height 3
- int styleable ActionMode_subtitleTextStyle 4
- int styleable ActionMode_titleTextStyle 5
- int[] styleable ActivityChooserView { 0x7f040092, 0x7f0400b5 }
- int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
- int styleable ActivityChooserView_initialActivityCount 1
- int[] styleable AlertDialog { 0x10100f2, 0x7f04004f, 0x7f040050, 0x7f0400c6, 0x7f0400c7, 0x7f0400d8, 0x7f04011f, 0x7f040120 }
- int styleable AlertDialog_android_layout 0
- int styleable AlertDialog_buttonIconDimen 1
- int styleable AlertDialog_buttonPanelSideLayout 2
- int styleable AlertDialog_listItemLayout 3
- int styleable AlertDialog_listLayout 4
- int styleable AlertDialog_multiChoiceItemLayout 5
- int styleable AlertDialog_showTitle 6
- int styleable AlertDialog_singleChoiceItemLayout 7
- int[] styleable AppCompatImageView { 0x1010119, 0x7f040127, 0x7f040152, 0x7f040153 }
- int styleable AppCompatImageView_android_src 0
- int styleable AppCompatImageView_srcCompat 1
- int styleable AppCompatImageView_tint 2
- int styleable AppCompatImageView_tintMode 3
- int[] styleable AppCompatSeekBar { 0x1010142, 0x7f04014e, 0x7f04014f, 0x7f040150 }
- int styleable AppCompatSeekBar_android_thumb 0
- int styleable AppCompatSeekBar_tickMark 1
- int styleable AppCompatSeekBar_tickMarkTint 2
- int styleable AppCompatSeekBar_tickMarkTintMode 3
- int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 }
- int styleable AppCompatTextHelper_android_drawableBottom 0
- int styleable AppCompatTextHelper_android_drawableEnd 1
- int styleable AppCompatTextHelper_android_drawableLeft 2
- int styleable AppCompatTextHelper_android_drawableRight 3
- int styleable AppCompatTextHelper_android_drawableStart 4
- int styleable AppCompatTextHelper_android_drawableTop 5
- int styleable AppCompatTextHelper_android_textAppearance 6
- int[] styleable AppCompatTextView { 0x1010034, 0x7f04003d, 0x7f04003e, 0x7f04003f, 0x7f040040, 0x7f040041, 0x7f04009a, 0x7f04013e }
- int styleable AppCompatTextView_android_textAppearance 0
- int styleable AppCompatTextView_autoSizeMaxTextSize 1
- int styleable AppCompatTextView_autoSizeMinTextSize 2
- int styleable AppCompatTextView_autoSizePresetSizes 3
- int styleable AppCompatTextView_autoSizeStepGranularity 4
- int styleable AppCompatTextView_autoSizeTextType 5
- int styleable AppCompatTextView_fontFamily 6
- int styleable AppCompatTextView_textAllCaps 7
- int[] styleable AppCompatTheme { 0x7f04000c, 0x7f04000d, 0x7f04000e, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040020, 0x7f040021, 0x7f040022, 0x7f040023, 0x7f040024, 0x7f040025, 0x7f040026, 0x7f040027, 0x7f040028, 0x7f040029, 0x7f04002a, 0x7f04002d, 0x7f04002f, 0x7f040030, 0x7f040031, 0x7f040032, 0x10100ae, 0x1010057, 0x7f04003c, 0x7f040048, 0x7f040049, 0x7f04004a, 0x7f04004b, 0x7f04004c, 0x7f04004d, 0x7f040051, 0x7f040052, 0x7f040056, 0x7f040057, 0x7f04005d, 0x7f04005e, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f040065, 0x7f040066, 0x7f04006f, 0x7f04007a, 0x7f04007b, 0x7f040081, 0x7f040083, 0x7f040086, 0x7f040087, 0x7f040089, 0x7f04008a, 0x7f04008c, 0x7f0400ac, 0x7f0400b3, 0x7f0400c3, 0x7f0400c5, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400cc, 0x7f0400cd, 0x7f0400ce, 0x7f0400e6, 0x7f0400e7, 0x7f0400e8, 0x7f0400ea, 0x7f0400ec, 0x7f040101, 0x7f040102, 0x7f040103, 0x7f040104, 0x7f040110, 0x7f040113, 0x7f040118, 0x7f040119, 0x7f040124, 0x7f040125, 0x7f04013a, 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040142, 0x7f040143, 0x7f040144, 0x7f040145, 0x7f040146, 0x7f040147, 0x7f040148, 0x7f04015e, 0x7f04015f, 0x7f040160, 0x7f040161, 0x7f040167, 0x7f04016a, 0x7f04016b, 0x7f04016c, 0x7f04016d, 0x7f04016e, 0x7f04016f, 0x7f040170, 0x7f040171, 0x7f040172, 0x7f040173 }
- int styleable AppCompatTheme_actionBarDivider 0
- int styleable AppCompatTheme_actionBarItemBackground 1
- int styleable AppCompatTheme_actionBarPopupTheme 2
- int styleable AppCompatTheme_actionBarSize 3
- int styleable AppCompatTheme_actionBarSplitStyle 4
- int styleable AppCompatTheme_actionBarStyle 5
- int styleable AppCompatTheme_actionBarTabBarStyle 6
- int styleable AppCompatTheme_actionBarTabStyle 7
- int styleable AppCompatTheme_actionBarTabTextStyle 8
- int styleable AppCompatTheme_actionBarTheme 9
- int styleable AppCompatTheme_actionBarWidgetTheme 10
- int styleable AppCompatTheme_actionButtonStyle 11
- int styleable AppCompatTheme_actionDropDownStyle 12
- int styleable AppCompatTheme_actionMenuTextAppearance 13
- int styleable AppCompatTheme_actionMenuTextColor 14
- int styleable AppCompatTheme_actionModeBackground 15
- int styleable AppCompatTheme_actionModeCloseButtonStyle 16
- int styleable AppCompatTheme_actionModeCloseDrawable 17
- int styleable AppCompatTheme_actionModeCopyDrawable 18
- int styleable AppCompatTheme_actionModeCutDrawable 19
- int styleable AppCompatTheme_actionModeFindDrawable 20
- int styleable AppCompatTheme_actionModePasteDrawable 21
- int styleable AppCompatTheme_actionModePopupWindowStyle 22
- int styleable AppCompatTheme_actionModeSelectAllDrawable 23
- int styleable AppCompatTheme_actionModeShareDrawable 24
- int styleable AppCompatTheme_actionModeSplitBackground 25
- int styleable AppCompatTheme_actionModeStyle 26
- int styleable AppCompatTheme_actionModeWebSearchDrawable 27
- int styleable AppCompatTheme_actionOverflowButtonStyle 28
- int styleable AppCompatTheme_actionOverflowMenuStyle 29
- int styleable AppCompatTheme_activityChooserViewStyle 30
- int styleable AppCompatTheme_alertDialogButtonGroupStyle 31
- int styleable AppCompatTheme_alertDialogCenterButtons 32
- int styleable AppCompatTheme_alertDialogStyle 33
- int styleable AppCompatTheme_alertDialogTheme 34
- int styleable AppCompatTheme_android_windowAnimationStyle 35
- int styleable AppCompatTheme_android_windowIsFloating 36
- int styleable AppCompatTheme_autoCompleteTextViewStyle 37
- int styleable AppCompatTheme_borderlessButtonStyle 38
- int styleable AppCompatTheme_buttonBarButtonStyle 39
- int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
- int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
- int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
- int styleable AppCompatTheme_buttonBarStyle 43
- int styleable AppCompatTheme_buttonStyle 44
- int styleable AppCompatTheme_buttonStyleSmall 45
- int styleable AppCompatTheme_checkboxStyle 46
- int styleable AppCompatTheme_checkedTextViewStyle 47
- int styleable AppCompatTheme_colorAccent 48
- int styleable AppCompatTheme_colorBackgroundFloating 49
- int styleable AppCompatTheme_colorButtonNormal 50
- int styleable AppCompatTheme_colorControlActivated 51
- int styleable AppCompatTheme_colorControlHighlight 52
- int styleable AppCompatTheme_colorControlNormal 53
- int styleable AppCompatTheme_colorError 54
- int styleable AppCompatTheme_colorPrimary 55
- int styleable AppCompatTheme_colorPrimaryDark 56
- int styleable AppCompatTheme_colorSwitchThumbNormal 57
- int styleable AppCompatTheme_controlBackground 58
- int styleable AppCompatTheme_dialogPreferredPadding 59
- int styleable AppCompatTheme_dialogTheme 60
- int styleable AppCompatTheme_dividerHorizontal 61
- int styleable AppCompatTheme_dividerVertical 62
- int styleable AppCompatTheme_dropDownListViewStyle 63
- int styleable AppCompatTheme_dropdownListPreferredItemHeight 64
- int styleable AppCompatTheme_editTextBackground 65
- int styleable AppCompatTheme_editTextColor 66
- int styleable AppCompatTheme_editTextStyle 67
- int styleable AppCompatTheme_homeAsUpIndicator 68
- int styleable AppCompatTheme_imageButtonStyle 69
- int styleable AppCompatTheme_listChoiceBackgroundIndicator 70
- int styleable AppCompatTheme_listDividerAlertDialog 71
- int styleable AppCompatTheme_listMenuViewStyle 72
- int styleable AppCompatTheme_listPopupWindowStyle 73
- int styleable AppCompatTheme_listPreferredItemHeight 74
- int styleable AppCompatTheme_listPreferredItemHeightLarge 75
- int styleable AppCompatTheme_listPreferredItemHeightSmall 76
- int styleable AppCompatTheme_listPreferredItemPaddingLeft 77
- int styleable AppCompatTheme_listPreferredItemPaddingRight 78
- int styleable AppCompatTheme_panelBackground 79
- int styleable AppCompatTheme_panelMenuListTheme 80
- int styleable AppCompatTheme_panelMenuListWidth 81
- int styleable AppCompatTheme_popupMenuStyle 82
- int styleable AppCompatTheme_popupWindowStyle 83
- int styleable AppCompatTheme_radioButtonStyle 84
- int styleable AppCompatTheme_ratingBarStyle 85
- int styleable AppCompatTheme_ratingBarStyleIndicator 86
- int styleable AppCompatTheme_ratingBarStyleSmall 87
- int styleable AppCompatTheme_searchViewStyle 88
- int styleable AppCompatTheme_seekBarStyle 89
- int styleable AppCompatTheme_selectableItemBackground 90
- int styleable AppCompatTheme_selectableItemBackgroundBorderless 91
- int styleable AppCompatTheme_spinnerDropDownItemStyle 92
- int styleable AppCompatTheme_spinnerStyle 93
- int styleable AppCompatTheme_switchStyle 94
- int styleable AppCompatTheme_textAppearanceLargePopupMenu 95
- int styleable AppCompatTheme_textAppearanceListItem 96
- int styleable AppCompatTheme_textAppearanceListItemSecondary 97
- int styleable AppCompatTheme_textAppearanceListItemSmall 98
- int styleable AppCompatTheme_textAppearancePopupMenuHeader 99
- int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 100
- int styleable AppCompatTheme_textAppearanceSearchResultTitle 101
- int styleable AppCompatTheme_textAppearanceSmallPopupMenu 102
- int styleable AppCompatTheme_textColorAlertDialogListItem 103
- int styleable AppCompatTheme_textColorSearchUrl 104
- int styleable AppCompatTheme_toolbarNavigationButtonStyle 105
- int styleable AppCompatTheme_toolbarStyle 106
- int styleable AppCompatTheme_tooltipForegroundColor 107
- int styleable AppCompatTheme_tooltipFrameBackground 108
- int styleable AppCompatTheme_viewInflaterClass 109
- int styleable AppCompatTheme_windowActionBar 110
- int styleable AppCompatTheme_windowActionBarOverlay 111
- int styleable AppCompatTheme_windowActionModeOverlay 112
- int styleable AppCompatTheme_windowFixedHeightMajor 113
- int styleable AppCompatTheme_windowFixedHeightMinor 114
- int styleable AppCompatTheme_windowFixedWidthMajor 115
- int styleable AppCompatTheme_windowFixedWidthMinor 116
- int styleable AppCompatTheme_windowMinWidthMajor 117
- int styleable AppCompatTheme_windowMinWidthMinor 118
- int styleable AppCompatTheme_windowNoTitle 119
- int[] styleable AspectScaledTextureView { 0x7f04003b, 0x7f040108 }
- int styleable AspectScaledTextureView_aspect_ratio 0
- int styleable AspectScaledTextureView_scale_mode 1
- int[] styleable BackgroundStyle { 0x101030e, 0x7f040118 }
- int styleable BackgroundStyle_android_selectableItemBackground 0
- int styleable BackgroundStyle_selectableItemBackground 1
- int[] styleable ButtonBarLayout { 0x7f040036 }
- int styleable ButtonBarLayout_allowStacking 0
- int[] styleable CheckBoxPreference { 0x10101f1, 0x10101f0, 0x10101ef, 0x7f04007d, 0x7f040134, 0x7f040135 }
- int styleable CheckBoxPreference_android_disableDependentsState 0
- int styleable CheckBoxPreference_android_summaryOff 1
- int styleable CheckBoxPreference_android_summaryOn 2
- int styleable CheckBoxPreference_disableDependentsState 3
- int styleable CheckBoxPreference_summaryOff 4
- int styleable CheckBoxPreference_summaryOn 5
- int[] styleable ColorStateListItem { 0x7f040037, 0x101031f, 0x10101a5 }
- int styleable ColorStateListItem_alpha 0
- int styleable ColorStateListItem_android_alpha 1
- int styleable ColorStateListItem_android_color 2
- int[] styleable CompoundButton { 0x1010107, 0x7f040053, 0x7f040054 }
- int styleable CompoundButton_android_button 0
- int styleable CompoundButton_buttonTint 1
- int styleable CompoundButton_buttonTintMode 2
- int[] styleable CoordinatorLayout { 0x7f0400ba, 0x7f04012a }
- int styleable CoordinatorLayout_keylines 0
- int styleable CoordinatorLayout_statusBarBackground 1
- int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f0400bd, 0x7f0400be, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2 }
- int styleable CoordinatorLayout_Layout_android_layout_gravity 0
- int styleable CoordinatorLayout_Layout_layout_anchor 1
- int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
- int styleable CoordinatorLayout_Layout_layout_behavior 3
- int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
- int styleable CoordinatorLayout_Layout_layout_insetEdge 5
- int styleable CoordinatorLayout_Layout_layout_keyline 6
- int[] styleable DialogPreference { 0x10101f4, 0x10101f7, 0x10101f3, 0x10101f2, 0x10101f6, 0x10101f5, 0x7f040076, 0x7f040077, 0x7f040078, 0x7f04007c, 0x7f0400dc, 0x7f0400ed }
- int styleable DialogPreference_android_dialogIcon 0
- int styleable DialogPreference_android_dialogLayout 1
- int styleable DialogPreference_android_dialogMessage 2
- int styleable DialogPreference_android_dialogTitle 3
- int styleable DialogPreference_android_negativeButtonText 4
- int styleable DialogPreference_android_positiveButtonText 5
- int styleable DialogPreference_dialogIcon 6
- int styleable DialogPreference_dialogLayout 7
- int styleable DialogPreference_dialogMessage 8
- int styleable DialogPreference_dialogTitle 9
- int styleable DialogPreference_negativeButtonText 10
- int styleable DialogPreference_positiveButtonText 11
- int[] styleable DrawerArrowToggle { 0x7f040039, 0x7f04003a, 0x7f040047, 0x7f04005c, 0x7f040084, 0x7f0400a7, 0x7f040123, 0x7f04014a }
- int styleable DrawerArrowToggle_arrowHeadLength 0
- int styleable DrawerArrowToggle_arrowShaftLength 1
- int styleable DrawerArrowToggle_barLength 2
- int styleable DrawerArrowToggle_color 3
- int styleable DrawerArrowToggle_drawableSize 4
- int styleable DrawerArrowToggle_gapBetweenBars 5
- int styleable DrawerArrowToggle_spinBars 6
- int styleable DrawerArrowToggle_thickness 7
- int[] styleable FontFamily { 0x7f04009b, 0x7f04009c, 0x7f04009d, 0x7f04009e, 0x7f04009f, 0x7f0400a0 }
- int styleable FontFamily_fontProviderAuthority 0
- int styleable FontFamily_fontProviderCerts 1
- int styleable FontFamily_fontProviderFetchStrategy 2
- int styleable FontFamily_fontProviderFetchTimeout 3
- int styleable FontFamily_fontProviderPackage 4
- int styleable FontFamily_fontProviderQuery 5
- int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010533, 0x7f040099, 0x7f0400a1, 0x7f0400a2 }
- int styleable FontFamilyFont_android_font 0
- int styleable FontFamilyFont_android_fontStyle 1
- int styleable FontFamilyFont_android_fontWeight 2
- int styleable FontFamilyFont_font 3
- int styleable FontFamilyFont_fontStyle 4
- int styleable FontFamilyFont_fontWeight 5
- int[] styleable FrameView { 0x7f0400a4, 0x7f0400a5, 0x7f0400a6, 0x7f040107, 0x7f040109, 0x7f04010a, 0x7f04010b, 0x7f04010d, 0x7f040151 }
- int styleable FrameView_frame_color 0
- int styleable FrameView_frame_type 1
- int styleable FrameView_frame_width 2
- int styleable FrameView_scale_color 3
- int styleable FrameView_scale_rotation 4
- int styleable FrameView_scale_scale 5
- int styleable FrameView_scale_type 6
- int styleable FrameView_scale_width 7
- int styleable FrameView_tick_color 8
- int[] styleable IAspectRatioView { 0x7f04003b }
- int styleable IAspectRatioView_aspect_ratio 0
- int[] styleable IScaledView { 0x7f040108 }
- int styleable IScaledView_scale_mode 0
- int[] styleable ItemPicker { 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a }
- int styleable ItemPicker_ItemPickerCurrentItemValue 0
- int styleable ItemPicker_ItemPickerDecrementBackground 1
- int styleable ItemPicker_ItemPickerDecrementSrc 2
- int styleable ItemPicker_ItemPickerDisplayedValue 3
- int styleable ItemPicker_ItemPickerEditTextBackground 4
- int styleable ItemPicker_ItemPickerIncrementBackground 5
- int styleable ItemPicker_ItemPickerIncrementSrc 6
- int styleable ItemPicker_ItemPickerMaxItemValue 7
- int styleable ItemPicker_ItemPickerMinItemValue 8
- int styleable ItemPicker_ItemPickerSpeed 9
- int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f040080, 0x7f040082, 0x7f0400d5, 0x7f04011c }
- int styleable LinearLayoutCompat_android_baselineAligned 0
- int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1
- int styleable LinearLayoutCompat_android_gravity 2
- int styleable LinearLayoutCompat_android_orientation 3
- int styleable LinearLayoutCompat_android_weightSum 4
- int styleable LinearLayoutCompat_divider 5
- int styleable LinearLayoutCompat_dividerPadding 6
- int styleable LinearLayoutCompat_measureWithLargestChild 7
- int styleable LinearLayoutCompat_showDividers 8
- int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 }
- int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
- int styleable LinearLayoutCompat_Layout_android_layout_height 1
- int styleable LinearLayoutCompat_Layout_android_layout_weight 2
- int styleable LinearLayoutCompat_Layout_android_layout_width 3
- int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad }
- int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
- int styleable ListPopupWindow_android_dropDownVerticalOffset 1
- int[] styleable ListPreference { 0x10100b2, 0x10101f8, 0x7f040090, 0x7f040091 }
- int styleable ListPreference_android_entries 0
- int styleable ListPreference_android_entryValues 1
- int styleable ListPreference_entries 2
- int styleable ListPreference_entryValues 3
- int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 }
- int styleable MenuGroup_android_checkableBehavior 0
- int styleable MenuGroup_android_enabled 1
- int styleable MenuGroup_android_id 2
- int styleable MenuGroup_android_menuCategory 3
- int styleable MenuGroup_android_orderInCategory 4
- int styleable MenuGroup_android_visible 5
- int[] styleable MenuItem { 0x7f040019, 0x7f04002b, 0x7f04002c, 0x7f040038, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f040068, 0x7f0400b0, 0x7f0400b1, 0x7f0400dd, 0x7f04011b, 0x7f040162 }
- int styleable MenuItem_actionLayout 0
- int styleable MenuItem_actionProviderClass 1
- int styleable MenuItem_actionViewClass 2
- int styleable MenuItem_alphabeticModifiers 3
- int styleable MenuItem_android_alphabeticShortcut 4
- int styleable MenuItem_android_checkable 5
- int styleable MenuItem_android_checked 6
- int styleable MenuItem_android_enabled 7
- int styleable MenuItem_android_icon 8
- int styleable MenuItem_android_id 9
- int styleable MenuItem_android_menuCategory 10
- int styleable MenuItem_android_numericShortcut 11
- int styleable MenuItem_android_onClick 12
- int styleable MenuItem_android_orderInCategory 13
- int styleable MenuItem_android_title 14
- int styleable MenuItem_android_titleCondensed 15
- int styleable MenuItem_android_visible 16
- int styleable MenuItem_contentDescription 17
- int styleable MenuItem_iconTint 18
- int styleable MenuItem_iconTintMode 19
- int styleable MenuItem_numericModifiers 20
- int styleable MenuItem_showAsAction 21
- int styleable MenuItem_tooltipText 22
- int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f0400fc, 0x7f04012b }
- int styleable MenuView_android_headerBackground 0
- int styleable MenuView_android_horizontalDivider 1
- int styleable MenuView_android_itemBackground 2
- int styleable MenuView_android_itemIconDisabledAlpha 3
- int styleable MenuView_android_itemTextAppearance 4
- int styleable MenuView_android_verticalDivider 5
- int styleable MenuView_android_windowAnimationStyle 6
- int styleable MenuView_preserveIconSpacing 7
- int styleable MenuView_subMenuArrow 8
- int[] styleable MultiSelectListPreference { 0x10100b2, 0x10101f8, 0x7f040090, 0x7f040091 }
- int styleable MultiSelectListPreference_android_entries 0
- int styleable MultiSelectListPreference_android_entryValues 1
- int styleable MultiSelectListPreference_entries 2
- int styleable MultiSelectListPreference_entryValues 3
- int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f0400e1 }
- int styleable PopupWindow_android_popupAnimationStyle 0
- int styleable PopupWindow_android_popupBackground 1
- int styleable PopupWindow_overlapAnchor 2
- int[] styleable PopupWindowBackgroundState { 0x7f040129 }
- int styleable PopupWindowBackgroundState_state_above_anchor 0
- int[] styleable Preference { 0x7f040033, 0x7f040035, 0x10101ed, 0x10101ec, 0x101000e, 0x10102e3, 0x1010002, 0x1010561, 0x10101e8, 0x10100f2, 0x10101ea, 0x101000d, 0x10101e6, 0x10101ee, 0x101055c, 0x10101e9, 0x10101e1, 0x10101eb, 0x7f040073, 0x7f040075, 0x7f04008f, 0x7f0400a3, 0x7f0400ae, 0x7f0400af, 0x7f0400b9, 0x7f0400bb, 0x7f0400de, 0x7f0400e9, 0x7f040117, 0x7f04011a, 0x7f040121, 0x7f040133, 0x7f040154, 0x7f040169 }
- int styleable Preference_allowDividerAbove 0
- int styleable Preference_allowDividerBelow 1
- int styleable Preference_android_defaultValue 2
- int styleable Preference_android_dependency 3
- int styleable Preference_android_enabled 4
- int styleable Preference_android_fragment 5
- int styleable Preference_android_icon 6
- int styleable Preference_android_iconSpaceReserved 7
- int styleable Preference_android_key 8
- int styleable Preference_android_layout 9
- int styleable Preference_android_order 10
- int styleable Preference_android_persistent 11
- int styleable Preference_android_selectable 12
- int styleable Preference_android_shouldDisableView 13
- int styleable Preference_android_singleLineTitle 14
- int styleable Preference_android_summary 15
- int styleable Preference_android_title 16
- int styleable Preference_android_widgetLayout 17
- int styleable Preference_defaultValue 18
- int styleable Preference_dependency 19
- int styleable Preference_enabled 20
- int styleable Preference_fragment 21
- int styleable Preference_icon 22
- int styleable Preference_iconSpaceReserved 23
- int styleable Preference_key 24
- int styleable Preference_layout 25
- int styleable Preference_order 26
- int styleable Preference_persistent 27
- int styleable Preference_selectable 28
- int styleable Preference_shouldDisableView 29
- int styleable Preference_singleLineTitle 30
- int styleable Preference_summary 31
- int styleable Preference_title 32
- int styleable Preference_widgetLayout 33
- int[] styleable PreferenceFragment { 0x7f040034, 0x1010129, 0x101012a, 0x10100f2 }
- int styleable PreferenceFragment_allowDividerAfterLastItem 0
- int styleable PreferenceFragment_android_divider 1
- int styleable PreferenceFragment_android_dividerHeight 2
- int styleable PreferenceFragment_android_layout 3
- int[] styleable PreferenceFragmentCompat { 0x7f040034, 0x1010129, 0x101012a, 0x10100f2 }
- int styleable PreferenceFragmentCompat_allowDividerAfterLastItem 0
- int styleable PreferenceFragmentCompat_android_divider 1
- int styleable PreferenceFragmentCompat_android_dividerHeight 2
- int styleable PreferenceFragmentCompat_android_layout 3
- int[] styleable PreferenceGroup { 0x10101e7, 0x7f0400b6, 0x7f0400df }
- int styleable PreferenceGroup_android_orderingFromXml 0
- int styleable PreferenceGroup_initialExpandedChildrenCount 1
- int styleable PreferenceGroup_orderingFromXml 2
- int[] styleable PreferenceImageView { 0x1010120, 0x101011f, 0x7f0400d2, 0x7f0400d3 }
- int styleable PreferenceImageView_android_maxHeight 0
- int styleable PreferenceImageView_android_maxWidth 1
- int styleable PreferenceImageView_maxHeight 2
- int styleable PreferenceImageView_maxWidth 3
- int[] styleable PreferenceTheme { 0x7f040055, 0x7f040079, 0x7f040088, 0x7f04008b, 0x7f0400ee, 0x7f0400ef, 0x7f0400f0, 0x7f0400f1, 0x7f0400f2, 0x7f0400f3, 0x7f0400f4, 0x7f0400f5, 0x7f0400f6, 0x7f0400f7, 0x7f0400f8, 0x7f0400f9, 0x7f0400fa, 0x7f0400fb, 0x7f040106, 0x7f040112, 0x7f040138, 0x7f040139, 0x7f040174 }
- int styleable PreferenceTheme_checkBoxPreferenceStyle 0
- int styleable PreferenceTheme_dialogPreferenceStyle 1
- int styleable PreferenceTheme_dropdownPreferenceStyle 2
- int styleable PreferenceTheme_editTextPreferenceStyle 3
- int styleable PreferenceTheme_preferenceActivityStyle 4
- int styleable PreferenceTheme_preferenceCategoryStyle 5
- int styleable PreferenceTheme_preferenceFragmentCompatStyle 6
- int styleable PreferenceTheme_preferenceFragmentListStyle 7
- int styleable PreferenceTheme_preferenceFragmentPaddingSide 8
- int styleable PreferenceTheme_preferenceFragmentStyle 9
- int styleable PreferenceTheme_preferenceHeaderPanelStyle 10
- int styleable PreferenceTheme_preferenceInformationStyle 11
- int styleable PreferenceTheme_preferenceLayoutChild 12
- int styleable PreferenceTheme_preferenceListStyle 13
- int styleable PreferenceTheme_preferencePanelStyle 14
- int styleable PreferenceTheme_preferenceScreenStyle 15
- int styleable PreferenceTheme_preferenceStyle 16
- int styleable PreferenceTheme_preferenceTheme 17
- int styleable PreferenceTheme_ringtonePreferenceStyle 18
- int styleable PreferenceTheme_seekBarPreferenceStyle 19
- int styleable PreferenceTheme_switchPreferenceCompatStyle 20
- int styleable PreferenceTheme_switchPreferenceStyle 21
- int styleable PreferenceTheme_yesNoPreferenceStyle 22
- int[] styleable RecycleListView { 0x7f0400e2, 0x7f0400e5 }
- int styleable RecycleListView_paddingBottomNoButtons 0
- int styleable RecycleListView_paddingTopNoTitle 1
- int[] styleable RecycleViewWithEmptyView { 0x7f0400c4 }
- int styleable RecycleViewWithEmptyView_listDivider 0
- int[] styleable RecyclerView { 0x10100f1, 0x10100c4, 0x7f040093, 0x7f040094, 0x7f040095, 0x7f040096, 0x7f040097, 0x7f0400bc, 0x7f040105, 0x7f040122, 0x7f040128 }
- int styleable RecyclerView_android_descendantFocusability 0
- int styleable RecyclerView_android_orientation 1
- int styleable RecyclerView_fastScrollEnabled 2
- int styleable RecyclerView_fastScrollHorizontalThumbDrawable 3
- int styleable RecyclerView_fastScrollHorizontalTrackDrawable 4
- int styleable RecyclerView_fastScrollVerticalThumbDrawable 5
- int styleable RecyclerView_fastScrollVerticalTrackDrawable 6
- int styleable RecyclerView_layoutManager 7
- int styleable RecyclerView_reverseLayout 8
- int styleable RecyclerView_spanCount 9
- int styleable RecyclerView_stackFromEnd 10
- int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f040058, 0x7f040067, 0x7f040072, 0x7f0400a8, 0x7f0400b2, 0x7f0400bb, 0x7f0400ff, 0x7f040100, 0x7f04010e, 0x7f04010f, 0x7f04012d, 0x7f040132, 0x7f040168 }
- int styleable SearchView_android_focusable 0
- int styleable SearchView_android_imeOptions 1
- int styleable SearchView_android_inputType 2
- int styleable SearchView_android_maxWidth 3
- int styleable SearchView_closeIcon 4
- int styleable SearchView_commitIcon 5
- int styleable SearchView_defaultQueryHint 6
- int styleable SearchView_goIcon 7
- int styleable SearchView_iconifiedByDefault 8
- int styleable SearchView_layout 9
- int styleable SearchView_queryBackground 10
- int styleable SearchView_queryHint 11
- int styleable SearchView_searchHintIcon 12
- int styleable SearchView_searchIcon 13
- int styleable SearchView_submitBackground 14
- int styleable SearchView_suggestionRowLayout 15
- int styleable SearchView_voiceIcon 16
- int[] styleable SeekBarPreference { 0x7f04002e, 0x10100f2, 0x1010136, 0x7f040074, 0x7f0400d4, 0x7f0400d6, 0x7f0400d7, 0x7f04010c, 0x7f040111, 0x7f040114, 0x7f040115, 0x7f040116, 0x7f04011d, 0x7f040166 }
- int styleable SeekBarPreference_adjustable 0
- int styleable SeekBarPreference_android_layout 1
- int styleable SeekBarPreference_android_max 2
- int styleable SeekBarPreference_default_value 3
- int styleable SeekBarPreference_max_value 4
- int styleable SeekBarPreference_min 5
- int styleable SeekBarPreference_min_value 6
- int styleable SeekBarPreference_scale_value 7
- int styleable SeekBarPreference_seekBarIncrement 8
- int styleable SeekBarPreference_seekbar_id 9
- int styleable SeekBarPreference_seekbar_label_id 10
- int styleable SeekBarPreference_seekbar_layout 11
- int styleable SeekBarPreference_showSeekBarValue 12
- int styleable SeekBarPreference_value_format 13
- int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f0400eb }
- int styleable Spinner_android_dropDownWidth 0
- int styleable Spinner_android_entries 1
- int styleable Spinner_android_popupBackground 2
- int styleable Spinner_android_prompt 3
- int styleable Spinner_popupTheme 4
- int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f04011e, 0x7f040126, 0x7f040136, 0x7f040137, 0x7f04013b, 0x7f04014b, 0x7f04014c, 0x7f04014d, 0x7f040163, 0x7f040164, 0x7f040165 }
- int styleable SwitchCompat_android_textOff 0
- int styleable SwitchCompat_android_textOn 1
- int styleable SwitchCompat_android_thumb 2
- int styleable SwitchCompat_showText 3
- int styleable SwitchCompat_splitTrack 4
- int styleable SwitchCompat_switchMinWidth 5
- int styleable SwitchCompat_switchPadding 6
- int styleable SwitchCompat_switchTextAppearance 7
- int styleable SwitchCompat_thumbTextPadding 8
- int styleable SwitchCompat_thumbTint 9
- int styleable SwitchCompat_thumbTintMode 10
- int styleable SwitchCompat_track 11
- int styleable SwitchCompat_trackTint 12
- int styleable SwitchCompat_trackTintMode 13
- int[] styleable SwitchPreference { 0x10101f1, 0x10101f0, 0x10101ef, 0x101036c, 0x101036b, 0x7f04007d, 0x7f040134, 0x7f040135, 0x7f04013c, 0x7f04013d }
- int styleable SwitchPreference_android_disableDependentsState 0
- int styleable SwitchPreference_android_summaryOff 1
- int styleable SwitchPreference_android_summaryOn 2
- int styleable SwitchPreference_android_switchTextOff 3
- int styleable SwitchPreference_android_switchTextOn 4
- int styleable SwitchPreference_disableDependentsState 5
- int styleable SwitchPreference_summaryOff 6
- int styleable SwitchPreference_summaryOn 7
- int styleable SwitchPreference_switchTextOff 8
- int styleable SwitchPreference_switchTextOn 9
- int[] styleable SwitchPreferenceCompat { 0x10101f1, 0x10101f0, 0x10101ef, 0x101036c, 0x101036b, 0x7f04007d, 0x7f040134, 0x7f040135, 0x7f04013c, 0x7f04013d }
- int styleable SwitchPreferenceCompat_android_disableDependentsState 0
- int styleable SwitchPreferenceCompat_android_summaryOff 1
- int styleable SwitchPreferenceCompat_android_summaryOn 2
- int styleable SwitchPreferenceCompat_android_switchTextOff 3
- int styleable SwitchPreferenceCompat_android_switchTextOn 4
- int styleable SwitchPreferenceCompat_disableDependentsState 5
- int styleable SwitchPreferenceCompat_summaryOff 6
- int styleable SwitchPreferenceCompat_summaryOn 7
- int styleable SwitchPreferenceCompat_switchTextOff 8
- int styleable SwitchPreferenceCompat_switchTextOn 9
- int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010095, 0x1010097, 0x1010096, 0x7f04009a, 0x7f04013e }
- int styleable TextAppearance_android_fontFamily 0
- int styleable TextAppearance_android_shadowColor 1
- int styleable TextAppearance_android_shadowDx 2
- int styleable TextAppearance_android_shadowDy 3
- int styleable TextAppearance_android_shadowRadius 4
- int styleable TextAppearance_android_textColor 5
- int styleable TextAppearance_android_textColorHint 6
- int styleable TextAppearance_android_textColorLink 7
- int styleable TextAppearance_android_textSize 8
- int styleable TextAppearance_android_textStyle 9
- int styleable TextAppearance_android_typeface 10
- int styleable TextAppearance_fontFamily 11
- int styleable TextAppearance_textAllCaps 12
- int[] styleable TimePicker { 0x7f04000b }
- int styleable TimePicker_TimePickerDefaultValue 0
- int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f04004e, 0x7f04005a, 0x7f04005b, 0x7f040069, 0x7f04006a, 0x7f04006b, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d9, 0x7f0400da, 0x7f0400eb, 0x7f04012e, 0x7f04012f, 0x7f040130, 0x7f040154, 0x7f040155, 0x7f040156, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f04015a, 0x7f04015b, 0x7f04015c }
- int styleable Toolbar_android_gravity 0
- int styleable Toolbar_android_minHeight 1
- int styleable Toolbar_buttonGravity 2
- int styleable Toolbar_collapseContentDescription 3
- int styleable Toolbar_collapseIcon 4
- int styleable Toolbar_contentInsetEnd 5
- int styleable Toolbar_contentInsetEndWithActions 6
- int styleable Toolbar_contentInsetLeft 7
- int styleable Toolbar_contentInsetRight 8
- int styleable Toolbar_contentInsetStart 9
- int styleable Toolbar_contentInsetStartWithNavigation 10
- int styleable Toolbar_logo 11
- int styleable Toolbar_logoDescription 12
- int styleable Toolbar_maxButtonHeight 13
- int styleable Toolbar_navigationContentDescription 14
- int styleable Toolbar_navigationIcon 15
- int styleable Toolbar_popupTheme 16
- int styleable Toolbar_subtitle 17
- int styleable Toolbar_subtitleTextAppearance 18
- int styleable Toolbar_subtitleTextColor 19
- int styleable Toolbar_title 20
- int styleable Toolbar_titleMargin 21
- int styleable Toolbar_titleMarginBottom 22
- int styleable Toolbar_titleMarginEnd 23
- int styleable Toolbar_titleMarginStart 24
- int styleable Toolbar_titleMarginTop 25
- int styleable Toolbar_titleMargins 26
- int styleable Toolbar_titleTextAppearance 27
- int styleable Toolbar_titleTextColor 28
- int[] styleable TwoPainViewGroup { 0x7f04007e, 0x7f04008e, 0x7f040098, 0x7f0400e0, 0x7f04012c }
- int styleable TwoPainViewGroup_displayMode 0
- int styleable TwoPainViewGroup_enableSubWindow 1
- int styleable TwoPainViewGroup_flipChildPos 2
- int styleable TwoPainViewGroup_orientation 3
- int styleable TwoPainViewGroup_subWindowScale 4
- int[] styleable View { 0x10100da, 0x1010000, 0x7f0400e3, 0x7f0400e4, 0x7f040149 }
- int styleable View_android_focusable 0
- int styleable View_android_theme 1
- int styleable View_paddingEnd 2
- int styleable View_paddingStart 3
- int styleable View_theme 4
- int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f040045, 0x7f040046 }
- int styleable ViewBackgroundHelper_android_background 0
- int styleable ViewBackgroundHelper_backgroundTint 1
- int styleable ViewBackgroundHelper_backgroundTintMode 2
- int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 }
- int styleable ViewStubCompat_android_id 0
- int styleable ViewStubCompat_android_inflatedId 1
- int styleable ViewStubCompat_android_layout 2
- int[] styleable ZoomAspectScaledTextureView { 0x7f04003b, 0x7f0400a9, 0x7f040108 }
- int styleable ZoomAspectScaledTextureView_aspect_ratio 0
- int styleable ZoomAspectScaledTextureView_handle_touch_event 1
- int styleable ZoomAspectScaledTextureView_scale_mode 2
- int xml device_filter 0x7f180001
|