diff --git a/README.md b/README.md index 5729f02..3e8b763 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -YouTubeExtractor +**YouTubeExtractor** A Youtube urls extractor for java & android for streaming and downloading purpose. @@ -12,12 +12,12 @@ I made this on my Android Device using AIDE(IDE), So i cant update gradle, so do - Extracts Live Videos Urls(hls) - Extracts video info(title,author,description,view,etc) - Extracts Age restricted videos (Uses Cookie from a Google account) +- Extracts YouTube Video Captions -Usage +### Usage -Copy the classes or compile project. +`Copy the classes or compile project.` -.jar will be available soon ## Dependencies Used - Gson @@ -27,15 +27,26 @@ Copy the classes or compile project. Usage ```Java -new YoutubeStreamExtractor(new YoutubeStreamExtractor.ExtractorListner(){ - @Override - public void onExtractionDone(List adativeStream, final List muxedStream, YoutubeMeta meta) { - +new YoutubeStreamExtractor(new YoutubeStreamExtractor.ExtractorListner(){ + @Override + public void onExtractionDone(List adativeStream, final List muxedStream,List subtitles, YoutubeMeta meta) { + //url to get subtitle + String subUrl=subtitles.get(0).getBaseUrl(); + for (YTMedia media:adativeStream) { + if(media.isVideo()){ + //is video + }else{ + //is audio + } + } } @Override - public void onExtractionGoesWrong(final ExtractorException e) { + public void onExtractionGoesWrong(final ExtractorException e) { + Toast.makeText(getApplicationContext(), e.getMessage(), Toast.LENGTH_LONG).show(); } - }).Extract(YOUTUBE_ID / LINK); + }).useDefaultLogin().Extract(URL/YOUTUBE_ID); + //use .useDefaultLogin() to extract age restricted videos + ``` diff --git a/YoutubeExtractor/app/build/bin/app.apk b/YoutubeExtractor/app/build/bin/app.apk index 003d54b..044a506 100644 Binary files a/YoutubeExtractor/app/build/bin/app.apk and b/YoutubeExtractor/app/build/bin/app.apk differ diff --git a/YoutubeExtractor/app/build/bin/classes.dex b/YoutubeExtractor/app/build/bin/classes.dex index 4220d8b..3da2f91 100644 Binary files a/YoutubeExtractor/app/build/bin/classes.dex and b/YoutubeExtractor/app/build/bin/classes.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$attr.dex b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$attr.dex index 87eab84..2f59be2 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$attr.dex and b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$attr.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$bool.dex b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$bool.dex index 63e73e4..9a304d6 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$bool.dex and b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$bool.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$color.dex b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$color.dex index 841301f..6ee46b6 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$color.dex and b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$color.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$dimen.dex b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$dimen.dex index 5a9e319..32af109 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$dimen.dex and b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$dimen.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$integer.dex b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$integer.dex index 7bd8c76..4bc8814 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$integer.dex and b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$integer.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$string.dex b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$string.dex index eddd45d..6fcab2c 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$string.dex and b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$string.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$style.dex b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$style.dex index db2ded1..9902994 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$style.dex and b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$style.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$styleable.dex b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$styleable.dex index ad4378e..02fbaf2 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$styleable.dex and b/YoutubeExtractor/app/build/bin/classesrelease/android/support/v7/appcompat/R$styleable.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$anim.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$anim.dex new file mode 100644 index 0000000..403a433 Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$anim.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$attr.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$attr.dex new file mode 100644 index 0000000..d8905d4 Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$attr.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$bool.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$bool.dex new file mode 100644 index 0000000..b780714 Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$bool.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$color.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$color.dex new file mode 100644 index 0000000..3f312b6 Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$color.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$dimen.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$dimen.dex new file mode 100644 index 0000000..78f2134 Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$dimen.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$drawable.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$drawable.dex new file mode 100644 index 0000000..ba33f8b Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$drawable.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$id.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$id.dex new file mode 100644 index 0000000..52eee7c Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$id.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$integer.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$integer.dex new file mode 100644 index 0000000..50743c3 Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$integer.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$layout.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$layout.dex new file mode 100644 index 0000000..b136468 Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$layout.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$string.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$string.dex new file mode 100644 index 0000000..5e12d00 Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$string.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$style.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$style.dex new file mode 100644 index 0000000..cb0a33c Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$style.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$styleable.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$styleable.dex new file mode 100644 index 0000000..f466d6b Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R$styleable.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R.dex new file mode 100644 index 0000000..dbb36c7 Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/avery/subtitle/R.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000002$100000001.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000002$100000001.dex index d30c37e..aee2ed6 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000002$100000001.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000002$100000001.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000002.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000002.dex index 82ce2ce..51d5eb7 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000002.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000002.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000003$100000002$100000001.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000003$100000002$100000001.dex new file mode 100644 index 0000000..5d9e59e Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000003$100000002$100000001.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000003$100000002.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000003$100000002.dex new file mode 100644 index 0000000..5412816 Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000003$100000002.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000003.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000003.dex index 986c8a2..4a47f76 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000003.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000003.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000004.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000004.dex new file mode 100644 index 0000000..9502c2c Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity$100000004.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity.dex index ce9cb43..7ac6e4b 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/MainActivity.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$attr.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$attr.dex index 631a3db..c469114 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$attr.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$attr.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$bool.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$bool.dex index 3ec64b0..e0b003e 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$bool.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$bool.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$color.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$color.dex index abd9f9f..88e244f 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$color.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$color.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$dimen.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$dimen.dex index cf57906..9a9ca03 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$dimen.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$dimen.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$integer.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$integer.dex index ced4d12..cc2433a 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$integer.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$integer.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$string.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$string.dex index 799576f..14154f0 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$string.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$string.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$style.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$style.dex index 6460057..90cf96a 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$style.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$style.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$styleable.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$styleable.dex index 3012877..32a00a7 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$styleable.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/R$styleable.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/YoutubeStreamExtractor$ExtractorListner.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/YoutubeStreamExtractor$ExtractorListner.dex index 1f97f7c..5ea73af 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/YoutubeStreamExtractor$ExtractorListner.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/YoutubeStreamExtractor$ExtractorListner.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/YoutubeStreamExtractor.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/YoutubeStreamExtractor.dex index 5e592fa..49ca3ab 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/YoutubeStreamExtractor.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/YoutubeStreamExtractor.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/PlayerResponse$Captions$PlayerCaptionsTracklistRenderer.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/PlayerResponse$Captions$PlayerCaptionsTracklistRenderer.dex new file mode 100644 index 0000000..b78e9e4 Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/PlayerResponse$Captions$PlayerCaptionsTracklistRenderer.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/PlayerResponse$Captions.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/PlayerResponse$Captions.dex new file mode 100644 index 0000000..9193850 Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/PlayerResponse$Captions.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/PlayerResponse$PlayabilityStatus.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/PlayerResponse$PlayabilityStatus.dex index d53c5de..dfce293 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/PlayerResponse$PlayabilityStatus.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/PlayerResponse$PlayabilityStatus.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/PlayerResponse.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/PlayerResponse.dex index cda9287..dfffbe0 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/PlayerResponse.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/PlayerResponse.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/YTMedia.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/YTMedia.dex index 13eb8bb..51e6532 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/YTMedia.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/YTMedia.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/YTSubtitles$SubtitleName.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/YTSubtitles$SubtitleName.dex new file mode 100644 index 0000000..cad2142 Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/YTSubtitles$SubtitleName.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/YTSubtitles.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/YTSubtitles.dex new file mode 100644 index 0000000..7c101ca Binary files /dev/null and b/YoutubeExtractor/app/build/bin/classesrelease/com/naveed/ytextractor/model/YTSubtitles.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$attr.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$attr.dex index f1fce7c..82f9b8f 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$attr.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$attr.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$bool.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$bool.dex index 8e9d6d0..5ff8b07 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$bool.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$bool.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$color.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$color.dex index 6f8efbd..6799b8f 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$color.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$color.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$dimen.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$dimen.dex index 3295eac..e4bad39 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$dimen.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$dimen.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$integer.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$integer.dex index e124c45..30488da 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$integer.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$integer.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$string.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$string.dex index 5b79419..ab10015 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$string.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$string.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$style.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$style.dex index 30a6ce1..7691377 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$style.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$style.dex differ diff --git a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$styleable.dex b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$styleable.dex index f8a0c46..1654905 100644 Binary files a/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$styleable.dex and b/YoutubeExtractor/app/build/bin/classesrelease/com/universalvideoview/R$styleable.dex differ diff --git a/YoutubeExtractor/app/build/bin/resources.ap_ b/YoutubeExtractor/app/build/bin/resources.ap_ index 5a69a4c..651a628 100644 Binary files a/YoutubeExtractor/app/build/bin/resources.ap_ and b/YoutubeExtractor/app/build/bin/resources.ap_ differ diff --git a/YoutubeExtractor/app/build/gen/android/support/v7/appcompat/R.java b/YoutubeExtractor/app/build/gen/android/support/v7/appcompat/R.java index f8fa1ca..222505d 100644 --- a/YoutubeExtractor/app/build/gen/android/support/v7/appcompat/R.java +++ b/YoutubeExtractor/app/build/gen/android/support/v7/appcompat/R.java @@ -24,15 +24,15 @@ public static final class attr { /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarDivider=0x7f010062; + public static final int actionBarDivider=0x7f010065; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarItemBackground=0x7f010063; + public static final int actionBarItemBackground=0x7f010066; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarPopupTheme=0x7f01005c; + public static final int actionBarPopupTheme=0x7f01005f; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -50,117 +50,117 @@ theme attribute (in the form wrap_content0 */ - public static final int actionBarSize=0x7f010061; + public static final int actionBarSize=0x7f010064; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarSplitStyle=0x7f01005e; + public static final int actionBarSplitStyle=0x7f010061; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarStyle=0x7f01005d; + public static final int actionBarStyle=0x7f010060; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarTabBarStyle=0x7f010058; + public static final int actionBarTabBarStyle=0x7f01005b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarTabStyle=0x7f010057; + public static final int actionBarTabStyle=0x7f01005a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarTabTextStyle=0x7f010059; + public static final int actionBarTabTextStyle=0x7f01005c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarTheme=0x7f01005f; + public static final int actionBarTheme=0x7f010062; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarWidgetTheme=0x7f010060; + public static final int actionBarWidgetTheme=0x7f010063; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionButtonStyle=0x7f01007c; + public static final int actionButtonStyle=0x7f01007f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionDropDownStyle=0x7f010078; + public static final int actionDropDownStyle=0x7f01007b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionLayout=0x7f010033; + public static final int actionLayout=0x7f010036; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionMenuTextAppearance=0x7f010064; + public static final int actionMenuTextAppearance=0x7f010067; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int actionMenuTextColor=0x7f010065; + public static final int actionMenuTextColor=0x7f010068; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeBackground=0x7f010068; + public static final int actionModeBackground=0x7f01006b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeCloseButtonStyle=0x7f010067; + public static final int actionModeCloseButtonStyle=0x7f01006a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeCloseDrawable=0x7f01006a; + public static final int actionModeCloseDrawable=0x7f01006d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeCopyDrawable=0x7f01006c; + public static final int actionModeCopyDrawable=0x7f01006f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeCutDrawable=0x7f01006b; + public static final int actionModeCutDrawable=0x7f01006e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeFindDrawable=0x7f010070; + public static final int actionModeFindDrawable=0x7f010073; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModePasteDrawable=0x7f01006d; + public static final int actionModePasteDrawable=0x7f010070; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModePopupWindowStyle=0x7f010072; + public static final int actionModePopupWindowStyle=0x7f010075; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeSelectAllDrawable=0x7f01006e; + public static final int actionModeSelectAllDrawable=0x7f010071; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeShareDrawable=0x7f01006f; + public static final int actionModeShareDrawable=0x7f010072; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeSplitBackground=0x7f010069; + public static final int actionModeSplitBackground=0x7f01006c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeStyle=0x7f010066; + public static final int actionModeStyle=0x7f010069; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeWebSearchDrawable=0x7f010071; + public static final int actionModeWebSearchDrawable=0x7f010074; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionOverflowButtonStyle=0x7f01005a; + public static final int actionOverflowButtonStyle=0x7f01005d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionOverflowMenuStyle=0x7f01005b; + public static final int actionOverflowMenuStyle=0x7f01005e; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -168,7 +168,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int actionProviderClass=0x7f010035; + public static final int actionProviderClass=0x7f010038; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -176,15 +176,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int actionViewClass=0x7f010034; + public static final int actionViewClass=0x7f010037; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int activityChooserViewStyle=0x7f010084; + public static final int activityChooserViewStyle=0x7f010087; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int alertDialogButtonGroupStyle=0x7f0100a6; + public static final int alertDialogButtonGroupStyle=0x7f0100a9; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -192,15 +192,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int alertDialogCenterButtons=0x7f0100a7; + public static final int alertDialogCenterButtons=0x7f0100aa; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int alertDialogStyle=0x7f0100a5; + public static final int alertDialogStyle=0x7f0100a8; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int alertDialogTheme=0x7f0100a8; + public static final int alertDialogTheme=0x7f0100ab; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -210,7 +210,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int arrowHeadLength=0x7f01002b; + public static final int arrowHeadLength=0x7f01002e; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -220,27 +220,27 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int arrowShaftLength=0x7f01002c; + public static final int arrowShaftLength=0x7f01002f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int autoCompleteTextViewStyle=0x7f0100ad; + public static final int autoCompleteTextViewStyle=0x7f0100b0; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int background=0x7f01000c; + public static final int background=0x7f01000f; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int backgroundSplit=0x7f01000e; + public static final int backgroundSplit=0x7f010011; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int backgroundStacked=0x7f01000d; + public static final int backgroundStacked=0x7f010010; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -249,7 +249,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int backgroundTint=0x7f0100c9; + public static final int backgroundTint=0x7f0100cc; /**

Must be one of the following constant values.

@@ -263,7 +263,7 @@ theme attribute (in the form
screen15
*/ - public static final int backgroundTintMode=0x7f0100ca; + public static final int backgroundTintMode=0x7f0100cd; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -273,43 +273,43 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int barLength=0x7f01002d; + public static final int barLength=0x7f010030; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int borderlessButtonStyle=0x7f010081; + public static final int borderlessButtonStyle=0x7f010084; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarButtonStyle=0x7f01007e; + public static final int buttonBarButtonStyle=0x7f010081; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarNegativeButtonStyle=0x7f0100ab; + public static final int buttonBarNegativeButtonStyle=0x7f0100ae; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarNeutralButtonStyle=0x7f0100ac; + public static final int buttonBarNeutralButtonStyle=0x7f0100af; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarPositiveButtonStyle=0x7f0100aa; + public static final int buttonBarPositiveButtonStyle=0x7f0100ad; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarStyle=0x7f01007d; + public static final int buttonBarStyle=0x7f010080; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonPanelSideLayout=0x7f01001f; + public static final int buttonPanelSideLayout=0x7f010022; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonStyle=0x7f0100ae; + public static final int buttonStyle=0x7f0100b1; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonStyleSmall=0x7f0100af; + public static final int buttonStyleSmall=0x7f0100b2; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -318,7 +318,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int buttonTint=0x7f010025; + public static final int buttonTint=0x7f010028; /**

Must be one of the following constant values.

@@ -332,23 +332,23 @@ theme attribute (in the form
screen15
*/ - public static final int buttonTintMode=0x7f010026; + public static final int buttonTintMode=0x7f010029; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int checkboxStyle=0x7f0100b0; + public static final int checkboxStyle=0x7f0100b3; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int checkedTextViewStyle=0x7f0100b1; + public static final int checkedTextViewStyle=0x7f0100b4; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int closeIcon=0x7f01003d; + public static final int closeIcon=0x7f010040; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int closeItemLayout=0x7f01001c; + public static final int closeItemLayout=0x7f01001f; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -356,11 +356,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int collapseContentDescription=0x7f0100c0; + public static final int collapseContentDescription=0x7f0100c3; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int collapseIcon=0x7f0100bf; + public static final int collapseIcon=0x7f0100c2; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -369,7 +369,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int color=0x7f010027; + public static final int color=0x7f01002a; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -378,7 +378,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorAccent=0x7f01009e; + public static final int colorAccent=0x7f0100a1; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -387,7 +387,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorButtonNormal=0x7f0100a2; + public static final int colorButtonNormal=0x7f0100a5; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -396,7 +396,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorControlActivated=0x7f0100a0; + public static final int colorControlActivated=0x7f0100a3; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -405,7 +405,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorControlHighlight=0x7f0100a1; + public static final int colorControlHighlight=0x7f0100a4; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -414,7 +414,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorControlNormal=0x7f01009f; + public static final int colorControlNormal=0x7f0100a2; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -423,7 +423,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorPrimary=0x7f01009c; + public static final int colorPrimary=0x7f01009f; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -432,7 +432,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorPrimaryDark=0x7f01009d; + public static final int colorPrimaryDark=0x7f0100a0; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -441,11 +441,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorSwitchThumbNormal=0x7f0100a3; + public static final int colorSwitchThumbNormal=0x7f0100a6; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int commitIcon=0x7f010042; + public static final int commitIcon=0x7f010045; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -455,7 +455,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int contentInsetEnd=0x7f010017; + public static final int contentInsetEnd=0x7f01001a; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -465,7 +465,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int contentInsetLeft=0x7f010018; + public static final int contentInsetLeft=0x7f01001b; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -475,7 +475,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int contentInsetRight=0x7f010019; + public static final int contentInsetRight=0x7f01001c; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -485,15 +485,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int contentInsetStart=0x7f010016; + public static final int contentInsetStart=0x7f010019; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int controlBackground=0x7f0100a4; + public static final int controlBackground=0x7f0100a7; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int customNavigationLayout=0x7f01000f; + public static final int customNavigationLayout=0x7f010012; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -501,7 +501,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int defaultQueryHint=0x7f01003c; + public static final int defaultQueryHint=0x7f01003f; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -511,11 +511,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int dialogPreferredPadding=0x7f010076; + public static final int dialogPreferredPadding=0x7f010079; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int dialogTheme=0x7f010075; + public static final int dialogTheme=0x7f010078; /**

Must be one or more (separated by '|') of the following constant values.

@@ -531,15 +531,15 @@ theme attribute (in the form
disableHome0x20
*/ - public static final int displayOptions=0x7f010005; + public static final int displayOptions=0x7f010008; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int divider=0x7f01000b; + public static final int divider=0x7f01000e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int dividerHorizontal=0x7f010083; + public static final int dividerHorizontal=0x7f010086; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -549,11 +549,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int dividerPadding=0x7f010031; + public static final int dividerPadding=0x7f010034; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int dividerVertical=0x7f010082; + public static final int dividerVertical=0x7f010085; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -563,15 +563,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int drawableSize=0x7f010029; + public static final int drawableSize=0x7f01002c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int drawerArrowStyle=0x7f010000; + public static final int drawerArrowStyle=0x7f010003; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int dropDownListViewStyle=0x7f010094; + public static final int dropDownListViewStyle=0x7f010097; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -581,21 +581,21 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int dropdownListPreferredItemHeight=0x7f010079; + public static final int dropdownListPreferredItemHeight=0x7f01007c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int editTextBackground=0x7f01008a; + public static final int editTextBackground=0x7f01008d; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int editTextColor=0x7f010089; + public static final int editTextColor=0x7f01008c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int editTextStyle=0x7f0100b2; + public static final int editTextStyle=0x7f0100b5; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -605,11 +605,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int elevation=0x7f01001a; + public static final int elevation=0x7f01001d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int expandActivityOverflowButtonDrawable=0x7f01001e; + public static final int expandActivityOverflowButtonDrawable=0x7f010021; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -619,11 +619,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int gapBetweenBars=0x7f01002a; + public static final int gapBetweenBars=0x7f01002d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int goIcon=0x7f01003e; + public static final int goIcon=0x7f010041; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -633,7 +633,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int height=0x7f010001; + public static final int height=0x7f010004; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -641,19 +641,19 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int hideOnContentScroll=0x7f010015; + public static final int hideOnContentScroll=0x7f010018; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int homeAsUpIndicator=0x7f01007b; + public static final int homeAsUpIndicator=0x7f01007e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int homeLayout=0x7f010010; + public static final int homeLayout=0x7f010013; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int icon=0x7f010009; + public static final int icon=0x7f01000c; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -661,11 +661,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int iconifiedByDefault=0x7f01003a; + public static final int iconifiedByDefault=0x7f01003d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int indeterminateProgressStyle=0x7f010012; + public static final int indeterminateProgressStyle=0x7f010015; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -673,7 +673,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int initialActivityCount=0x7f01001d; + public static final int initialActivityCount=0x7f010020; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -681,7 +681,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int isLightTheme=0x7f010002; + public static final int isLightTheme=0x7f010005; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -691,31 +691,31 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int itemPadding=0x7f010014; + public static final int itemPadding=0x7f010017; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int layout=0x7f010039; + public static final int layout=0x7f01003c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listChoiceBackgroundIndicator=0x7f01009b; + public static final int listChoiceBackgroundIndicator=0x7f01009e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listDividerAlertDialog=0x7f010077; + public static final int listDividerAlertDialog=0x7f01007a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listItemLayout=0x7f010023; + public static final int listItemLayout=0x7f010026; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listLayout=0x7f010020; + public static final int listLayout=0x7f010023; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listPopupWindowStyle=0x7f010095; + public static final int listPopupWindowStyle=0x7f010098; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -725,7 +725,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemHeight=0x7f01008f; + public static final int listPreferredItemHeight=0x7f010092; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -735,7 +735,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemHeightLarge=0x7f010091; + public static final int listPreferredItemHeightLarge=0x7f010094; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -745,7 +745,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemHeightSmall=0x7f010090; + public static final int listPreferredItemHeightSmall=0x7f010093; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -755,7 +755,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemPaddingLeft=0x7f010092; + public static final int listPreferredItemPaddingLeft=0x7f010095; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -765,11 +765,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemPaddingRight=0x7f010093; + public static final int listPreferredItemPaddingRight=0x7f010096; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int logo=0x7f01000a; + public static final int logo=0x7f01000d; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -777,7 +777,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int logoDescription=0x7f0100c3; + public static final int logoDescription=0x7f0100c6; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -787,7 +787,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int maxButtonHeight=0x7f0100be; + public static final int maxButtonHeight=0x7f0100c1; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -795,11 +795,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int measureWithLargestChild=0x7f01002f; + public static final int measureWithLargestChild=0x7f010032; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int multiChoiceItemLayout=0x7f010021; + public static final int multiChoiceItemLayout=0x7f010024; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -807,11 +807,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int navigationContentDescription=0x7f0100c2; + public static final int navigationContentDescription=0x7f0100c5; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int navigationIcon=0x7f0100c1; + public static final int navigationIcon=0x7f0100c4; /**

Must be one of the following constant values.

@@ -823,7 +823,7 @@ theme attribute (in the form
tabMode2
*/ - public static final int navigationMode=0x7f010004; + public static final int navigationMode=0x7f010007; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -831,7 +831,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int overlapAnchor=0x7f010037; + public static final int overlapAnchor=0x7f01003a; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -841,7 +841,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int paddingEnd=0x7f0100c7; + public static final int paddingEnd=0x7f0100ca; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -851,15 +851,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int paddingStart=0x7f0100c6; + public static final int paddingStart=0x7f0100c9; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int panelBackground=0x7f010098; + public static final int panelBackground=0x7f01009b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int panelMenuListTheme=0x7f01009a; + public static final int panelMenuListTheme=0x7f01009d; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -869,19 +869,19 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int panelMenuListWidth=0x7f010099; + public static final int panelMenuListWidth=0x7f01009c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int popupMenuStyle=0x7f010087; + public static final int popupMenuStyle=0x7f01008a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int popupTheme=0x7f01001b; + public static final int popupTheme=0x7f01001e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int popupWindowStyle=0x7f010088; + public static final int popupWindowStyle=0x7f01008b; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -889,7 +889,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int preserveIconSpacing=0x7f010036; + public static final int preserveIconSpacing=0x7f010039; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -899,15 +899,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int progressBarPadding=0x7f010013; + public static final int progressBarPadding=0x7f010016; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int progressBarStyle=0x7f010011; + public static final int progressBarStyle=0x7f010014; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int queryBackground=0x7f010044; + public static final int queryBackground=0x7f010047; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -915,35 +915,35 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int queryHint=0x7f01003b; + public static final int queryHint=0x7f01003e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int radioButtonStyle=0x7f0100b3; + public static final int radioButtonStyle=0x7f0100b6; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int ratingBarStyle=0x7f0100b4; + public static final int ratingBarStyle=0x7f0100b7; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int searchHintIcon=0x7f010040; + public static final int searchHintIcon=0x7f010043; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int searchIcon=0x7f01003f; + public static final int searchIcon=0x7f010042; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int searchViewStyle=0x7f01008e; + public static final int searchViewStyle=0x7f010091; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int selectableItemBackground=0x7f01007f; + public static final int selectableItemBackground=0x7f010082; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int selectableItemBackgroundBorderless=0x7f010080; + public static final int selectableItemBackgroundBorderless=0x7f010083; /**

Must be one or more (separated by '|') of the following constant values.

@@ -957,7 +957,7 @@ theme attribute (in the form
collapseActionView8
*/ - public static final int showAsAction=0x7f010032; + public static final int showAsAction=0x7f010035; /**

Must be one or more (separated by '|') of the following constant values.

@@ -970,7 +970,7 @@ theme attribute (in the form
end4
*/ - public static final int showDividers=0x7f010030; + public static final int showDividers=0x7f010033; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -978,11 +978,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int showText=0x7f01004c; + public static final int showText=0x7f01004f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int singleChoiceItemLayout=0x7f010022; + public static final int singleChoiceItemLayout=0x7f010025; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -990,15 +990,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int spinBars=0x7f010028; + public static final int spinBars=0x7f01002b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int spinnerDropDownItemStyle=0x7f01007a; + public static final int spinnerDropDownItemStyle=0x7f01007d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int spinnerStyle=0x7f0100b5; + public static final int spinnerStyle=0x7f0100b8; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1006,7 +1006,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int splitTrack=0x7f01004b; + public static final int splitTrack=0x7f01004e; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1014,11 +1014,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int state_above_anchor=0x7f010038; + public static final int state_above_anchor=0x7f01003b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int submitBackground=0x7f010045; + public static final int submitBackground=0x7f010048; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1026,11 +1026,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int subtitle=0x7f010006; + public static final int subtitle=0x7f010009; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int subtitleTextAppearance=0x7f0100b8; + public static final int subtitleTextAppearance=0x7f0100bb; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -1039,15 +1039,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int subtitleTextColor=0x7f0100c5; + public static final int subtitleTextColor=0x7f0100c8; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int subtitleTextStyle=0x7f010008; + public static final int subtitleTextStyle=0x7f01000b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int suggestionRowLayout=0x7f010043; + public static final int suggestionRowLayout=0x7f010046; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1057,7 +1057,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int switchMinWidth=0x7f010049; + public static final int switchMinWidth=0x7f01004c; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1067,60 +1067,60 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int switchPadding=0x7f01004a; + public static final int switchPadding=0x7f01004d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int switchStyle=0x7f0100b6; + public static final int switchStyle=0x7f0100b9; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int switchTextAppearance=0x7f010048; + public static final int switchTextAppearance=0x7f01004b; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a boolean value, either "true" or "false". */ - public static final int textAllCaps=0x7f010024; + public static final int textAllCaps=0x7f010027; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceLargePopupMenu=0x7f010073; + public static final int textAppearanceLargePopupMenu=0x7f010076; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceListItem=0x7f010096; + public static final int textAppearanceListItem=0x7f010099; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceListItemSmall=0x7f010097; + public static final int textAppearanceListItemSmall=0x7f01009a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceSearchResultSubtitle=0x7f01008c; + public static final int textAppearanceSearchResultSubtitle=0x7f01008f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceSearchResultTitle=0x7f01008b; + public static final int textAppearanceSearchResultTitle=0x7f01008e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceSmallPopupMenu=0x7f010074; + public static final int textAppearanceSmallPopupMenu=0x7f010077; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int textColorAlertDialogListItem=0x7f0100a9; + public static final int textColorAlertDialogListItem=0x7f0100ac; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int textColorSearchUrl=0x7f01008d; + public static final int textColorSearchUrl=0x7f010090; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int theme=0x7f0100c8; + public static final int theme=0x7f0100cb; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1130,7 +1130,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int thickness=0x7f01002e; + public static final int thickness=0x7f010031; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1140,7 +1140,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int thumbTextPadding=0x7f010047; + public static final int thumbTextPadding=0x7f01004a; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1148,7 +1148,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int title=0x7f010003; + public static final int title=0x7f010006; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1158,7 +1158,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMarginBottom=0x7f0100bd; + public static final int titleMarginBottom=0x7f0100c0; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1168,7 +1168,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMarginEnd=0x7f0100bb; + public static final int titleMarginEnd=0x7f0100be; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1178,7 +1178,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMarginStart=0x7f0100ba; + public static final int titleMarginStart=0x7f0100bd; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1188,7 +1188,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMarginTop=0x7f0100bc; + public static final int titleMarginTop=0x7f0100bf; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1198,11 +1198,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMargins=0x7f0100b9; + public static final int titleMargins=0x7f0100bc; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int titleTextAppearance=0x7f0100b7; + public static final int titleTextAppearance=0x7f0100ba; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -1211,23 +1211,23 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleTextColor=0x7f0100c4; + public static final int titleTextColor=0x7f0100c7; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int titleTextStyle=0x7f010007; + public static final int titleTextStyle=0x7f01000a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int toolbarNavigationButtonStyle=0x7f010086; + public static final int toolbarNavigationButtonStyle=0x7f010089; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int toolbarStyle=0x7f010085; + public static final int toolbarStyle=0x7f010088; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int track=0x7f010046; + public static final int track=0x7f010049; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1235,7 +1235,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int uvv_autoRotation=0x7f0100cd; + public static final int uvv_autoRotation=0x7f010002; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1243,7 +1243,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int uvv_fitXY=0x7f0100cc; + public static final int uvv_fitXY=0x7f010001; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1251,11 +1251,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int uvv_scalable=0x7f0100cb; + public static final int uvv_scalable=0x7f010000; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int voiceIcon=0x7f010041; + public static final int voiceIcon=0x7f010044; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1263,7 +1263,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowActionBar=0x7f01004d; + public static final int windowActionBar=0x7f010050; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1271,7 +1271,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowActionBarOverlay=0x7f01004f; + public static final int windowActionBarOverlay=0x7f010052; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1279,7 +1279,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowActionModeOverlay=0x7f010050; + public static final int windowActionModeOverlay=0x7f010053; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1292,7 +1292,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowFixedHeightMajor=0x7f010054; + public static final int windowFixedHeightMajor=0x7f010057; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1305,7 +1305,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowFixedHeightMinor=0x7f010052; + public static final int windowFixedHeightMinor=0x7f010055; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1318,7 +1318,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowFixedWidthMajor=0x7f010051; + public static final int windowFixedWidthMajor=0x7f010054; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1331,7 +1331,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowFixedWidthMinor=0x7f010053; + public static final int windowFixedWidthMinor=0x7f010056; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1344,7 +1344,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowMinWidthMajor=0x7f010055; + public static final int windowMinWidthMajor=0x7f010058; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1357,7 +1357,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowMinWidthMinor=0x7f010056; + public static final int windowMinWidthMinor=0x7f010059; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1365,168 +1365,168 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowNoTitle=0x7f01004e; + public static final int windowNoTitle=0x7f010051; } public static final class bool { - public static final int abc_action_bar_embed_tabs=0x7f080002; - public static final int abc_action_bar_embed_tabs_pre_jb=0x7f080000; - public static final int abc_action_bar_expanded_action_views_exclusive=0x7f080003; - public static final int abc_config_actionMenuItemAllCaps=0x7f080004; - public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f080001; - public static final int abc_config_closeDialogWhenTouchOutside=0x7f080005; - public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f080006; + public static final int abc_action_bar_embed_tabs=0x7f090002; + public static final int abc_action_bar_embed_tabs_pre_jb=0x7f090000; + public static final int abc_action_bar_expanded_action_views_exclusive=0x7f090003; + public static final int abc_config_actionMenuItemAllCaps=0x7f090004; + public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f090001; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f090005; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f090006; } public static final class color { - public static final int abc_background_cache_hint_selector_material_dark=0x7f0a003e; - public static final int abc_background_cache_hint_selector_material_light=0x7f0a003f; - public static final int abc_color_highlight_material=0x7f0a0040; - public static final int abc_input_method_navigation_guard=0x7f0a0000; - public static final int abc_primary_text_disable_only_material_dark=0x7f0a0041; - public static final int abc_primary_text_disable_only_material_light=0x7f0a0042; - public static final int abc_primary_text_material_dark=0x7f0a0043; - public static final int abc_primary_text_material_light=0x7f0a0044; - public static final int abc_search_url_text=0x7f0a0045; - public static final int abc_search_url_text_normal=0x7f0a0001; - public static final int abc_search_url_text_pressed=0x7f0a0002; - public static final int abc_search_url_text_selected=0x7f0a0003; - public static final int abc_secondary_text_material_dark=0x7f0a0046; - public static final int abc_secondary_text_material_light=0x7f0a0047; - public static final int accent_material_dark=0x7f0a0004; - public static final int accent_material_light=0x7f0a0005; - public static final int background_floating_material_dark=0x7f0a0006; - public static final int background_floating_material_light=0x7f0a0007; - public static final int background_material_dark=0x7f0a0008; - public static final int background_material_light=0x7f0a0009; - public static final int bright_foreground_disabled_material_dark=0x7f0a000a; - public static final int bright_foreground_disabled_material_light=0x7f0a000b; - public static final int bright_foreground_inverse_material_dark=0x7f0a000c; - public static final int bright_foreground_inverse_material_light=0x7f0a000d; - public static final int bright_foreground_material_dark=0x7f0a000e; - public static final int bright_foreground_material_light=0x7f0a000f; - public static final int button_material_dark=0x7f0a0010; - public static final int button_material_light=0x7f0a0011; - public static final int dim_foreground_disabled_material_dark=0x7f0a0012; - public static final int dim_foreground_disabled_material_light=0x7f0a0013; - public static final int dim_foreground_material_dark=0x7f0a0014; - public static final int dim_foreground_material_light=0x7f0a0015; - public static final int foreground_material_dark=0x7f0a0016; - public static final int foreground_material_light=0x7f0a0017; - public static final int highlighted_text_material_dark=0x7f0a0018; - public static final int highlighted_text_material_light=0x7f0a0019; - public static final int hint_foreground_material_dark=0x7f0a001a; - public static final int hint_foreground_material_light=0x7f0a001b; - public static final int material_blue_grey_800=0x7f0a001c; - public static final int material_blue_grey_900=0x7f0a001d; - public static final int material_blue_grey_950=0x7f0a001e; - public static final int material_deep_teal_200=0x7f0a001f; - public static final int material_deep_teal_500=0x7f0a0020; - public static final int material_grey_100=0x7f0a0021; - public static final int material_grey_300=0x7f0a0022; - public static final int material_grey_50=0x7f0a0023; - public static final int material_grey_600=0x7f0a0024; - public static final int material_grey_800=0x7f0a0025; - public static final int material_grey_850=0x7f0a0026; - public static final int material_grey_900=0x7f0a0027; - public static final int primary_dark_material_dark=0x7f0a0028; - public static final int primary_dark_material_light=0x7f0a0029; - public static final int primary_material_dark=0x7f0a002a; - public static final int primary_material_light=0x7f0a002b; - public static final int primary_text_default_material_dark=0x7f0a002c; - public static final int primary_text_default_material_light=0x7f0a002d; - public static final int primary_text_disabled_material_dark=0x7f0a002e; - public static final int primary_text_disabled_material_light=0x7f0a002f; - public static final int ripple_material_dark=0x7f0a0030; - public static final int ripple_material_light=0x7f0a0031; - public static final int secondary_text_default_material_dark=0x7f0a0032; - public static final int secondary_text_default_material_light=0x7f0a0033; - public static final int secondary_text_disabled_material_dark=0x7f0a0034; - public static final int secondary_text_disabled_material_light=0x7f0a0035; - public static final int switch_thumb_disabled_material_dark=0x7f0a0036; - public static final int switch_thumb_disabled_material_light=0x7f0a0037; - public static final int switch_thumb_material_dark=0x7f0a0048; - public static final int switch_thumb_material_light=0x7f0a0049; - public static final int switch_thumb_normal_material_dark=0x7f0a0038; - public static final int switch_thumb_normal_material_light=0x7f0a0039; - public static final int uvv_black=0x7f0a003a; - public static final int uvv_gray=0x7f0a003b; - public static final int uvv_light_gray=0x7f0a003c; - public static final int uvv_titlebar_bg=0x7f0a003d; + public static final int abc_background_cache_hint_selector_material_dark=0x7f05003e; + public static final int abc_background_cache_hint_selector_material_light=0x7f05003f; + public static final int abc_color_highlight_material=0x7f050040; + public static final int abc_input_method_navigation_guard=0x7f050004; + public static final int abc_primary_text_disable_only_material_dark=0x7f050041; + public static final int abc_primary_text_disable_only_material_light=0x7f050042; + public static final int abc_primary_text_material_dark=0x7f050043; + public static final int abc_primary_text_material_light=0x7f050044; + public static final int abc_search_url_text=0x7f050045; + public static final int abc_search_url_text_normal=0x7f050005; + public static final int abc_search_url_text_pressed=0x7f050006; + public static final int abc_search_url_text_selected=0x7f050007; + public static final int abc_secondary_text_material_dark=0x7f050046; + public static final int abc_secondary_text_material_light=0x7f050047; + public static final int accent_material_dark=0x7f050008; + public static final int accent_material_light=0x7f050009; + public static final int background_floating_material_dark=0x7f05000a; + public static final int background_floating_material_light=0x7f05000b; + public static final int background_material_dark=0x7f05000c; + public static final int background_material_light=0x7f05000d; + public static final int bright_foreground_disabled_material_dark=0x7f05000e; + public static final int bright_foreground_disabled_material_light=0x7f05000f; + public static final int bright_foreground_inverse_material_dark=0x7f050010; + public static final int bright_foreground_inverse_material_light=0x7f050011; + public static final int bright_foreground_material_dark=0x7f050012; + public static final int bright_foreground_material_light=0x7f050013; + public static final int button_material_dark=0x7f050014; + public static final int button_material_light=0x7f050015; + public static final int dim_foreground_disabled_material_dark=0x7f050016; + public static final int dim_foreground_disabled_material_light=0x7f050017; + public static final int dim_foreground_material_dark=0x7f050018; + public static final int dim_foreground_material_light=0x7f050019; + public static final int foreground_material_dark=0x7f05001a; + public static final int foreground_material_light=0x7f05001b; + public static final int highlighted_text_material_dark=0x7f05001c; + public static final int highlighted_text_material_light=0x7f05001d; + public static final int hint_foreground_material_dark=0x7f05001e; + public static final int hint_foreground_material_light=0x7f05001f; + public static final int material_blue_grey_800=0x7f050020; + public static final int material_blue_grey_900=0x7f050021; + public static final int material_blue_grey_950=0x7f050022; + public static final int material_deep_teal_200=0x7f050023; + public static final int material_deep_teal_500=0x7f050024; + public static final int material_grey_100=0x7f050025; + public static final int material_grey_300=0x7f050026; + public static final int material_grey_50=0x7f050027; + public static final int material_grey_600=0x7f050028; + public static final int material_grey_800=0x7f050029; + public static final int material_grey_850=0x7f05002a; + public static final int material_grey_900=0x7f05002b; + public static final int primary_dark_material_dark=0x7f05002c; + public static final int primary_dark_material_light=0x7f05002d; + public static final int primary_material_dark=0x7f05002e; + public static final int primary_material_light=0x7f05002f; + public static final int primary_text_default_material_dark=0x7f050030; + public static final int primary_text_default_material_light=0x7f050031; + public static final int primary_text_disabled_material_dark=0x7f050032; + public static final int primary_text_disabled_material_light=0x7f050033; + public static final int ripple_material_dark=0x7f050034; + public static final int ripple_material_light=0x7f050035; + public static final int secondary_text_default_material_dark=0x7f050036; + public static final int secondary_text_default_material_light=0x7f050037; + public static final int secondary_text_disabled_material_dark=0x7f050038; + public static final int secondary_text_disabled_material_light=0x7f050039; + public static final int switch_thumb_disabled_material_dark=0x7f05003a; + public static final int switch_thumb_disabled_material_light=0x7f05003b; + public static final int switch_thumb_material_dark=0x7f050048; + public static final int switch_thumb_material_light=0x7f050049; + public static final int switch_thumb_normal_material_dark=0x7f05003c; + public static final int switch_thumb_normal_material_light=0x7f05003d; + public static final int uvv_black=0x7f050000; + public static final int uvv_gray=0x7f050001; + public static final int uvv_light_gray=0x7f050002; + public static final int uvv_titlebar_bg=0x7f050003; } public static final class dimen { - public static final int abc_action_bar_content_inset_material=0x7f06000b; - public static final int abc_action_bar_default_height_material=0x7f060001; - public static final int abc_action_bar_default_padding_end_material=0x7f06000c; - public static final int abc_action_bar_default_padding_start_material=0x7f06000d; - public static final int abc_action_bar_icon_vertical_padding_material=0x7f06000f; - public static final int abc_action_bar_overflow_padding_end_material=0x7f060010; - public static final int abc_action_bar_overflow_padding_start_material=0x7f060011; - public static final int abc_action_bar_progress_bar_size=0x7f060002; - public static final int abc_action_bar_stacked_max_height=0x7f060012; - public static final int abc_action_bar_stacked_tab_max_width=0x7f060013; - public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f060014; - public static final int abc_action_bar_subtitle_top_margin_material=0x7f060015; - public static final int abc_action_button_min_height_material=0x7f060016; - public static final int abc_action_button_min_width_material=0x7f060017; - public static final int abc_action_button_min_width_overflow_material=0x7f060018; - public static final int abc_alert_dialog_button_bar_height=0x7f060000; - public static final int abc_button_inset_horizontal_material=0x7f060019; - public static final int abc_button_inset_vertical_material=0x7f06001a; - public static final int abc_button_padding_horizontal_material=0x7f06001b; - public static final int abc_button_padding_vertical_material=0x7f06001c; - public static final int abc_config_prefDialogWidth=0x7f060005; - public static final int abc_control_corner_material=0x7f06001d; - public static final int abc_control_inset_material=0x7f06001e; - public static final int abc_control_padding_material=0x7f06001f; - public static final int abc_dialog_list_padding_vertical_material=0x7f060020; - public static final int abc_dialog_min_width_major=0x7f060021; - public static final int abc_dialog_min_width_minor=0x7f060022; - public static final int abc_dialog_padding_material=0x7f060023; - public static final int abc_dialog_padding_top_material=0x7f060024; - public static final int abc_disabled_alpha_material_dark=0x7f060025; - public static final int abc_disabled_alpha_material_light=0x7f060026; - public static final int abc_dropdownitem_icon_width=0x7f060027; - public static final int abc_dropdownitem_text_padding_left=0x7f060028; - public static final int abc_dropdownitem_text_padding_right=0x7f060029; - public static final int abc_edit_text_inset_bottom_material=0x7f06002a; - public static final int abc_edit_text_inset_horizontal_material=0x7f06002b; - public static final int abc_edit_text_inset_top_material=0x7f06002c; - public static final int abc_floating_window_z=0x7f06002d; - public static final int abc_list_item_padding_horizontal_material=0x7f06002e; - public static final int abc_panel_menu_list_width=0x7f06002f; - public static final int abc_search_view_preferred_width=0x7f060030; - public static final int abc_search_view_text_min_width=0x7f060006; - public static final int abc_switch_padding=0x7f06000e; - public static final int abc_text_size_body_1_material=0x7f060031; - public static final int abc_text_size_body_2_material=0x7f060032; - public static final int abc_text_size_button_material=0x7f060033; - public static final int abc_text_size_caption_material=0x7f060034; - public static final int abc_text_size_display_1_material=0x7f060035; - public static final int abc_text_size_display_2_material=0x7f060036; - public static final int abc_text_size_display_3_material=0x7f060037; - public static final int abc_text_size_display_4_material=0x7f060038; - public static final int abc_text_size_headline_material=0x7f060039; - public static final int abc_text_size_large_material=0x7f06003a; - public static final int abc_text_size_medium_material=0x7f06003b; - public static final int abc_text_size_menu_material=0x7f06003c; - public static final int abc_text_size_small_material=0x7f06003d; - public static final int abc_text_size_subhead_material=0x7f06003e; - public static final int abc_text_size_subtitle_material_toolbar=0x7f060003; - public static final int abc_text_size_title_material=0x7f06003f; - public static final int abc_text_size_title_material_toolbar=0x7f060004; - public static final int activity_horizontal_margin=0x7f060048; - public static final int activity_vertical_margin=0x7f060049; - public static final int dialog_fixed_height_major=0x7f060007; - public static final int dialog_fixed_height_minor=0x7f060008; - public static final int dialog_fixed_width_major=0x7f060009; - public static final int dialog_fixed_width_minor=0x7f06000a; - public static final int disabled_alpha_material_dark=0x7f060040; - public static final int disabled_alpha_material_light=0x7f060041; - public static final int highlight_alpha_material_colored=0x7f060042; - public static final int highlight_alpha_material_dark=0x7f060043; - public static final int highlight_alpha_material_light=0x7f060044; - public static final int notification_large_icon_height=0x7f060045; - public static final int notification_large_icon_width=0x7f060046; - public static final int notification_subtext_size=0x7f060047; + public static final int abc_action_bar_content_inset_material=0x7f06000d; + public static final int abc_action_bar_default_height_material=0x7f060003; + public static final int abc_action_bar_default_padding_end_material=0x7f06000e; + public static final int abc_action_bar_default_padding_start_material=0x7f06000f; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f060011; + public static final int abc_action_bar_overflow_padding_end_material=0x7f060012; + public static final int abc_action_bar_overflow_padding_start_material=0x7f060013; + public static final int abc_action_bar_progress_bar_size=0x7f060004; + public static final int abc_action_bar_stacked_max_height=0x7f060014; + public static final int abc_action_bar_stacked_tab_max_width=0x7f060015; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f060016; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f060017; + public static final int abc_action_button_min_height_material=0x7f060018; + public static final int abc_action_button_min_width_material=0x7f060019; + public static final int abc_action_button_min_width_overflow_material=0x7f06001a; + public static final int abc_alert_dialog_button_bar_height=0x7f060002; + public static final int abc_button_inset_horizontal_material=0x7f06001b; + public static final int abc_button_inset_vertical_material=0x7f06001c; + public static final int abc_button_padding_horizontal_material=0x7f06001d; + public static final int abc_button_padding_vertical_material=0x7f06001e; + public static final int abc_config_prefDialogWidth=0x7f060007; + public static final int abc_control_corner_material=0x7f06001f; + public static final int abc_control_inset_material=0x7f060020; + public static final int abc_control_padding_material=0x7f060021; + public static final int abc_dialog_list_padding_vertical_material=0x7f060022; + public static final int abc_dialog_min_width_major=0x7f060023; + public static final int abc_dialog_min_width_minor=0x7f060024; + public static final int abc_dialog_padding_material=0x7f060025; + public static final int abc_dialog_padding_top_material=0x7f060026; + public static final int abc_disabled_alpha_material_dark=0x7f060027; + public static final int abc_disabled_alpha_material_light=0x7f060028; + public static final int abc_dropdownitem_icon_width=0x7f060029; + public static final int abc_dropdownitem_text_padding_left=0x7f06002a; + public static final int abc_dropdownitem_text_padding_right=0x7f06002b; + public static final int abc_edit_text_inset_bottom_material=0x7f06002c; + public static final int abc_edit_text_inset_horizontal_material=0x7f06002d; + public static final int abc_edit_text_inset_top_material=0x7f06002e; + public static final int abc_floating_window_z=0x7f06002f; + public static final int abc_list_item_padding_horizontal_material=0x7f060030; + public static final int abc_panel_menu_list_width=0x7f060031; + public static final int abc_search_view_preferred_width=0x7f060032; + public static final int abc_search_view_text_min_width=0x7f060008; + public static final int abc_switch_padding=0x7f060010; + public static final int abc_text_size_body_1_material=0x7f060033; + public static final int abc_text_size_body_2_material=0x7f060034; + public static final int abc_text_size_button_material=0x7f060035; + public static final int abc_text_size_caption_material=0x7f060036; + public static final int abc_text_size_display_1_material=0x7f060037; + public static final int abc_text_size_display_2_material=0x7f060038; + public static final int abc_text_size_display_3_material=0x7f060039; + public static final int abc_text_size_display_4_material=0x7f06003a; + public static final int abc_text_size_headline_material=0x7f06003b; + public static final int abc_text_size_large_material=0x7f06003c; + public static final int abc_text_size_medium_material=0x7f06003d; + public static final int abc_text_size_menu_material=0x7f06003e; + public static final int abc_text_size_small_material=0x7f06003f; + public static final int abc_text_size_subhead_material=0x7f060040; + public static final int abc_text_size_subtitle_material_toolbar=0x7f060005; + public static final int abc_text_size_title_material=0x7f060041; + public static final int abc_text_size_title_material_toolbar=0x7f060006; + public static final int activity_horizontal_margin=0x7f060000; + public static final int activity_vertical_margin=0x7f060001; + public static final int dialog_fixed_height_major=0x7f060009; + public static final int dialog_fixed_height_minor=0x7f06000a; + public static final int dialog_fixed_width_major=0x7f06000b; + public static final int dialog_fixed_width_minor=0x7f06000c; + public static final int disabled_alpha_material_dark=0x7f060042; + public static final int disabled_alpha_material_light=0x7f060043; + public static final int highlight_alpha_material_colored=0x7f060044; + public static final int highlight_alpha_material_dark=0x7f060045; + public static final int highlight_alpha_material_light=0x7f060046; + public static final int notification_large_icon_height=0x7f060047; + public static final int notification_large_icon_width=0x7f060048; + public static final int notification_subtext_size=0x7f060049; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; @@ -1720,11 +1720,11 @@ public static final class id { public static final int wrap_content=0x7f0b0020; } public static final class integer { - public static final int abc_config_activityDefaultDur=0x7f090001; - public static final int abc_config_activityShortDur=0x7f090002; - public static final int abc_max_action_buttons=0x7f090000; - public static final int cancel_button_image_alpha=0x7f090003; - public static final int status_bar_notification_info_maxnum=0x7f090004; + public static final int abc_config_activityDefaultDur=0x7f0a0001; + public static final int abc_config_activityShortDur=0x7f0a0002; + public static final int abc_max_action_buttons=0x7f0a0000; + public static final int cancel_button_image_alpha=0x7f0a0003; + public static final int status_bar_notification_info_maxnum=0x7f0a0004; } public static final class layout { public static final int abc_action_bar_title_item=0x7f030000; @@ -1769,335 +1769,335 @@ public static final class layout { public static final int uvv_player_controller=0x7f030027; } public static final class string { - public static final int abc_action_bar_home_description=0x7f050000; - public static final int abc_action_bar_home_description_format=0x7f050001; - public static final int abc_action_bar_home_subtitle_description_format=0x7f050002; - public static final int abc_action_bar_up_description=0x7f050003; - public static final int abc_action_menu_overflow_description=0x7f050004; - public static final int abc_action_mode_done=0x7f050005; - public static final int abc_activity_chooser_view_see_all=0x7f050006; - public static final int abc_activitychooserview_choose_application=0x7f050007; - public static final int abc_search_hint=0x7f050008; - public static final int abc_searchview_description_clear=0x7f050009; - public static final int abc_searchview_description_query=0x7f05000a; - public static final int abc_searchview_description_search=0x7f05000b; - public static final int abc_searchview_description_submit=0x7f05000c; - public static final int abc_searchview_description_voice=0x7f05000d; - public static final int abc_shareactionprovider_share_with=0x7f05000e; - public static final int abc_shareactionprovider_share_with_application=0x7f05000f; - public static final int abc_toolbar_collapse_description=0x7f050010; - public static final int action_settings=0x7f050012; - public static final int app_name=0x7f050013; - public static final int hello_world=0x7f050014; - public static final int status_bar_notification_info_overflow=0x7f050011; + public static final int abc_action_bar_home_description=0x7f070002; + public static final int abc_action_bar_home_description_format=0x7f070003; + public static final int abc_action_bar_home_subtitle_description_format=0x7f070004; + public static final int abc_action_bar_up_description=0x7f070005; + public static final int abc_action_menu_overflow_description=0x7f070006; + public static final int abc_action_mode_done=0x7f070007; + public static final int abc_activity_chooser_view_see_all=0x7f070008; + public static final int abc_activitychooserview_choose_application=0x7f070009; + public static final int abc_search_hint=0x7f07000a; + public static final int abc_searchview_description_clear=0x7f07000b; + public static final int abc_searchview_description_query=0x7f07000c; + public static final int abc_searchview_description_search=0x7f07000d; + public static final int abc_searchview_description_submit=0x7f07000e; + public static final int abc_searchview_description_voice=0x7f07000f; + public static final int abc_shareactionprovider_share_with=0x7f070010; + public static final int abc_shareactionprovider_share_with_application=0x7f070011; + public static final int abc_toolbar_collapse_description=0x7f070012; + public static final int action_settings=0x7f070000; + public static final int app_name=0x7f070001; + public static final int hello_world=0x7f070014; + public static final int status_bar_notification_info_overflow=0x7f070013; } public static final class style { - public static final int AlertDialog_AppCompat=0x7f07007a; - public static final int AlertDialog_AppCompat_Light=0x7f07007b; - public static final int Animation_AppCompat_Dialog=0x7f07007c; - public static final int Animation_AppCompat_DropDownUp=0x7f07007d; + public static final int AlertDialog_AppCompat=0x7f08007c; + public static final int AlertDialog_AppCompat_Light=0x7f08007d; + public static final int Animation_AppCompat_Dialog=0x7f08007e; + public static final int Animation_AppCompat_DropDownUp=0x7f08007f; /** Customize your theme here. */ - public static final int AppTheme=0x7f07012e; - public static final int Base_AlertDialog_AppCompat=0x7f07007e; - public static final int Base_AlertDialog_AppCompat_Light=0x7f07007f; - public static final int Base_Animation_AppCompat_Dialog=0x7f070080; - public static final int Base_Animation_AppCompat_DropDownUp=0x7f070081; - public static final int Base_DialogWindowTitle_AppCompat=0x7f070082; - public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f070083; - public static final int Base_TextAppearance_AppCompat=0x7f07002d; - public static final int Base_TextAppearance_AppCompat_Body1=0x7f07002e; - public static final int Base_TextAppearance_AppCompat_Body2=0x7f07002f; - public static final int Base_TextAppearance_AppCompat_Button=0x7f070018; - public static final int Base_TextAppearance_AppCompat_Caption=0x7f070030; - public static final int Base_TextAppearance_AppCompat_Display1=0x7f070031; - public static final int Base_TextAppearance_AppCompat_Display2=0x7f070032; - public static final int Base_TextAppearance_AppCompat_Display3=0x7f070033; - public static final int Base_TextAppearance_AppCompat_Display4=0x7f070034; - public static final int Base_TextAppearance_AppCompat_Headline=0x7f070035; - public static final int Base_TextAppearance_AppCompat_Inverse=0x7f070003; - public static final int Base_TextAppearance_AppCompat_Large=0x7f070036; - public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f070004; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070037; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f070038; - public static final int Base_TextAppearance_AppCompat_Medium=0x7f070039; - public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f070005; - public static final int Base_TextAppearance_AppCompat_Menu=0x7f07003a; - public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f070084; - public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f07003b; - public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f07003c; - public static final int Base_TextAppearance_AppCompat_Small=0x7f07003d; - public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f070006; - public static final int Base_TextAppearance_AppCompat_Subhead=0x7f07003e; - public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f070007; - public static final int Base_TextAppearance_AppCompat_Title=0x7f07003f; - public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070008; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070040; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f070041; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f070042; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f070043; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070044; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070045; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070046; - public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f070047; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070076; - public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f070085; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f070048; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f070049; - public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f07004a; - public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f07004b; - public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f070086; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f07004c; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f07004d; - public static final int Base_Theme_AppCompat=0x7f07004e; - public static final int Base_Theme_AppCompat_CompactMenu=0x7f070087; - public static final int Base_Theme_AppCompat_Dialog=0x7f070009; - public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f070088; - public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f070089; - public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f07008a; - public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f070001; - public static final int Base_Theme_AppCompat_Light=0x7f07004f; - public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f07008b; - public static final int Base_Theme_AppCompat_Light_Dialog=0x7f07000a; - public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f07008c; - public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f07008d; - public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f07008e; - public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070002; - public static final int Base_ThemeOverlay_AppCompat=0x7f07008f; - public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f070090; - public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f070091; - public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f070092; - public static final int Base_ThemeOverlay_AppCompat_Light=0x7f070093; - public static final int Base_V11_Theme_AppCompat_Dialog=0x7f07000b; - public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f07000c; - public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070014; - public static final int Base_V12_Widget_AppCompat_EditText=0x7f070015; - public static final int Base_V21_Theme_AppCompat=0x7f070050; - public static final int Base_V21_Theme_AppCompat_Dialog=0x7f070051; - public static final int Base_V21_Theme_AppCompat_Light=0x7f070052; - public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f070053; - public static final int Base_V22_Theme_AppCompat=0x7f070074; - public static final int Base_V22_Theme_AppCompat_Light=0x7f070075; - public static final int Base_V23_Theme_AppCompat=0x7f070077; - public static final int Base_V23_Theme_AppCompat_Light=0x7f070078; - public static final int Base_V7_Theme_AppCompat=0x7f070094; - public static final int Base_V7_Theme_AppCompat_Dialog=0x7f070095; - public static final int Base_V7_Theme_AppCompat_Light=0x7f070096; - public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f070097; - public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f070098; - public static final int Base_V7_Widget_AppCompat_EditText=0x7f070099; - public static final int Base_Widget_AppCompat_ActionBar=0x7f07009a; - public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f07009b; - public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f07009c; - public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f070054; - public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f070055; - public static final int Base_Widget_AppCompat_ActionButton=0x7f070056; - public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f070057; - public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f070058; - public static final int Base_Widget_AppCompat_ActionMode=0x7f07009d; - public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f07009e; - public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070016; - public static final int Base_Widget_AppCompat_Button=0x7f070059; - public static final int Base_Widget_AppCompat_Button_Borderless=0x7f07005a; - public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f07005b; - public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f07009f; - public static final int Base_Widget_AppCompat_Button_Colored=0x7f070079; - public static final int Base_Widget_AppCompat_Button_Small=0x7f07005c; - public static final int Base_Widget_AppCompat_ButtonBar=0x7f07005d; - public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700a0; - public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f07005e; - public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f07005f; - public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700a1; - public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070000; - public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700a2; - public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f070060; - public static final int Base_Widget_AppCompat_EditText=0x7f070017; - public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0700a3; - public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700a4; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700a5; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f070061; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f070062; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070063; - public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f070064; - public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070065; - public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f070066; - public static final int Base_Widget_AppCompat_ListView=0x7f070067; - public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f070068; - public static final int Base_Widget_AppCompat_ListView_Menu=0x7f070069; - public static final int Base_Widget_AppCompat_PopupMenu=0x7f07006a; - public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f07006b; - public static final int Base_Widget_AppCompat_PopupWindow=0x7f0700a6; - public static final int Base_Widget_AppCompat_ProgressBar=0x7f07000d; - public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07000e; - public static final int Base_Widget_AppCompat_RatingBar=0x7f07006c; - public static final int Base_Widget_AppCompat_SearchView=0x7f0700a7; - public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700a8; - public static final int Base_Widget_AppCompat_Spinner=0x7f07006d; - public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f07006e; - public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f07006f; - public static final int Base_Widget_AppCompat_Toolbar=0x7f0700a9; - public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f070070; - public static final int Platform_AppCompat=0x7f07000f; - public static final int Platform_AppCompat_Light=0x7f070010; - public static final int Platform_ThemeOverlay_AppCompat=0x7f070071; - public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f070072; - public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f070073; - public static final int Platform_V11_AppCompat=0x7f070011; - public static final int Platform_V11_AppCompat_Light=0x7f070012; - public static final int Platform_V14_AppCompat=0x7f070019; - public static final int Platform_V14_AppCompat_Light=0x7f07001a; - public static final int Platform_Widget_AppCompat_Spinner=0x7f070013; - public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f070020; - public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f070021; - public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f070022; - public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f070023; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f070024; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070025; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070026; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070027; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070028; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f070029; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f07002a; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f07002b; - public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f07002c; - public static final int TextAppearance_AppCompat=0x7f0700aa; - public static final int TextAppearance_AppCompat_Body1=0x7f0700ab; - public static final int TextAppearance_AppCompat_Body2=0x7f0700ac; - public static final int TextAppearance_AppCompat_Button=0x7f0700ad; - public static final int TextAppearance_AppCompat_Caption=0x7f0700ae; - public static final int TextAppearance_AppCompat_Display1=0x7f0700af; - public static final int TextAppearance_AppCompat_Display2=0x7f0700b0; - public static final int TextAppearance_AppCompat_Display3=0x7f0700b1; - public static final int TextAppearance_AppCompat_Display4=0x7f0700b2; - public static final int TextAppearance_AppCompat_Headline=0x7f0700b3; - public static final int TextAppearance_AppCompat_Inverse=0x7f0700b4; - public static final int TextAppearance_AppCompat_Large=0x7f0700b5; - public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0700b6; - public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700b7; - public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700b8; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700b9; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700ba; - public static final int TextAppearance_AppCompat_Medium=0x7f0700bb; - public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0700bc; - public static final int TextAppearance_AppCompat_Menu=0x7f0700bd; - public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700be; - public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0700bf; - public static final int TextAppearance_AppCompat_Small=0x7f0700c0; - public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0700c1; - public static final int TextAppearance_AppCompat_Subhead=0x7f0700c2; - public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700c3; - public static final int TextAppearance_AppCompat_Title=0x7f0700c4; - public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0700c5; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700c6; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700c7; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700c8; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700c9; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700ca; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700cb; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700cc; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700cd; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700ce; - public static final int TextAppearance_AppCompat_Widget_Button=0x7f0700cf; - public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700d0; - public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700d1; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700d2; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700d3; - public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0700d4; - public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700d5; - public static final int TextAppearance_StatusBar_EventContent=0x7f07001b; - public static final int TextAppearance_StatusBar_EventContent_Info=0x7f07001c; - public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f07001d; - public static final int TextAppearance_StatusBar_EventContent_Time=0x7f07001e; - public static final int TextAppearance_StatusBar_EventContent_Title=0x7f07001f; - public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700d6; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0700d7; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0700d8; - public static final int Theme_AppCompat=0x7f0700d9; - public static final int Theme_AppCompat_CompactMenu=0x7f0700da; - public static final int Theme_AppCompat_Dialog=0x7f0700db; - public static final int Theme_AppCompat_Dialog_Alert=0x7f0700dc; - public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0700dd; - public static final int Theme_AppCompat_DialogWhenLarge=0x7f0700de; - public static final int Theme_AppCompat_Light=0x7f0700df; - public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0700e0; - public static final int Theme_AppCompat_Light_Dialog=0x7f0700e1; - public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0700e2; - public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0700e3; - public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0700e4; - public static final int Theme_AppCompat_Light_NoActionBar=0x7f0700e5; - public static final int Theme_AppCompat_NoActionBar=0x7f0700e6; - public static final int ThemeOverlay_AppCompat=0x7f0700e7; - public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0700e8; - public static final int ThemeOverlay_AppCompat_Dark=0x7f0700e9; - public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700ea; - public static final int ThemeOverlay_AppCompat_Light=0x7f0700eb; - public static final int Universal_Widget_ProgressBar=0x7f07012f; - public static final int Widget_AppCompat_ActionBar=0x7f0700ec; - public static final int Widget_AppCompat_ActionBar_Solid=0x7f0700ed; - public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0700ee; - public static final int Widget_AppCompat_ActionBar_TabText=0x7f0700ef; - public static final int Widget_AppCompat_ActionBar_TabView=0x7f0700f0; - public static final int Widget_AppCompat_ActionButton=0x7f0700f1; - public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0700f2; - public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0700f3; - public static final int Widget_AppCompat_ActionMode=0x7f0700f4; - public static final int Widget_AppCompat_ActivityChooserView=0x7f0700f5; - public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0700f6; - public static final int Widget_AppCompat_Button=0x7f0700f7; - public static final int Widget_AppCompat_Button_Borderless=0x7f0700f8; - public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0700f9; - public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700fa; - public static final int Widget_AppCompat_Button_Colored=0x7f0700fb; - public static final int Widget_AppCompat_Button_Small=0x7f0700fc; - public static final int Widget_AppCompat_ButtonBar=0x7f0700fd; - public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700fe; - public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0700ff; - public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f070100; - public static final int Widget_AppCompat_CompoundButton_Switch=0x7f070101; - public static final int Widget_AppCompat_DrawerArrowToggle=0x7f070102; - public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f070103; - public static final int Widget_AppCompat_EditText=0x7f070104; - public static final int Widget_AppCompat_Light_ActionBar=0x7f070105; - public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f070106; - public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070107; - public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f070108; - public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f070109; - public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f07010a; - public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07010b; - public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f07010c; - public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f07010d; - public static final int Widget_AppCompat_Light_ActionButton=0x7f07010e; - public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f07010f; - public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f070110; - public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f070111; - public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f070112; - public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f070113; - public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070114; - public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f070115; - public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f070116; - public static final int Widget_AppCompat_Light_PopupMenu=0x7f070117; - public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070118; - public static final int Widget_AppCompat_Light_SearchView=0x7f070119; - public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f07011a; - public static final int Widget_AppCompat_ListPopupWindow=0x7f07011b; - public static final int Widget_AppCompat_ListView=0x7f07011c; - public static final int Widget_AppCompat_ListView_DropDown=0x7f07011d; - public static final int Widget_AppCompat_ListView_Menu=0x7f07011e; - public static final int Widget_AppCompat_PopupMenu=0x7f07011f; - public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f070120; - public static final int Widget_AppCompat_PopupWindow=0x7f070121; - public static final int Widget_AppCompat_ProgressBar=0x7f070122; - public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f070123; - public static final int Widget_AppCompat_RatingBar=0x7f070124; - public static final int Widget_AppCompat_SearchView=0x7f070125; - public static final int Widget_AppCompat_SearchView_ActionBar=0x7f070126; - public static final int Widget_AppCompat_Spinner=0x7f070127; - public static final int Widget_AppCompat_Spinner_DropDown=0x7f070128; - public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f070129; - public static final int Widget_AppCompat_Spinner_Underlined=0x7f07012a; - public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f07012b; - public static final int Widget_AppCompat_Toolbar=0x7f07012c; - public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f07012d; + public static final int AppTheme=0x7f080000; + public static final int Base_AlertDialog_AppCompat=0x7f080080; + public static final int Base_AlertDialog_AppCompat_Light=0x7f080081; + public static final int Base_Animation_AppCompat_Dialog=0x7f080082; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f080083; + public static final int Base_DialogWindowTitle_AppCompat=0x7f080084; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f080085; + public static final int Base_TextAppearance_AppCompat=0x7f08002f; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080030; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080031; + public static final int Base_TextAppearance_AppCompat_Button=0x7f08001a; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f080032; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f080033; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f080034; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f080035; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f080036; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f080037; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080005; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080038; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f080006; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080039; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f08003a; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f08003b; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f080007; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f08003c; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f080086; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f08003d; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f08003e; + public static final int Base_TextAppearance_AppCompat_Small=0x7f08003f; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f080008; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080040; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f080009; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080041; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08000a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f080042; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f080043; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f080044; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f080046; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080047; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080048; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080049; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080078; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f080087; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08004a; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08004b; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f08004c; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08004d; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080088; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08004e; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f08004f; + public static final int Base_Theme_AppCompat=0x7f080050; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f080089; + public static final int Base_Theme_AppCompat_Dialog=0x7f08000b; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f08008a; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f08008b; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f08008c; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f080003; + public static final int Base_Theme_AppCompat_Light=0x7f080051; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f08008d; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f08000c; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f08008e; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f08008f; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080090; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080004; + public static final int Base_ThemeOverlay_AppCompat=0x7f080091; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f080092; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f080093; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080094; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f080095; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f08000d; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f08000e; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080016; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080017; + public static final int Base_V21_Theme_AppCompat=0x7f080052; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f080053; + public static final int Base_V21_Theme_AppCompat_Light=0x7f080054; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f080055; + public static final int Base_V22_Theme_AppCompat=0x7f080076; + public static final int Base_V22_Theme_AppCompat_Light=0x7f080077; + public static final int Base_V23_Theme_AppCompat=0x7f080079; + public static final int Base_V23_Theme_AppCompat_Light=0x7f08007a; + public static final int Base_V7_Theme_AppCompat=0x7f080096; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f080097; + public static final int Base_V7_Theme_AppCompat_Light=0x7f080098; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f080099; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f08009a; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f08009b; + public static final int Base_Widget_AppCompat_ActionBar=0x7f08009c; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f08009d; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f08009e; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f080056; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080057; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080058; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080059; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f08005a; + public static final int Base_Widget_AppCompat_ActionMode=0x7f08009f; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800a0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080018; + public static final int Base_Widget_AppCompat_Button=0x7f08005b; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f08005c; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f08005d; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800a1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f08007b; + public static final int Base_Widget_AppCompat_Button_Small=0x7f08005e; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f08005f; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800a2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080060; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f080061; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800a3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080002; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800a4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f080062; + public static final int Base_Widget_AppCompat_EditText=0x7f080019; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800a5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800a6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800a7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f080063; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080064; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f080065; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080066; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080067; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080068; + public static final int Base_Widget_AppCompat_ListView=0x7f080069; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f08006a; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f08006b; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f08006c; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f08006d; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800a8; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08000f; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f080010; + public static final int Base_Widget_AppCompat_RatingBar=0x7f08006e; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800a9; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800aa; + public static final int Base_Widget_AppCompat_Spinner=0x7f08006f; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080070; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f080071; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ab; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f080072; + public static final int Platform_AppCompat=0x7f080011; + public static final int Platform_AppCompat_Light=0x7f080012; + public static final int Platform_ThemeOverlay_AppCompat=0x7f080073; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f080074; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f080075; + public static final int Platform_V11_AppCompat=0x7f080013; + public static final int Platform_V11_AppCompat_Light=0x7f080014; + public static final int Platform_V14_AppCompat=0x7f08001b; + public static final int Platform_V14_AppCompat_Light=0x7f08001c; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080015; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080022; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f080023; + public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f080024; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f080025; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f080026; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f080027; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f080028; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080029; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f08002a; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f08002b; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f08002c; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f08002d; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f08002e; + public static final int TextAppearance_AppCompat=0x7f0800ac; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ad; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ae; + public static final int TextAppearance_AppCompat_Button=0x7f0800af; + public static final int TextAppearance_AppCompat_Caption=0x7f0800b0; + public static final int TextAppearance_AppCompat_Display1=0x7f0800b1; + public static final int TextAppearance_AppCompat_Display2=0x7f0800b2; + public static final int TextAppearance_AppCompat_Display3=0x7f0800b3; + public static final int TextAppearance_AppCompat_Display4=0x7f0800b4; + public static final int TextAppearance_AppCompat_Headline=0x7f0800b5; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800b6; + public static final int TextAppearance_AppCompat_Large=0x7f0800b7; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800b8; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800b9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800ba; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800bb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800bc; + public static final int TextAppearance_AppCompat_Medium=0x7f0800bd; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800be; + public static final int TextAppearance_AppCompat_Menu=0x7f0800bf; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0800c0; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0800c1; + public static final int TextAppearance_AppCompat_Small=0x7f0800c2; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0800c3; + public static final int TextAppearance_AppCompat_Subhead=0x7f0800c4; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0800c5; + public static final int TextAppearance_AppCompat_Title=0x7f0800c6; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0800c7; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800c8; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0800c9; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0800ca; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0800cb; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0800cc; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0800cd; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0800ce; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0800cf; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0800d0; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f0800d1; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800d2; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800d3; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0800d4; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0800d5; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0800d6; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0800d7; + public static final int TextAppearance_StatusBar_EventContent=0x7f08001d; + public static final int TextAppearance_StatusBar_EventContent_Info=0x7f08001e; + public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f08001f; + public static final int TextAppearance_StatusBar_EventContent_Time=0x7f080020; + public static final int TextAppearance_StatusBar_EventContent_Title=0x7f080021; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800d8; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0800d9; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0800da; + public static final int Theme_AppCompat=0x7f0800db; + public static final int Theme_AppCompat_CompactMenu=0x7f0800dc; + public static final int Theme_AppCompat_Dialog=0x7f0800dd; + public static final int Theme_AppCompat_Dialog_Alert=0x7f0800de; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0800df; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f0800e0; + public static final int Theme_AppCompat_Light=0x7f0800e1; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0800e2; + public static final int Theme_AppCompat_Light_Dialog=0x7f0800e3; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0800e4; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0800e5; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0800e6; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f0800e7; + public static final int Theme_AppCompat_NoActionBar=0x7f0800e8; + public static final int ThemeOverlay_AppCompat=0x7f0800e9; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0800ea; + public static final int ThemeOverlay_AppCompat_Dark=0x7f0800eb; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800ec; + public static final int ThemeOverlay_AppCompat_Light=0x7f0800ed; + public static final int Universal_Widget_ProgressBar=0x7f080001; + public static final int Widget_AppCompat_ActionBar=0x7f0800ee; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f0800ef; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0800f0; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f0800f1; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f0800f2; + public static final int Widget_AppCompat_ActionButton=0x7f0800f3; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0800f4; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0800f5; + public static final int Widget_AppCompat_ActionMode=0x7f0800f6; + public static final int Widget_AppCompat_ActivityChooserView=0x7f0800f7; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0800f8; + public static final int Widget_AppCompat_Button=0x7f0800f9; + public static final int Widget_AppCompat_Button_Borderless=0x7f0800fa; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0800fb; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800fc; + public static final int Widget_AppCompat_Button_Colored=0x7f0800fd; + public static final int Widget_AppCompat_Button_Small=0x7f0800fe; + public static final int Widget_AppCompat_ButtonBar=0x7f0800ff; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080100; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080101; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f080102; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f080103; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f080104; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f080105; + public static final int Widget_AppCompat_EditText=0x7f080106; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080107; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080108; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080109; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f08010a; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f08010b; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f08010c; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08010d; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f08010e; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f08010f; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080110; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f080111; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f080112; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f080113; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f080114; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f080115; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f080116; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080117; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080118; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080119; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f08011a; + public static final int Widget_AppCompat_Light_SearchView=0x7f08011b; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f08011c; + public static final int Widget_AppCompat_ListPopupWindow=0x7f08011d; + public static final int Widget_AppCompat_ListView=0x7f08011e; + public static final int Widget_AppCompat_ListView_DropDown=0x7f08011f; + public static final int Widget_AppCompat_ListView_Menu=0x7f080120; + public static final int Widget_AppCompat_PopupMenu=0x7f080121; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f080122; + public static final int Widget_AppCompat_PopupWindow=0x7f080123; + public static final int Widget_AppCompat_ProgressBar=0x7f080124; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f080125; + public static final int Widget_AppCompat_RatingBar=0x7f080126; + public static final int Widget_AppCompat_SearchView=0x7f080127; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080128; + public static final int Widget_AppCompat_Spinner=0x7f080129; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f08012a; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f08012b; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08012c; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08012d; + public static final int Widget_AppCompat_Toolbar=0x7f08012e; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08012f; } public static final class styleable { /** Attributes that can be used with a ActionBar. @@ -2163,13 +2163,13 @@ public static final class styleable { @see #ActionBar_titleTextStyle */ public static final int[] ActionBar = { - 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, - 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, - 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, - 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, - 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, - 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, - 0x7f01001a, 0x7f01001b, 0x7f01007b + 0x7f010004, 0x7f010006, 0x7f010007, 0x7f010008, + 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, + 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01007e }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#background} @@ -2589,8 +2589,8 @@ theme attribute (in the form @see #ActionMode_titleTextStyle */ public static final int[] ActionMode = { - 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, - 0x7f01000e, 0x7f01001c + 0x7f010004, 0x7f01000a, 0x7f01000b, 0x7f01000f, + 0x7f010011, 0x7f01001f }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#background} @@ -2673,7 +2673,7 @@ theme attribute (in the form @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { - 0x7f01001d, 0x7f01001e + 0x7f010020, 0x7f010021 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#expandActivityOverflowButtonDrawable} @@ -2720,8 +2720,8 @@ theme attribute (in the form @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog = { - 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, - 0x7f010022, 0x7f010023 + 0x010100f2, 0x7f010022, 0x7f010023, 0x7f010024, + 0x7f010025, 0x7f010026 }; /**

This symbol is the offset where the {@link android.R.attr#layout} @@ -2792,7 +2792,7 @@ theme attribute (in the form @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { - 0x01010034, 0x7f010024 + 0x01010034, 0x7f010027 }; /**

This symbol is the offset where the {@link android.R.attr#textAppearance} @@ -2826,7 +2826,7 @@ theme attribute (in the form @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { - 0x01010107, 0x7f010025, 0x7f010026 + 0x01010107, 0x7f010028, 0x7f010029 }; /**

This symbol is the offset where the {@link android.R.attr#button} @@ -2894,8 +2894,8 @@ theme attribute (in the form @see #DrawerArrowToggle_thickness */ public static final int[] DrawerArrowToggle = { - 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, - 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e + 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, + 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#arrowHeadLength} @@ -3050,8 +3050,8 @@ theme attribute (in the form */ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, - 0x01010128, 0x7f01000b, 0x7f01002f, 0x7f010030, - 0x7f010031 + 0x01010128, 0x7f01000e, 0x7f010032, 0x7f010033, + 0x7f010034 }; /**

This symbol is the offset where the {@link android.R.attr#baselineAligned} @@ -3318,8 +3318,8 @@

Must be one or more (separated by '|') of the following constant values.

0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, - 0x0101026f, 0x7f010032, 0x7f010033, 0x7f010034, - 0x7f010035 + 0x0101026f, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010038 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionLayout} @@ -3483,7 +3483,7 @@

Must be one or more (separated by '|') of the following constant values.

*/ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, - 0x0101012f, 0x01010130, 0x01010131, 0x7f010036 + 0x0101012f, 0x01010130, 0x01010131, 0x7f010039 }; /**

This symbol is the offset where the {@link android.R.attr#headerBackground} @@ -3554,7 +3554,7 @@ theme attribute (in the form @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { - 0x01010176, 0x7f010037 + 0x01010176, 0x7f01003a }; /**

This symbol is the offset where the {@link android.R.attr#popupBackground} @@ -3587,7 +3587,7 @@ theme attribute (in the form @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { - 0x7f010038 + 0x7f01003b }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#state_above_anchor} @@ -3647,10 +3647,10 @@ theme attribute (in the form */ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, - 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, - 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, - 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, - 0x7f010045 + 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, + 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, + 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, + 0x7f010048 }; /**

This symbol is the offset where the {@link android.R.attr#focusable} @@ -3835,7 +3835,7 @@ theme attribute (in the form @see #Spinner_popupTheme */ public static final int[] Spinner = { - 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b + 0x01010176, 0x0101017b, 0x01010262, 0x7f01001e }; /**

This symbol is the offset where the {@link android.R.attr#dropDownWidth} @@ -3894,9 +3894,9 @@ theme attribute (in the form @see #SwitchCompat_track */ public static final int[] SwitchCompat = { - 0x01010124, 0x01010125, 0x01010142, 0x7f010046, - 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, - 0x7f01004b, 0x7f01004c + 0x01010124, 0x01010125, 0x01010142, 0x7f010049, + 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, + 0x7f01004e, 0x7f01004f }; /**

This symbol is the offset where the {@link android.R.attr#textOff} @@ -4032,7 +4032,7 @@ theme attribute (in the form */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, - 0x7f010024 + 0x7f010027 }; /**

This symbol is the offset where the {@link android.R.attr#textColor} @@ -4294,33 +4294,33 @@ theme attribute (in the form @see #Theme_windowNoTitle */ public static final int[] Theme = { - 0x01010057, 0x010100ae, 0x7f01004d, 0x7f01004e, - 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, - 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, - 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, - 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, - 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, - 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, - 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, - 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, - 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, - 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, - 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, - 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, - 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, - 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, - 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, - 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, - 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, - 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, - 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, - 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, - 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, - 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, - 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, - 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, - 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, - 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6 + 0x01010057, 0x010100ae, 0x7f010050, 0x7f010051, + 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, + 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, + 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, + 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, + 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, + 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, + 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, + 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, + 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, + 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, + 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, + 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, + 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, + 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, + 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, + 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, + 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, + 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, + 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, + 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, + 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, + 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, + 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, + 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, + 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, + 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionBarDivider} @@ -5637,13 +5637,13 @@ theme attribute (in the form @see #Toolbar_titleTextColor */ public static final int[] Toolbar = { - 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, - 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, - 0x7f010019, 0x7f01001b, 0x7f0100b7, 0x7f0100b8, - 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, - 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, - 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, - 0x7f0100c5 + 0x010100af, 0x01010140, 0x7f010006, 0x7f010009, + 0x7f01000d, 0x7f010019, 0x7f01001a, 0x7f01001b, + 0x7f01001c, 0x7f01001e, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, + 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, + 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, + 0x7f0100c8 }; /**

This symbol is the offset where the {@link android.R.attr#gravity} @@ -5988,7 +5988,7 @@ theme attribute (in the form @see #UniversalMediaController_uvv_scalable */ public static final int[] UniversalMediaController = { - 0x7f0100cb + 0x7f010000 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#uvv_scalable} @@ -6017,7 +6017,7 @@ theme attribute (in the form @see #UniversalVideoView_uvv_fitXY */ public static final int[] UniversalVideoView = { - 0x7f0100cc, 0x7f0100cd + 0x7f010001, 0x7f010002 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#uvv_autoRotation} @@ -6066,8 +6066,8 @@ theme attribute (in the form @see #View_theme */ public static final int[] View = { - 0x01010000, 0x010100da, 0x7f0100c6, 0x7f0100c7, - 0x7f0100c8 + 0x01010000, 0x010100da, 0x7f0100c9, 0x7f0100ca, + 0x7f0100cb }; /**

This symbol is the offset where the {@link android.R.attr#focusable} @@ -6138,7 +6138,7 @@ theme attribute (in the form @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { - 0x010100d4, 0x7f0100c9, 0x7f0100ca + 0x010100d4, 0x7f0100cc, 0x7f0100cd }; /**

This symbol is the offset where the {@link android.R.attr#background} diff --git a/YoutubeExtractor/app/build/gen/com/avery/subtitle/R.java b/YoutubeExtractor/app/build/gen/com/avery/subtitle/R.java new file mode 100644 index 0000000..e3461ac --- /dev/null +++ b/YoutubeExtractor/app/build/gen/com/avery/subtitle/R.java @@ -0,0 +1,6220 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package com.avery.subtitle; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f010065; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f01005f; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f010064; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f01005c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f01007f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f01007b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f010036; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f010067; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f010068; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f01006b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f01006a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f01006d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f010073; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f010070; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f010075; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f010071; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f010072; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f010069; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f010074; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f01005d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f01005e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f010038; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f010037; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f010087; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f0100a9; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f0100aa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f0100ab; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f01002e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f01002f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f01000f; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f010011; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f010010; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f0100cc; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f0100cd; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f010030; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f010084; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f0100af; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f0100ad; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f0100b1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f0100b2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f010028; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f010029; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f0100b4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f010040; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f01001f; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f0100c3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f0100c2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f01002a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f0100a1; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f0100a5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f0100a3; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f0100a4; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f0100a2; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f01009f; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f0100a0; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f0100a6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f010045; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f01001a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f01001b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f01001c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010019; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f010012; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f01003f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f010079; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f010078; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f01000e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f010086; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f010085; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f01002c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f010003; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f010097; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f01008d; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f0100b5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f01001d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f010021; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f01002d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f010041; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f010004; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010018; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f01007e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f010013; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f01000c; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f01003d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f010015; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f010020; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f010005; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f010017; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f01003c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f01009e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f01007a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010026; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f010023; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f010098; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f010092; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f010094; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f010093; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f010095; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f010096; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f01000d; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f0100c6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f0100c1; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f010032; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f010024; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f0100c5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f0100c4; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f010007; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f01003a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f0100ca; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f01009b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f01009d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f01008a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f01001e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f01008b; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f010039; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f010016; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f010014; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f010047; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f01003e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f0100b6; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f010043; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f010042; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f010091; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f010082; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f010083; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f010035; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f010033; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f010025; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f01002b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f01007d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100b8; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f01004e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f01003b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f010048; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010009; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f0100bb; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f0100c8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f01000b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f010046; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f01004c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f01004b; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010027; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f010076; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f01008f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f01008e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f010077; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0100ac; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f010090; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f0100cb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f010031; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f01004a; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f010006; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f0100c0; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f0100be; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f0100bd; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f0100bf; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f0100ba; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f01000a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f010089; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f010088; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f010049; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uvv_autoRotation=0x7f010002; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uvv_fitXY=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int uvv_scalable=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f010044; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f010050; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010052; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010053; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f010057; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f010055; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010054; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f010056; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f010058; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f010059; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010051; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f090002; + public static final int abc_action_bar_embed_tabs_pre_jb=0x7f090000; + public static final int abc_action_bar_expanded_action_views_exclusive=0x7f090003; + public static final int abc_config_actionMenuItemAllCaps=0x7f090004; + public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f090001; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f090005; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f090006; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f05003e; + public static final int abc_background_cache_hint_selector_material_light=0x7f05003f; + public static final int abc_color_highlight_material=0x7f050040; + public static final int abc_input_method_navigation_guard=0x7f050004; + public static final int abc_primary_text_disable_only_material_dark=0x7f050041; + public static final int abc_primary_text_disable_only_material_light=0x7f050042; + public static final int abc_primary_text_material_dark=0x7f050043; + public static final int abc_primary_text_material_light=0x7f050044; + public static final int abc_search_url_text=0x7f050045; + public static final int abc_search_url_text_normal=0x7f050005; + public static final int abc_search_url_text_pressed=0x7f050006; + public static final int abc_search_url_text_selected=0x7f050007; + public static final int abc_secondary_text_material_dark=0x7f050046; + public static final int abc_secondary_text_material_light=0x7f050047; + public static final int accent_material_dark=0x7f050008; + public static final int accent_material_light=0x7f050009; + public static final int background_floating_material_dark=0x7f05000a; + public static final int background_floating_material_light=0x7f05000b; + public static final int background_material_dark=0x7f05000c; + public static final int background_material_light=0x7f05000d; + public static final int bright_foreground_disabled_material_dark=0x7f05000e; + public static final int bright_foreground_disabled_material_light=0x7f05000f; + public static final int bright_foreground_inverse_material_dark=0x7f050010; + public static final int bright_foreground_inverse_material_light=0x7f050011; + public static final int bright_foreground_material_dark=0x7f050012; + public static final int bright_foreground_material_light=0x7f050013; + public static final int button_material_dark=0x7f050014; + public static final int button_material_light=0x7f050015; + public static final int dim_foreground_disabled_material_dark=0x7f050016; + public static final int dim_foreground_disabled_material_light=0x7f050017; + public static final int dim_foreground_material_dark=0x7f050018; + public static final int dim_foreground_material_light=0x7f050019; + public static final int foreground_material_dark=0x7f05001a; + public static final int foreground_material_light=0x7f05001b; + public static final int highlighted_text_material_dark=0x7f05001c; + public static final int highlighted_text_material_light=0x7f05001d; + public static final int hint_foreground_material_dark=0x7f05001e; + public static final int hint_foreground_material_light=0x7f05001f; + public static final int material_blue_grey_800=0x7f050020; + public static final int material_blue_grey_900=0x7f050021; + public static final int material_blue_grey_950=0x7f050022; + public static final int material_deep_teal_200=0x7f050023; + public static final int material_deep_teal_500=0x7f050024; + public static final int material_grey_100=0x7f050025; + public static final int material_grey_300=0x7f050026; + public static final int material_grey_50=0x7f050027; + public static final int material_grey_600=0x7f050028; + public static final int material_grey_800=0x7f050029; + public static final int material_grey_850=0x7f05002a; + public static final int material_grey_900=0x7f05002b; + public static final int primary_dark_material_dark=0x7f05002c; + public static final int primary_dark_material_light=0x7f05002d; + public static final int primary_material_dark=0x7f05002e; + public static final int primary_material_light=0x7f05002f; + public static final int primary_text_default_material_dark=0x7f050030; + public static final int primary_text_default_material_light=0x7f050031; + public static final int primary_text_disabled_material_dark=0x7f050032; + public static final int primary_text_disabled_material_light=0x7f050033; + public static final int ripple_material_dark=0x7f050034; + public static final int ripple_material_light=0x7f050035; + public static final int secondary_text_default_material_dark=0x7f050036; + public static final int secondary_text_default_material_light=0x7f050037; + public static final int secondary_text_disabled_material_dark=0x7f050038; + public static final int secondary_text_disabled_material_light=0x7f050039; + public static final int switch_thumb_disabled_material_dark=0x7f05003a; + public static final int switch_thumb_disabled_material_light=0x7f05003b; + public static final int switch_thumb_material_dark=0x7f050048; + public static final int switch_thumb_material_light=0x7f050049; + public static final int switch_thumb_normal_material_dark=0x7f05003c; + public static final int switch_thumb_normal_material_light=0x7f05003d; + public static final int uvv_black=0x7f050000; + public static final int uvv_gray=0x7f050001; + public static final int uvv_light_gray=0x7f050002; + public static final int uvv_titlebar_bg=0x7f050003; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f06000d; + public static final int abc_action_bar_default_height_material=0x7f060003; + public static final int abc_action_bar_default_padding_end_material=0x7f06000e; + public static final int abc_action_bar_default_padding_start_material=0x7f06000f; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f060011; + public static final int abc_action_bar_overflow_padding_end_material=0x7f060012; + public static final int abc_action_bar_overflow_padding_start_material=0x7f060013; + public static final int abc_action_bar_progress_bar_size=0x7f060004; + public static final int abc_action_bar_stacked_max_height=0x7f060014; + public static final int abc_action_bar_stacked_tab_max_width=0x7f060015; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f060016; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f060017; + public static final int abc_action_button_min_height_material=0x7f060018; + public static final int abc_action_button_min_width_material=0x7f060019; + public static final int abc_action_button_min_width_overflow_material=0x7f06001a; + public static final int abc_alert_dialog_button_bar_height=0x7f060002; + public static final int abc_button_inset_horizontal_material=0x7f06001b; + public static final int abc_button_inset_vertical_material=0x7f06001c; + public static final int abc_button_padding_horizontal_material=0x7f06001d; + public static final int abc_button_padding_vertical_material=0x7f06001e; + public static final int abc_config_prefDialogWidth=0x7f060007; + public static final int abc_control_corner_material=0x7f06001f; + public static final int abc_control_inset_material=0x7f060020; + public static final int abc_control_padding_material=0x7f060021; + public static final int abc_dialog_list_padding_vertical_material=0x7f060022; + public static final int abc_dialog_min_width_major=0x7f060023; + public static final int abc_dialog_min_width_minor=0x7f060024; + public static final int abc_dialog_padding_material=0x7f060025; + public static final int abc_dialog_padding_top_material=0x7f060026; + public static final int abc_disabled_alpha_material_dark=0x7f060027; + public static final int abc_disabled_alpha_material_light=0x7f060028; + public static final int abc_dropdownitem_icon_width=0x7f060029; + public static final int abc_dropdownitem_text_padding_left=0x7f06002a; + public static final int abc_dropdownitem_text_padding_right=0x7f06002b; + public static final int abc_edit_text_inset_bottom_material=0x7f06002c; + public static final int abc_edit_text_inset_horizontal_material=0x7f06002d; + public static final int abc_edit_text_inset_top_material=0x7f06002e; + public static final int abc_floating_window_z=0x7f06002f; + public static final int abc_list_item_padding_horizontal_material=0x7f060030; + public static final int abc_panel_menu_list_width=0x7f060031; + public static final int abc_search_view_preferred_width=0x7f060032; + public static final int abc_search_view_text_min_width=0x7f060008; + public static final int abc_switch_padding=0x7f060010; + public static final int abc_text_size_body_1_material=0x7f060033; + public static final int abc_text_size_body_2_material=0x7f060034; + public static final int abc_text_size_button_material=0x7f060035; + public static final int abc_text_size_caption_material=0x7f060036; + public static final int abc_text_size_display_1_material=0x7f060037; + public static final int abc_text_size_display_2_material=0x7f060038; + public static final int abc_text_size_display_3_material=0x7f060039; + public static final int abc_text_size_display_4_material=0x7f06003a; + public static final int abc_text_size_headline_material=0x7f06003b; + public static final int abc_text_size_large_material=0x7f06003c; + public static final int abc_text_size_medium_material=0x7f06003d; + public static final int abc_text_size_menu_material=0x7f06003e; + public static final int abc_text_size_small_material=0x7f06003f; + public static final int abc_text_size_subhead_material=0x7f060040; + public static final int abc_text_size_subtitle_material_toolbar=0x7f060005; + public static final int abc_text_size_title_material=0x7f060041; + public static final int abc_text_size_title_material_toolbar=0x7f060006; + public static final int activity_horizontal_margin=0x7f060000; + public static final int activity_vertical_margin=0x7f060001; + public static final int dialog_fixed_height_major=0x7f060009; + public static final int dialog_fixed_height_minor=0x7f06000a; + public static final int dialog_fixed_width_major=0x7f06000b; + public static final int dialog_fixed_width_minor=0x7f06000c; + public static final int disabled_alpha_material_dark=0x7f060042; + public static final int disabled_alpha_material_light=0x7f060043; + public static final int highlight_alpha_material_colored=0x7f060044; + public static final int highlight_alpha_material_dark=0x7f060045; + public static final int highlight_alpha_material_light=0x7f060046; + public static final int notification_large_icon_height=0x7f060047; + public static final int notification_large_icon_width=0x7f060048; + public static final int notification_subtext_size=0x7f060049; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; + public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; + public static final int abc_cab_background_internal_bg=0x7f02000f; + public static final int abc_cab_background_top_material=0x7f020010; + public static final int abc_cab_background_top_mtrl_alpha=0x7f020011; + public static final int abc_control_background_material=0x7f020012; + public static final int abc_dialog_material_background_dark=0x7f020013; + public static final int abc_dialog_material_background_light=0x7f020014; + public static final int abc_edit_text_material=0x7f020015; + public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; + public static final int abc_ic_clear_mtrl_alpha=0x7f020017; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; + public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; + public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f; + public static final int abc_ic_search_api_mtrl_alpha=0x7f020020; + public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020021; + public static final int abc_item_background_holo_dark=0x7f020022; + public static final int abc_item_background_holo_light=0x7f020023; + public static final int abc_list_divider_mtrl_alpha=0x7f020024; + public static final int abc_list_focused_holo=0x7f020025; + public static final int abc_list_longpressed_holo=0x7f020026; + public static final int abc_list_pressed_holo_dark=0x7f020027; + public static final int abc_list_pressed_holo_light=0x7f020028; + public static final int abc_list_selector_background_transition_holo_dark=0x7f020029; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002a; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002b; + public static final int abc_list_selector_disabled_holo_light=0x7f02002c; + public static final int abc_list_selector_holo_dark=0x7f02002d; + public static final int abc_list_selector_holo_light=0x7f02002e; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f02002f; + public static final int abc_popup_background_mtrl_mult=0x7f020030; + public static final int abc_ratingbar_full_material=0x7f020031; + public static final int abc_spinner_mtrl_am_alpha=0x7f020032; + public static final int abc_spinner_textfield_background_material=0x7f020033; + public static final int abc_switch_thumb_material=0x7f020034; + public static final int abc_switch_track_mtrl_alpha=0x7f020035; + public static final int abc_tab_indicator_material=0x7f020036; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020037; + public static final int abc_text_cursor_material=0x7f020038; + public static final int abc_textfield_activated_mtrl_alpha=0x7f020039; + public static final int abc_textfield_default_mtrl_alpha=0x7f02003a; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02003b; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f02003c; + public static final int abc_textfield_search_material=0x7f02003d; + public static final int ic_launcher=0x7f02003e; + public static final int notification_template_icon_bg=0x7f02004d; + public static final int uvv_back_btn=0x7f02003f; + public static final int uvv_common_ic_loading_icon=0x7f020040; + public static final int uvv_itv_player_play=0x7f020041; + public static final int uvv_on_error=0x7f020042; + public static final int uvv_play_vb_bg=0x7f020043; + public static final int uvv_play_vb_bg_progress=0x7f020044; + public static final int uvv_player_player_btn=0x7f020045; + public static final int uvv_player_scale_btn=0x7f020046; + public static final int uvv_progress_rotate=0x7f020047; + public static final int uvv_seek_dot=0x7f020048; + public static final int uvv_star_play_progress_seek=0x7f020049; + public static final int uvv_star_zoom_in=0x7f02004a; + public static final int uvv_stop_btn=0x7f02004b; + public static final int uvv_volume_btn=0x7f02004c; + } + public static final class id { + public static final int action0=0x7f0b0053; + public static final int action_bar=0x7f0b003e; + public static final int action_bar_activity_content=0x7f0b0000; + public static final int action_bar_container=0x7f0b003d; + public static final int action_bar_root=0x7f0b0039; + public static final int action_bar_spinner=0x7f0b0001; + public static final int action_bar_subtitle=0x7f0b0022; + public static final int action_bar_title=0x7f0b0021; + public static final int action_context_bar=0x7f0b003f; + public static final int action_divider=0x7f0b0057; + public static final int action_menu_divider=0x7f0b0002; + public static final int action_menu_presenter=0x7f0b0003; + public static final int action_mode_bar=0x7f0b003b; + public static final int action_mode_bar_stub=0x7f0b003a; + public static final int action_mode_close_button=0x7f0b0023; + public static final int activity_chooser_view_content=0x7f0b0024; + public static final int alertTitle=0x7f0b002e; + public static final int always=0x7f0b001b; + public static final int back_btn=0x7f0b0065; + public static final int beginning=0x7f0b0018; + public static final int buttonPanel=0x7f0b0034; + public static final int cancel_action=0x7f0b0054; + public static final int center_play_btn=0x7f0b0066; + public static final int checkbox=0x7f0b0036; + public static final int chronometer=0x7f0b005a; + public static final int collapseActionView=0x7f0b001c; + public static final int contentPanel=0x7f0b002f; + public static final int control_layout=0x7f0b0067; + public static final int custom=0x7f0b0033; + public static final int customPanel=0x7f0b0032; + public static final int decor_content_parent=0x7f0b003c; + public static final int default_activity_button=0x7f0b0027; + public static final int disableHome=0x7f0b000c; + public static final int duration=0x7f0b006c; + public static final int edit_query=0x7f0b0040; + public static final int end=0x7f0b0019; + public static final int end_padder=0x7f0b005f; + public static final int error_layout=0x7f0b0063; + public static final int error_text=0x7f0b0060; + public static final int expand_activities_button=0x7f0b0025; + public static final int expanded_menu=0x7f0b0035; + public static final int has_played=0x7f0b006a; + public static final int home=0x7f0b0004; + public static final int homeAsUp=0x7f0b000d; + public static final int icon=0x7f0b0029; + public static final int ifRoom=0x7f0b001d; + public static final int image=0x7f0b0026; + public static final int info=0x7f0b005e; + public static final int line1=0x7f0b0058; + public static final int line3=0x7f0b005c; + public static final int listMode=0x7f0b0009; + public static final int list_item=0x7f0b0028; + public static final int loading_layout=0x7f0b0062; + public static final int loading_text=0x7f0b0061; + public static final int mainButton1=0x7f0b004e; + public static final int mainEditText1=0x7f0b004d; + public static final int mainListView1=0x7f0b0052; + public static final int media_actions=0x7f0b0056; + public static final int media_controller=0x7f0b0051; + public static final int middle=0x7f0b001a; + public static final int multiply=0x7f0b0013; + public static final int never=0x7f0b001e; + public static final int none=0x7f0b000e; + public static final int normal=0x7f0b000a; + public static final int parentPanel=0x7f0b002b; + public static final int progress_circular=0x7f0b0005; + public static final int progress_horizontal=0x7f0b0006; + public static final int radio=0x7f0b0038; + public static final int scale_button=0x7f0b0069; + public static final int screen=0x7f0b0014; + public static final int scrollView=0x7f0b0030; + public static final int search_badge=0x7f0b0042; + public static final int search_bar=0x7f0b0041; + public static final int search_button=0x7f0b0043; + public static final int search_close_btn=0x7f0b0048; + public static final int search_edit_frame=0x7f0b0044; + public static final int search_go_btn=0x7f0b004a; + public static final int search_mag_icon=0x7f0b0045; + public static final int search_plate=0x7f0b0046; + public static final int search_src_text=0x7f0b0047; + public static final int search_voice_btn=0x7f0b004b; + public static final int seekbar=0x7f0b006b; + public static final int select_dialog_listview=0x7f0b004c; + public static final int shortcut=0x7f0b0037; + public static final int showCustom=0x7f0b000f; + public static final int showHome=0x7f0b0010; + public static final int showTitle=0x7f0b0011; + public static final int split_action_bar=0x7f0b0007; + public static final int src_atop=0x7f0b0015; + public static final int src_in=0x7f0b0016; + public static final int src_over=0x7f0b0017; + public static final int status_bar_latest_event_content=0x7f0b0055; + public static final int submit_area=0x7f0b0049; + public static final int tabMode=0x7f0b000b; + public static final int text=0x7f0b005d; + public static final int text2=0x7f0b005b; + public static final int textSpacerNoButtons=0x7f0b0031; + public static final int time=0x7f0b0059; + public static final int title=0x7f0b002a; + public static final int title_part=0x7f0b0064; + public static final int title_template=0x7f0b002d; + public static final int topPanel=0x7f0b002c; + public static final int turn_button=0x7f0b0068; + public static final int up=0x7f0b0008; + public static final int useLogo=0x7f0b0012; + public static final int videoView=0x7f0b0050; + public static final int video_layout=0x7f0b004f; + public static final int withText=0x7f0b001f; + public static final int wrap_content=0x7f0b0020; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f0a0001; + public static final int abc_config_activityShortDur=0x7f0a0002; + public static final int abc_max_action_buttons=0x7f0a0000; + public static final int cancel_button_image_alpha=0x7f0a0003; + public static final int status_bar_notification_info_maxnum=0x7f0a0004; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_material=0x7f030009; + public static final int abc_dialog_title_material=0x7f03000a; + public static final int abc_expanded_menu_layout=0x7f03000b; + public static final int abc_list_menu_item_checkbox=0x7f03000c; + public static final int abc_list_menu_item_icon=0x7f03000d; + public static final int abc_list_menu_item_layout=0x7f03000e; + public static final int abc_list_menu_item_radio=0x7f03000f; + public static final int abc_popup_menu_item_layout=0x7f030010; + public static final int abc_screen_content_include=0x7f030011; + public static final int abc_screen_simple=0x7f030012; + public static final int abc_screen_simple_overlay_action_mode=0x7f030013; + public static final int abc_screen_toolbar=0x7f030014; + public static final int abc_search_dropdown_item_icons_2line=0x7f030015; + public static final int abc_search_view=0x7f030016; + public static final int abc_select_dialog_material=0x7f030017; + public static final int main=0x7f030018; + public static final int notification_media_action=0x7f030019; + public static final int notification_media_cancel_action=0x7f03001a; + public static final int notification_template_big_media=0x7f03001b; + public static final int notification_template_big_media_narrow=0x7f03001c; + public static final int notification_template_lines=0x7f03001d; + public static final int notification_template_media=0x7f03001e; + public static final int notification_template_part_chronometer=0x7f03001f; + public static final int notification_template_part_time=0x7f030020; + public static final int select_dialog_item_material=0x7f030021; + public static final int select_dialog_multichoice_material=0x7f030022; + public static final int select_dialog_singlechoice_material=0x7f030023; + public static final int support_simple_spinner_dropdown_item=0x7f030024; + public static final int uvv_on_error_layout=0x7f030025; + public static final int uvv_on_loading_layout=0x7f030026; + public static final int uvv_player_controller=0x7f030027; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f070002; + public static final int abc_action_bar_home_description_format=0x7f070003; + public static final int abc_action_bar_home_subtitle_description_format=0x7f070004; + public static final int abc_action_bar_up_description=0x7f070005; + public static final int abc_action_menu_overflow_description=0x7f070006; + public static final int abc_action_mode_done=0x7f070007; + public static final int abc_activity_chooser_view_see_all=0x7f070008; + public static final int abc_activitychooserview_choose_application=0x7f070009; + public static final int abc_search_hint=0x7f07000a; + public static final int abc_searchview_description_clear=0x7f07000b; + public static final int abc_searchview_description_query=0x7f07000c; + public static final int abc_searchview_description_search=0x7f07000d; + public static final int abc_searchview_description_submit=0x7f07000e; + public static final int abc_searchview_description_voice=0x7f07000f; + public static final int abc_shareactionprovider_share_with=0x7f070010; + public static final int abc_shareactionprovider_share_with_application=0x7f070011; + public static final int abc_toolbar_collapse_description=0x7f070012; + public static final int action_settings=0x7f070000; + public static final int app_name=0x7f070001; + public static final int hello_world=0x7f070014; + public static final int status_bar_notification_info_overflow=0x7f070013; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f08007c; + public static final int AlertDialog_AppCompat_Light=0x7f08007d; + public static final int Animation_AppCompat_Dialog=0x7f08007e; + public static final int Animation_AppCompat_DropDownUp=0x7f08007f; + /** Customize your theme here. + */ + public static final int AppTheme=0x7f080000; + public static final int Base_AlertDialog_AppCompat=0x7f080080; + public static final int Base_AlertDialog_AppCompat_Light=0x7f080081; + public static final int Base_Animation_AppCompat_Dialog=0x7f080082; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f080083; + public static final int Base_DialogWindowTitle_AppCompat=0x7f080084; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f080085; + public static final int Base_TextAppearance_AppCompat=0x7f08002f; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080030; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080031; + public static final int Base_TextAppearance_AppCompat_Button=0x7f08001a; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f080032; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f080033; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f080034; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f080035; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f080036; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f080037; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080005; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080038; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f080006; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080039; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f08003a; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f08003b; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f080007; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f08003c; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f080086; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f08003d; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f08003e; + public static final int Base_TextAppearance_AppCompat_Small=0x7f08003f; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f080008; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080040; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f080009; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080041; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08000a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f080042; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f080043; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f080044; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f080046; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080047; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080048; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080049; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080078; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f080087; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08004a; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08004b; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f08004c; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08004d; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080088; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08004e; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f08004f; + public static final int Base_Theme_AppCompat=0x7f080050; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f080089; + public static final int Base_Theme_AppCompat_Dialog=0x7f08000b; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f08008a; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f08008b; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f08008c; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f080003; + public static final int Base_Theme_AppCompat_Light=0x7f080051; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f08008d; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f08000c; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f08008e; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f08008f; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080090; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080004; + public static final int Base_ThemeOverlay_AppCompat=0x7f080091; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f080092; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f080093; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080094; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f080095; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f08000d; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f08000e; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080016; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080017; + public static final int Base_V21_Theme_AppCompat=0x7f080052; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f080053; + public static final int Base_V21_Theme_AppCompat_Light=0x7f080054; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f080055; + public static final int Base_V22_Theme_AppCompat=0x7f080076; + public static final int Base_V22_Theme_AppCompat_Light=0x7f080077; + public static final int Base_V23_Theme_AppCompat=0x7f080079; + public static final int Base_V23_Theme_AppCompat_Light=0x7f08007a; + public static final int Base_V7_Theme_AppCompat=0x7f080096; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f080097; + public static final int Base_V7_Theme_AppCompat_Light=0x7f080098; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f080099; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f08009a; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f08009b; + public static final int Base_Widget_AppCompat_ActionBar=0x7f08009c; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f08009d; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f08009e; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f080056; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080057; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080058; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080059; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f08005a; + public static final int Base_Widget_AppCompat_ActionMode=0x7f08009f; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800a0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080018; + public static final int Base_Widget_AppCompat_Button=0x7f08005b; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f08005c; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f08005d; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800a1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f08007b; + public static final int Base_Widget_AppCompat_Button_Small=0x7f08005e; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f08005f; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800a2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080060; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f080061; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800a3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080002; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800a4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f080062; + public static final int Base_Widget_AppCompat_EditText=0x7f080019; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800a5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800a6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800a7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f080063; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080064; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f080065; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080066; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080067; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080068; + public static final int Base_Widget_AppCompat_ListView=0x7f080069; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f08006a; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f08006b; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f08006c; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f08006d; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800a8; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08000f; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f080010; + public static final int Base_Widget_AppCompat_RatingBar=0x7f08006e; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800a9; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800aa; + public static final int Base_Widget_AppCompat_Spinner=0x7f08006f; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080070; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f080071; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ab; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f080072; + public static final int Platform_AppCompat=0x7f080011; + public static final int Platform_AppCompat_Light=0x7f080012; + public static final int Platform_ThemeOverlay_AppCompat=0x7f080073; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f080074; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f080075; + public static final int Platform_V11_AppCompat=0x7f080013; + public static final int Platform_V11_AppCompat_Light=0x7f080014; + public static final int Platform_V14_AppCompat=0x7f08001b; + public static final int Platform_V14_AppCompat_Light=0x7f08001c; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080015; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080022; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f080023; + public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f080024; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f080025; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f080026; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f080027; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f080028; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080029; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f08002a; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f08002b; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f08002c; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f08002d; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f08002e; + public static final int TextAppearance_AppCompat=0x7f0800ac; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ad; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ae; + public static final int TextAppearance_AppCompat_Button=0x7f0800af; + public static final int TextAppearance_AppCompat_Caption=0x7f0800b0; + public static final int TextAppearance_AppCompat_Display1=0x7f0800b1; + public static final int TextAppearance_AppCompat_Display2=0x7f0800b2; + public static final int TextAppearance_AppCompat_Display3=0x7f0800b3; + public static final int TextAppearance_AppCompat_Display4=0x7f0800b4; + public static final int TextAppearance_AppCompat_Headline=0x7f0800b5; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800b6; + public static final int TextAppearance_AppCompat_Large=0x7f0800b7; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800b8; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800b9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800ba; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800bb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800bc; + public static final int TextAppearance_AppCompat_Medium=0x7f0800bd; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800be; + public static final int TextAppearance_AppCompat_Menu=0x7f0800bf; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0800c0; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0800c1; + public static final int TextAppearance_AppCompat_Small=0x7f0800c2; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0800c3; + public static final int TextAppearance_AppCompat_Subhead=0x7f0800c4; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0800c5; + public static final int TextAppearance_AppCompat_Title=0x7f0800c6; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0800c7; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800c8; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0800c9; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0800ca; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0800cb; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0800cc; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0800cd; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0800ce; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0800cf; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0800d0; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f0800d1; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800d2; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800d3; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0800d4; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0800d5; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0800d6; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0800d7; + public static final int TextAppearance_StatusBar_EventContent=0x7f08001d; + public static final int TextAppearance_StatusBar_EventContent_Info=0x7f08001e; + public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f08001f; + public static final int TextAppearance_StatusBar_EventContent_Time=0x7f080020; + public static final int TextAppearance_StatusBar_EventContent_Title=0x7f080021; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800d8; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0800d9; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0800da; + public static final int Theme_AppCompat=0x7f0800db; + public static final int Theme_AppCompat_CompactMenu=0x7f0800dc; + public static final int Theme_AppCompat_Dialog=0x7f0800dd; + public static final int Theme_AppCompat_Dialog_Alert=0x7f0800de; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0800df; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f0800e0; + public static final int Theme_AppCompat_Light=0x7f0800e1; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0800e2; + public static final int Theme_AppCompat_Light_Dialog=0x7f0800e3; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0800e4; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0800e5; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0800e6; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f0800e7; + public static final int Theme_AppCompat_NoActionBar=0x7f0800e8; + public static final int ThemeOverlay_AppCompat=0x7f0800e9; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0800ea; + public static final int ThemeOverlay_AppCompat_Dark=0x7f0800eb; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800ec; + public static final int ThemeOverlay_AppCompat_Light=0x7f0800ed; + public static final int Universal_Widget_ProgressBar=0x7f080001; + public static final int Widget_AppCompat_ActionBar=0x7f0800ee; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f0800ef; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0800f0; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f0800f1; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f0800f2; + public static final int Widget_AppCompat_ActionButton=0x7f0800f3; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0800f4; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0800f5; + public static final int Widget_AppCompat_ActionMode=0x7f0800f6; + public static final int Widget_AppCompat_ActivityChooserView=0x7f0800f7; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0800f8; + public static final int Widget_AppCompat_Button=0x7f0800f9; + public static final int Widget_AppCompat_Button_Borderless=0x7f0800fa; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0800fb; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800fc; + public static final int Widget_AppCompat_Button_Colored=0x7f0800fd; + public static final int Widget_AppCompat_Button_Small=0x7f0800fe; + public static final int Widget_AppCompat_ButtonBar=0x7f0800ff; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080100; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080101; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f080102; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f080103; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f080104; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f080105; + public static final int Widget_AppCompat_EditText=0x7f080106; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080107; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080108; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080109; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f08010a; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f08010b; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f08010c; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08010d; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f08010e; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f08010f; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080110; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f080111; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f080112; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f080113; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f080114; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f080115; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f080116; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080117; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080118; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080119; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f08011a; + public static final int Widget_AppCompat_Light_SearchView=0x7f08011b; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f08011c; + public static final int Widget_AppCompat_ListPopupWindow=0x7f08011d; + public static final int Widget_AppCompat_ListView=0x7f08011e; + public static final int Widget_AppCompat_ListView_DropDown=0x7f08011f; + public static final int Widget_AppCompat_ListView_Menu=0x7f080120; + public static final int Widget_AppCompat_PopupMenu=0x7f080121; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f080122; + public static final int Widget_AppCompat_PopupWindow=0x7f080123; + public static final int Widget_AppCompat_ProgressBar=0x7f080124; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f080125; + public static final int Widget_AppCompat_RatingBar=0x7f080126; + public static final int Widget_AppCompat_SearchView=0x7f080127; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080128; + public static final int Widget_AppCompat_Spinner=0x7f080129; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f08012a; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f08012b; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08012c; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08012d; + public static final int Widget_AppCompat_Toolbar=0x7f08012e; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08012f; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background com.naveed.ytextractor:background}
{@link #ActionBar_backgroundSplit com.naveed.ytextractor:backgroundSplit}
{@link #ActionBar_backgroundStacked com.naveed.ytextractor:backgroundStacked}
{@link #ActionBar_contentInsetEnd com.naveed.ytextractor:contentInsetEnd}
{@link #ActionBar_contentInsetLeft com.naveed.ytextractor:contentInsetLeft}
{@link #ActionBar_contentInsetRight com.naveed.ytextractor:contentInsetRight}
{@link #ActionBar_contentInsetStart com.naveed.ytextractor:contentInsetStart}
{@link #ActionBar_customNavigationLayout com.naveed.ytextractor:customNavigationLayout}
{@link #ActionBar_displayOptions com.naveed.ytextractor:displayOptions}
{@link #ActionBar_divider com.naveed.ytextractor:divider}
{@link #ActionBar_elevation com.naveed.ytextractor:elevation}
{@link #ActionBar_height com.naveed.ytextractor:height}
{@link #ActionBar_hideOnContentScroll com.naveed.ytextractor:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator com.naveed.ytextractor:homeAsUpIndicator}
{@link #ActionBar_homeLayout com.naveed.ytextractor:homeLayout}
{@link #ActionBar_icon com.naveed.ytextractor:icon}
{@link #ActionBar_indeterminateProgressStyle com.naveed.ytextractor:indeterminateProgressStyle}
{@link #ActionBar_itemPadding com.naveed.ytextractor:itemPadding}
{@link #ActionBar_logo com.naveed.ytextractor:logo}
{@link #ActionBar_navigationMode com.naveed.ytextractor:navigationMode}
{@link #ActionBar_popupTheme com.naveed.ytextractor:popupTheme}
{@link #ActionBar_progressBarPadding com.naveed.ytextractor:progressBarPadding}
{@link #ActionBar_progressBarStyle com.naveed.ytextractor:progressBarStyle}
{@link #ActionBar_subtitle com.naveed.ytextractor:subtitle}
{@link #ActionBar_subtitleTextStyle com.naveed.ytextractor:subtitleTextStyle}
{@link #ActionBar_title com.naveed.ytextractor:title}
{@link #ActionBar_titleTextStyle com.naveed.ytextractor:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f010004, 0x7f010006, 0x7f010007, 0x7f010008, + 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, + 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01007e + }; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.naveed.ytextractor:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.naveed.ytextractor:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name com.naveed.ytextractor:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:elevation + */ + public static final int ActionBar_elevation = 24; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 26; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name com.naveed.ytextractor:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:popupTheme + */ + public static final int ActionBar_popupTheme = 25; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background com.naveed.ytextractor:background}
{@link #ActionMode_backgroundSplit com.naveed.ytextractor:backgroundSplit}
{@link #ActionMode_closeItemLayout com.naveed.ytextractor:closeItemLayout}
{@link #ActionMode_height com.naveed.ytextractor:height}
{@link #ActionMode_subtitleTextStyle com.naveed.ytextractor:subtitleTextStyle}
{@link #ActionMode_titleTextStyle com.naveed.ytextractor:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f010004, 0x7f01000a, 0x7f01000b, 0x7f01000f, + 0x7f010011, 0x7f01001f + }; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.naveed.ytextractor:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.naveed.ytextractor:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount com.naveed.ytextractor:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f010020, 0x7f010021 + }; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout com.naveed.ytextractor:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout com.naveed.ytextractor:listItemLayout}
{@link #AlertDialog_listLayout com.naveed.ytextractor:listLayout}
{@link #AlertDialog_multiChoiceItemLayout com.naveed.ytextractor:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout com.naveed.ytextractor:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f010022, 0x7f010023, 0x7f010024, + 0x7f010025, 0x7f010026 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps com.naveed.ytextractor:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010027 + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name com.naveed.ytextractor:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint com.naveed.ytextractor:buttonTint}
{@link #CompoundButton_buttonTintMode com.naveed.ytextractor:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f010028, 0x7f010029 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.naveed.ytextractor:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength com.naveed.ytextractor:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength com.naveed.ytextractor:arrowShaftLength}
{@link #DrawerArrowToggle_barLength com.naveed.ytextractor:barLength}
{@link #DrawerArrowToggle_color com.naveed.ytextractor:color}
{@link #DrawerArrowToggle_drawableSize com.naveed.ytextractor:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars com.naveed.ytextractor:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars com.naveed.ytextractor:spinBars}
{@link #DrawerArrowToggle_thickness com.naveed.ytextractor:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, + 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031 + }; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider com.naveed.ytextractor:divider}
{@link #LinearLayoutCompat_dividerPadding com.naveed.ytextractor:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild com.naveed.ytextractor:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers com.naveed.ytextractor:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f01000e, 0x7f010032, 0x7f010033, + 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name com.naveed.ytextractor:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout com.naveed.ytextractor:actionLayout}
{@link #MenuItem_actionProviderClass com.naveed.ytextractor:actionProviderClass}
{@link #MenuItem_actionViewClass com.naveed.ytextractor:actionViewClass}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_showAsAction com.naveed.ytextractor:showAsAction}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_showAsAction + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010038 + }; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionLayout + */ + public static final int MenuItem_actionLayout = 14; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 16; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:actionViewClass + */ + public static final int MenuItem_actionViewClass = 15; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name com.naveed.ytextractor:showAsAction + */ + public static final int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing com.naveed.ytextractor:preserveIconSpacing}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f010039 + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor com.naveed.ytextractor:overlapAnchor}
+ @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x7f01003a + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 1; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor com.naveed.ytextractor:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f01003b + }; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon com.naveed.ytextractor:closeIcon}
{@link #SearchView_commitIcon com.naveed.ytextractor:commitIcon}
{@link #SearchView_defaultQueryHint com.naveed.ytextractor:defaultQueryHint}
{@link #SearchView_goIcon com.naveed.ytextractor:goIcon}
{@link #SearchView_iconifiedByDefault com.naveed.ytextractor:iconifiedByDefault}
{@link #SearchView_layout com.naveed.ytextractor:layout}
{@link #SearchView_queryBackground com.naveed.ytextractor:queryBackground}
{@link #SearchView_queryHint com.naveed.ytextractor:queryHint}
{@link #SearchView_searchHintIcon com.naveed.ytextractor:searchHintIcon}
{@link #SearchView_searchIcon com.naveed.ytextractor:searchIcon}
{@link #SearchView_submitBackground com.naveed.ytextractor:submitBackground}
{@link #SearchView_suggestionRowLayout com.naveed.ytextractor:suggestionRowLayout}
{@link #SearchView_voiceIcon com.naveed.ytextractor:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, + 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, + 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, + 0x7f010048 + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme com.naveed.ytextractor:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x01010176, 0x0101017b, 0x01010262, 0x7f01001e + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 2; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 1; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:popupTheme + */ + public static final int Spinner_popupTheme = 3; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText com.naveed.ytextractor:showText}
{@link #SwitchCompat_splitTrack com.naveed.ytextractor:splitTrack}
{@link #SwitchCompat_switchMinWidth com.naveed.ytextractor:switchMinWidth}
{@link #SwitchCompat_switchPadding com.naveed.ytextractor:switchPadding}
{@link #SwitchCompat_switchTextAppearance com.naveed.ytextractor:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding com.naveed.ytextractor:thumbTextPadding}
{@link #SwitchCompat_track com.naveed.ytextractor:track}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_track + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f010049, + 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, + 0x7f01004e, 0x7f01004f + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:showText + */ + public static final int SwitchCompat_showText = 9; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:splitTrack + */ + public static final int SwitchCompat_splitTrack = 8; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 6; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:switchPadding + */ + public static final int SwitchCompat_switchPadding = 7; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 5; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 4; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:track + */ + public static final int SwitchCompat_track = 3; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps com.naveed.ytextractor:textAllCaps}
+ @see #TextAppearance_android_textColor + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x7f010027 + }; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name com.naveed.ytextractor:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 4; + /** Attributes that can be used with a Theme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Theme_actionBarDivider com.naveed.ytextractor:actionBarDivider}
{@link #Theme_actionBarItemBackground com.naveed.ytextractor:actionBarItemBackground}
{@link #Theme_actionBarPopupTheme com.naveed.ytextractor:actionBarPopupTheme}
{@link #Theme_actionBarSize com.naveed.ytextractor:actionBarSize}
{@link #Theme_actionBarSplitStyle com.naveed.ytextractor:actionBarSplitStyle}
{@link #Theme_actionBarStyle com.naveed.ytextractor:actionBarStyle}
{@link #Theme_actionBarTabBarStyle com.naveed.ytextractor:actionBarTabBarStyle}
{@link #Theme_actionBarTabStyle com.naveed.ytextractor:actionBarTabStyle}
{@link #Theme_actionBarTabTextStyle com.naveed.ytextractor:actionBarTabTextStyle}
{@link #Theme_actionBarTheme com.naveed.ytextractor:actionBarTheme}
{@link #Theme_actionBarWidgetTheme com.naveed.ytextractor:actionBarWidgetTheme}
{@link #Theme_actionButtonStyle com.naveed.ytextractor:actionButtonStyle}
{@link #Theme_actionDropDownStyle com.naveed.ytextractor:actionDropDownStyle}
{@link #Theme_actionMenuTextAppearance com.naveed.ytextractor:actionMenuTextAppearance}
{@link #Theme_actionMenuTextColor com.naveed.ytextractor:actionMenuTextColor}
{@link #Theme_actionModeBackground com.naveed.ytextractor:actionModeBackground}
{@link #Theme_actionModeCloseButtonStyle com.naveed.ytextractor:actionModeCloseButtonStyle}
{@link #Theme_actionModeCloseDrawable com.naveed.ytextractor:actionModeCloseDrawable}
{@link #Theme_actionModeCopyDrawable com.naveed.ytextractor:actionModeCopyDrawable}
{@link #Theme_actionModeCutDrawable com.naveed.ytextractor:actionModeCutDrawable}
{@link #Theme_actionModeFindDrawable com.naveed.ytextractor:actionModeFindDrawable}
{@link #Theme_actionModePasteDrawable com.naveed.ytextractor:actionModePasteDrawable}
{@link #Theme_actionModePopupWindowStyle com.naveed.ytextractor:actionModePopupWindowStyle}
{@link #Theme_actionModeSelectAllDrawable com.naveed.ytextractor:actionModeSelectAllDrawable}
{@link #Theme_actionModeShareDrawable com.naveed.ytextractor:actionModeShareDrawable}
{@link #Theme_actionModeSplitBackground com.naveed.ytextractor:actionModeSplitBackground}
{@link #Theme_actionModeStyle com.naveed.ytextractor:actionModeStyle}
{@link #Theme_actionModeWebSearchDrawable com.naveed.ytextractor:actionModeWebSearchDrawable}
{@link #Theme_actionOverflowButtonStyle com.naveed.ytextractor:actionOverflowButtonStyle}
{@link #Theme_actionOverflowMenuStyle com.naveed.ytextractor:actionOverflowMenuStyle}
{@link #Theme_activityChooserViewStyle com.naveed.ytextractor:activityChooserViewStyle}
{@link #Theme_alertDialogButtonGroupStyle com.naveed.ytextractor:alertDialogButtonGroupStyle}
{@link #Theme_alertDialogCenterButtons com.naveed.ytextractor:alertDialogCenterButtons}
{@link #Theme_alertDialogStyle com.naveed.ytextractor:alertDialogStyle}
{@link #Theme_alertDialogTheme com.naveed.ytextractor:alertDialogTheme}
{@link #Theme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #Theme_android_windowIsFloating android:windowIsFloating}
{@link #Theme_autoCompleteTextViewStyle com.naveed.ytextractor:autoCompleteTextViewStyle}
{@link #Theme_borderlessButtonStyle com.naveed.ytextractor:borderlessButtonStyle}
{@link #Theme_buttonBarButtonStyle com.naveed.ytextractor:buttonBarButtonStyle}
{@link #Theme_buttonBarNegativeButtonStyle com.naveed.ytextractor:buttonBarNegativeButtonStyle}
{@link #Theme_buttonBarNeutralButtonStyle com.naveed.ytextractor:buttonBarNeutralButtonStyle}
{@link #Theme_buttonBarPositiveButtonStyle com.naveed.ytextractor:buttonBarPositiveButtonStyle}
{@link #Theme_buttonBarStyle com.naveed.ytextractor:buttonBarStyle}
{@link #Theme_buttonStyle com.naveed.ytextractor:buttonStyle}
{@link #Theme_buttonStyleSmall com.naveed.ytextractor:buttonStyleSmall}
{@link #Theme_checkboxStyle com.naveed.ytextractor:checkboxStyle}
{@link #Theme_checkedTextViewStyle com.naveed.ytextractor:checkedTextViewStyle}
{@link #Theme_colorAccent com.naveed.ytextractor:colorAccent}
{@link #Theme_colorButtonNormal com.naveed.ytextractor:colorButtonNormal}
{@link #Theme_colorControlActivated com.naveed.ytextractor:colorControlActivated}
{@link #Theme_colorControlHighlight com.naveed.ytextractor:colorControlHighlight}
{@link #Theme_colorControlNormal com.naveed.ytextractor:colorControlNormal}
{@link #Theme_colorPrimary com.naveed.ytextractor:colorPrimary}
{@link #Theme_colorPrimaryDark com.naveed.ytextractor:colorPrimaryDark}
{@link #Theme_colorSwitchThumbNormal com.naveed.ytextractor:colorSwitchThumbNormal}
{@link #Theme_controlBackground com.naveed.ytextractor:controlBackground}
{@link #Theme_dialogPreferredPadding com.naveed.ytextractor:dialogPreferredPadding}
{@link #Theme_dialogTheme com.naveed.ytextractor:dialogTheme}
{@link #Theme_dividerHorizontal com.naveed.ytextractor:dividerHorizontal}
{@link #Theme_dividerVertical com.naveed.ytextractor:dividerVertical}
{@link #Theme_dropDownListViewStyle com.naveed.ytextractor:dropDownListViewStyle}
{@link #Theme_dropdownListPreferredItemHeight com.naveed.ytextractor:dropdownListPreferredItemHeight}
{@link #Theme_editTextBackground com.naveed.ytextractor:editTextBackground}
{@link #Theme_editTextColor com.naveed.ytextractor:editTextColor}
{@link #Theme_editTextStyle com.naveed.ytextractor:editTextStyle}
{@link #Theme_homeAsUpIndicator com.naveed.ytextractor:homeAsUpIndicator}
{@link #Theme_listChoiceBackgroundIndicator com.naveed.ytextractor:listChoiceBackgroundIndicator}
{@link #Theme_listDividerAlertDialog com.naveed.ytextractor:listDividerAlertDialog}
{@link #Theme_listPopupWindowStyle com.naveed.ytextractor:listPopupWindowStyle}
{@link #Theme_listPreferredItemHeight com.naveed.ytextractor:listPreferredItemHeight}
{@link #Theme_listPreferredItemHeightLarge com.naveed.ytextractor:listPreferredItemHeightLarge}
{@link #Theme_listPreferredItemHeightSmall com.naveed.ytextractor:listPreferredItemHeightSmall}
{@link #Theme_listPreferredItemPaddingLeft com.naveed.ytextractor:listPreferredItemPaddingLeft}
{@link #Theme_listPreferredItemPaddingRight com.naveed.ytextractor:listPreferredItemPaddingRight}
{@link #Theme_panelBackground com.naveed.ytextractor:panelBackground}
{@link #Theme_panelMenuListTheme com.naveed.ytextractor:panelMenuListTheme}
{@link #Theme_panelMenuListWidth com.naveed.ytextractor:panelMenuListWidth}
{@link #Theme_popupMenuStyle com.naveed.ytextractor:popupMenuStyle}
{@link #Theme_popupWindowStyle com.naveed.ytextractor:popupWindowStyle}
{@link #Theme_radioButtonStyle com.naveed.ytextractor:radioButtonStyle}
{@link #Theme_ratingBarStyle com.naveed.ytextractor:ratingBarStyle}
{@link #Theme_searchViewStyle com.naveed.ytextractor:searchViewStyle}
{@link #Theme_selectableItemBackground com.naveed.ytextractor:selectableItemBackground}
{@link #Theme_selectableItemBackgroundBorderless com.naveed.ytextractor:selectableItemBackgroundBorderless}
{@link #Theme_spinnerDropDownItemStyle com.naveed.ytextractor:spinnerDropDownItemStyle}
{@link #Theme_spinnerStyle com.naveed.ytextractor:spinnerStyle}
{@link #Theme_switchStyle com.naveed.ytextractor:switchStyle}
{@link #Theme_textAppearanceLargePopupMenu com.naveed.ytextractor:textAppearanceLargePopupMenu}
{@link #Theme_textAppearanceListItem com.naveed.ytextractor:textAppearanceListItem}
{@link #Theme_textAppearanceListItemSmall com.naveed.ytextractor:textAppearanceListItemSmall}
{@link #Theme_textAppearanceSearchResultSubtitle com.naveed.ytextractor:textAppearanceSearchResultSubtitle}
{@link #Theme_textAppearanceSearchResultTitle com.naveed.ytextractor:textAppearanceSearchResultTitle}
{@link #Theme_textAppearanceSmallPopupMenu com.naveed.ytextractor:textAppearanceSmallPopupMenu}
{@link #Theme_textColorAlertDialogListItem com.naveed.ytextractor:textColorAlertDialogListItem}
{@link #Theme_textColorSearchUrl com.naveed.ytextractor:textColorSearchUrl}
{@link #Theme_toolbarNavigationButtonStyle com.naveed.ytextractor:toolbarNavigationButtonStyle}
{@link #Theme_toolbarStyle com.naveed.ytextractor:toolbarStyle}
{@link #Theme_windowActionBar com.naveed.ytextractor:windowActionBar}
{@link #Theme_windowActionBarOverlay com.naveed.ytextractor:windowActionBarOverlay}
{@link #Theme_windowActionModeOverlay com.naveed.ytextractor:windowActionModeOverlay}
{@link #Theme_windowFixedHeightMajor com.naveed.ytextractor:windowFixedHeightMajor}
{@link #Theme_windowFixedHeightMinor com.naveed.ytextractor:windowFixedHeightMinor}
{@link #Theme_windowFixedWidthMajor com.naveed.ytextractor:windowFixedWidthMajor}
{@link #Theme_windowFixedWidthMinor com.naveed.ytextractor:windowFixedWidthMinor}
{@link #Theme_windowMinWidthMajor com.naveed.ytextractor:windowMinWidthMajor}
{@link #Theme_windowMinWidthMinor com.naveed.ytextractor:windowMinWidthMinor}
{@link #Theme_windowNoTitle com.naveed.ytextractor:windowNoTitle}
+ @see #Theme_actionBarDivider + @see #Theme_actionBarItemBackground + @see #Theme_actionBarPopupTheme + @see #Theme_actionBarSize + @see #Theme_actionBarSplitStyle + @see #Theme_actionBarStyle + @see #Theme_actionBarTabBarStyle + @see #Theme_actionBarTabStyle + @see #Theme_actionBarTabTextStyle + @see #Theme_actionBarTheme + @see #Theme_actionBarWidgetTheme + @see #Theme_actionButtonStyle + @see #Theme_actionDropDownStyle + @see #Theme_actionMenuTextAppearance + @see #Theme_actionMenuTextColor + @see #Theme_actionModeBackground + @see #Theme_actionModeCloseButtonStyle + @see #Theme_actionModeCloseDrawable + @see #Theme_actionModeCopyDrawable + @see #Theme_actionModeCutDrawable + @see #Theme_actionModeFindDrawable + @see #Theme_actionModePasteDrawable + @see #Theme_actionModePopupWindowStyle + @see #Theme_actionModeSelectAllDrawable + @see #Theme_actionModeShareDrawable + @see #Theme_actionModeSplitBackground + @see #Theme_actionModeStyle + @see #Theme_actionModeWebSearchDrawable + @see #Theme_actionOverflowButtonStyle + @see #Theme_actionOverflowMenuStyle + @see #Theme_activityChooserViewStyle + @see #Theme_alertDialogButtonGroupStyle + @see #Theme_alertDialogCenterButtons + @see #Theme_alertDialogStyle + @see #Theme_alertDialogTheme + @see #Theme_android_windowAnimationStyle + @see #Theme_android_windowIsFloating + @see #Theme_autoCompleteTextViewStyle + @see #Theme_borderlessButtonStyle + @see #Theme_buttonBarButtonStyle + @see #Theme_buttonBarNegativeButtonStyle + @see #Theme_buttonBarNeutralButtonStyle + @see #Theme_buttonBarPositiveButtonStyle + @see #Theme_buttonBarStyle + @see #Theme_buttonStyle + @see #Theme_buttonStyleSmall + @see #Theme_checkboxStyle + @see #Theme_checkedTextViewStyle + @see #Theme_colorAccent + @see #Theme_colorButtonNormal + @see #Theme_colorControlActivated + @see #Theme_colorControlHighlight + @see #Theme_colorControlNormal + @see #Theme_colorPrimary + @see #Theme_colorPrimaryDark + @see #Theme_colorSwitchThumbNormal + @see #Theme_controlBackground + @see #Theme_dialogPreferredPadding + @see #Theme_dialogTheme + @see #Theme_dividerHorizontal + @see #Theme_dividerVertical + @see #Theme_dropDownListViewStyle + @see #Theme_dropdownListPreferredItemHeight + @see #Theme_editTextBackground + @see #Theme_editTextColor + @see #Theme_editTextStyle + @see #Theme_homeAsUpIndicator + @see #Theme_listChoiceBackgroundIndicator + @see #Theme_listDividerAlertDialog + @see #Theme_listPopupWindowStyle + @see #Theme_listPreferredItemHeight + @see #Theme_listPreferredItemHeightLarge + @see #Theme_listPreferredItemHeightSmall + @see #Theme_listPreferredItemPaddingLeft + @see #Theme_listPreferredItemPaddingRight + @see #Theme_panelBackground + @see #Theme_panelMenuListTheme + @see #Theme_panelMenuListWidth + @see #Theme_popupMenuStyle + @see #Theme_popupWindowStyle + @see #Theme_radioButtonStyle + @see #Theme_ratingBarStyle + @see #Theme_searchViewStyle + @see #Theme_selectableItemBackground + @see #Theme_selectableItemBackgroundBorderless + @see #Theme_spinnerDropDownItemStyle + @see #Theme_spinnerStyle + @see #Theme_switchStyle + @see #Theme_textAppearanceLargePopupMenu + @see #Theme_textAppearanceListItem + @see #Theme_textAppearanceListItemSmall + @see #Theme_textAppearanceSearchResultSubtitle + @see #Theme_textAppearanceSearchResultTitle + @see #Theme_textAppearanceSmallPopupMenu + @see #Theme_textColorAlertDialogListItem + @see #Theme_textColorSearchUrl + @see #Theme_toolbarNavigationButtonStyle + @see #Theme_toolbarStyle + @see #Theme_windowActionBar + @see #Theme_windowActionBarOverlay + @see #Theme_windowActionModeOverlay + @see #Theme_windowFixedHeightMajor + @see #Theme_windowFixedHeightMinor + @see #Theme_windowFixedWidthMajor + @see #Theme_windowFixedWidthMinor + @see #Theme_windowMinWidthMajor + @see #Theme_windowMinWidthMinor + @see #Theme_windowNoTitle + */ + public static final int[] Theme = { + 0x01010057, 0x010100ae, 0x7f010050, 0x7f010051, + 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, + 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, + 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, + 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, + 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, + 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, + 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, + 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, + 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, + 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, + 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, + 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, + 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, + 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, + 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, + 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, + 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, + 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, + 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, + 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, + 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, + 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, + 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, + 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, + 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, + 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9 + }; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionBarDivider} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionBarDivider + */ + public static final int Theme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionBarItemBackground + */ + public static final int Theme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionBarPopupTheme + */ + public static final int Theme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionBarSize} + attribute's value can be found in the {@link #Theme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name com.naveed.ytextractor:actionBarSize + */ + public static final int Theme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionBarSplitStyle + */ + public static final int Theme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionBarStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionBarStyle + */ + public static final int Theme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionBarTabBarStyle + */ + public static final int Theme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionBarTabStyle + */ + public static final int Theme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionBarTabTextStyle + */ + public static final int Theme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionBarTheme} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionBarTheme + */ + public static final int Theme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionBarWidgetTheme + */ + public static final int Theme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionButtonStyle + */ + public static final int Theme_actionButtonStyle = 49; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionDropDownStyle + */ + public static final int Theme_actionDropDownStyle = 45; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionMenuTextAppearance + */ + public static final int Theme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #Theme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.naveed.ytextractor:actionMenuTextColor + */ + public static final int Theme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionModeBackground} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionModeBackground + */ + public static final int Theme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionModeCloseButtonStyle + */ + public static final int Theme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionModeCloseDrawable + */ + public static final int Theme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionModeCopyDrawable + */ + public static final int Theme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionModeCutDrawable + */ + public static final int Theme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionModeFindDrawable + */ + public static final int Theme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionModePasteDrawable + */ + public static final int Theme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionModePopupWindowStyle + */ + public static final int Theme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionModeSelectAllDrawable + */ + public static final int Theme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionModeShareDrawable + */ + public static final int Theme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionModeSplitBackground + */ + public static final int Theme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionModeStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionModeStyle + */ + public static final int Theme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionModeWebSearchDrawable + */ + public static final int Theme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionOverflowButtonStyle + */ + public static final int Theme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:actionOverflowMenuStyle + */ + public static final int Theme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:activityChooserViewStyle + */ + public static final int Theme_activityChooserViewStyle = 57; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:alertDialogButtonGroupStyle + */ + public static final int Theme_alertDialogButtonGroupStyle = 91; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:alertDialogCenterButtons + */ + public static final int Theme_alertDialogCenterButtons = 92; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:alertDialogStyle + */ + public static final int Theme_alertDialogStyle = 90; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:alertDialogTheme + */ + public static final int Theme_alertDialogTheme = 93; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #Theme} array. + @attr name android:windowAnimationStyle + */ + public static final int Theme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #Theme} array. + @attr name android:windowIsFloating + */ + public static final int Theme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:autoCompleteTextViewStyle + */ + public static final int Theme_autoCompleteTextViewStyle = 98; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:borderlessButtonStyle + */ + public static final int Theme_borderlessButtonStyle = 54; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:buttonBarButtonStyle + */ + public static final int Theme_buttonBarButtonStyle = 51; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:buttonBarNegativeButtonStyle + */ + public static final int Theme_buttonBarNegativeButtonStyle = 96; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:buttonBarNeutralButtonStyle + */ + public static final int Theme_buttonBarNeutralButtonStyle = 97; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:buttonBarPositiveButtonStyle + */ + public static final int Theme_buttonBarPositiveButtonStyle = 95; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:buttonBarStyle + */ + public static final int Theme_buttonBarStyle = 50; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#buttonStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:buttonStyle + */ + public static final int Theme_buttonStyle = 99; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:buttonStyleSmall + */ + public static final int Theme_buttonStyleSmall = 100; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#checkboxStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:checkboxStyle + */ + public static final int Theme_checkboxStyle = 101; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:checkedTextViewStyle + */ + public static final int Theme_checkedTextViewStyle = 102; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#colorAccent} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:colorAccent + */ + public static final int Theme_colorAccent = 83; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:colorButtonNormal + */ + public static final int Theme_colorButtonNormal = 87; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#colorControlActivated} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:colorControlActivated + */ + public static final int Theme_colorControlActivated = 85; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:colorControlHighlight + */ + public static final int Theme_colorControlHighlight = 86; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#colorControlNormal} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:colorControlNormal + */ + public static final int Theme_colorControlNormal = 84; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#colorPrimary} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:colorPrimary + */ + public static final int Theme_colorPrimary = 81; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:colorPrimaryDark + */ + public static final int Theme_colorPrimaryDark = 82; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:colorSwitchThumbNormal + */ + public static final int Theme_colorSwitchThumbNormal = 88; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#controlBackground} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:controlBackground + */ + public static final int Theme_controlBackground = 89; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:dialogPreferredPadding + */ + public static final int Theme_dialogPreferredPadding = 43; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#dialogTheme} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:dialogTheme + */ + public static final int Theme_dialogTheme = 42; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:dividerHorizontal + */ + public static final int Theme_dividerHorizontal = 56; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#dividerVertical} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:dividerVertical + */ + public static final int Theme_dividerVertical = 55; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:dropDownListViewStyle + */ + public static final int Theme_dropDownListViewStyle = 73; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:dropdownListPreferredItemHeight + */ + public static final int Theme_dropdownListPreferredItemHeight = 46; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#editTextBackground} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:editTextBackground + */ + public static final int Theme_editTextBackground = 63; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#editTextColor} + attribute's value can be found in the {@link #Theme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.naveed.ytextractor:editTextColor + */ + public static final int Theme_editTextColor = 62; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#editTextStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:editTextStyle + */ + public static final int Theme_editTextStyle = 103; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:homeAsUpIndicator + */ + public static final int Theme_homeAsUpIndicator = 48; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:listChoiceBackgroundIndicator + */ + public static final int Theme_listChoiceBackgroundIndicator = 80; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:listDividerAlertDialog + */ + public static final int Theme_listDividerAlertDialog = 44; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:listPopupWindowStyle + */ + public static final int Theme_listPopupWindowStyle = 74; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:listPreferredItemHeight + */ + public static final int Theme_listPreferredItemHeight = 68; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:listPreferredItemHeightLarge + */ + public static final int Theme_listPreferredItemHeightLarge = 70; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:listPreferredItemHeightSmall + */ + public static final int Theme_listPreferredItemHeightSmall = 69; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:listPreferredItemPaddingLeft + */ + public static final int Theme_listPreferredItemPaddingLeft = 71; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:listPreferredItemPaddingRight + */ + public static final int Theme_listPreferredItemPaddingRight = 72; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#panelBackground} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:panelBackground + */ + public static final int Theme_panelBackground = 77; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:panelMenuListTheme + */ + public static final int Theme_panelMenuListTheme = 79; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:panelMenuListWidth + */ + public static final int Theme_panelMenuListWidth = 78; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:popupMenuStyle + */ + public static final int Theme_popupMenuStyle = 60; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:popupWindowStyle + */ + public static final int Theme_popupWindowStyle = 61; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:radioButtonStyle + */ + public static final int Theme_radioButtonStyle = 104; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:ratingBarStyle + */ + public static final int Theme_ratingBarStyle = 105; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#searchViewStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:searchViewStyle + */ + public static final int Theme_searchViewStyle = 67; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:selectableItemBackground + */ + public static final int Theme_selectableItemBackground = 52; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:selectableItemBackgroundBorderless + */ + public static final int Theme_selectableItemBackgroundBorderless = 53; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:spinnerDropDownItemStyle + */ + public static final int Theme_spinnerDropDownItemStyle = 47; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#spinnerStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:spinnerStyle + */ + public static final int Theme_spinnerStyle = 106; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#switchStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:switchStyle + */ + public static final int Theme_switchStyle = 107; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:textAppearanceLargePopupMenu + */ + public static final int Theme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:textAppearanceListItem + */ + public static final int Theme_textAppearanceListItem = 75; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:textAppearanceListItemSmall + */ + public static final int Theme_textAppearanceListItemSmall = 76; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:textAppearanceSearchResultSubtitle + */ + public static final int Theme_textAppearanceSearchResultSubtitle = 65; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:textAppearanceSearchResultTitle + */ + public static final int Theme_textAppearanceSearchResultTitle = 64; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:textAppearanceSmallPopupMenu + */ + public static final int Theme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #Theme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.naveed.ytextractor:textColorAlertDialogListItem + */ + public static final int Theme_textColorAlertDialogListItem = 94; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #Theme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.naveed.ytextractor:textColorSearchUrl + */ + public static final int Theme_textColorSearchUrl = 66; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:toolbarNavigationButtonStyle + */ + public static final int Theme_toolbarNavigationButtonStyle = 59; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#toolbarStyle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:toolbarStyle + */ + public static final int Theme_toolbarStyle = 58; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#windowActionBar} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:windowActionBar + */ + public static final int Theme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:windowActionBarOverlay + */ + public static final int Theme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:windowActionModeOverlay + */ + public static final int Theme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #Theme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:windowFixedHeightMajor + */ + public static final int Theme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #Theme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:windowFixedHeightMinor + */ + public static final int Theme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #Theme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:windowFixedWidthMajor + */ + public static final int Theme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #Theme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:windowFixedWidthMinor + */ + public static final int Theme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #Theme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:windowMinWidthMajor + */ + public static final int Theme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #Theme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:windowMinWidthMinor + */ + public static final int Theme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#windowNoTitle} + attribute's value can be found in the {@link #Theme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:windowNoTitle + */ + public static final int Theme_windowNoTitle = 3; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription com.naveed.ytextractor:collapseContentDescription}
{@link #Toolbar_collapseIcon com.naveed.ytextractor:collapseIcon}
{@link #Toolbar_contentInsetEnd com.naveed.ytextractor:contentInsetEnd}
{@link #Toolbar_contentInsetLeft com.naveed.ytextractor:contentInsetLeft}
{@link #Toolbar_contentInsetRight com.naveed.ytextractor:contentInsetRight}
{@link #Toolbar_contentInsetStart com.naveed.ytextractor:contentInsetStart}
{@link #Toolbar_logo com.naveed.ytextractor:logo}
{@link #Toolbar_logoDescription com.naveed.ytextractor:logoDescription}
{@link #Toolbar_maxButtonHeight com.naveed.ytextractor:maxButtonHeight}
{@link #Toolbar_navigationContentDescription com.naveed.ytextractor:navigationContentDescription}
{@link #Toolbar_navigationIcon com.naveed.ytextractor:navigationIcon}
{@link #Toolbar_popupTheme com.naveed.ytextractor:popupTheme}
{@link #Toolbar_subtitle com.naveed.ytextractor:subtitle}
{@link #Toolbar_subtitleTextAppearance com.naveed.ytextractor:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor com.naveed.ytextractor:subtitleTextColor}
{@link #Toolbar_title com.naveed.ytextractor:title}
{@link #Toolbar_titleMarginBottom com.naveed.ytextractor:titleMarginBottom}
{@link #Toolbar_titleMarginEnd com.naveed.ytextractor:titleMarginEnd}
{@link #Toolbar_titleMarginStart com.naveed.ytextractor:titleMarginStart}
{@link #Toolbar_titleMarginTop com.naveed.ytextractor:titleMarginTop}
{@link #Toolbar_titleMargins com.naveed.ytextractor:titleMargins}
{@link #Toolbar_titleTextAppearance com.naveed.ytextractor:titleTextAppearance}
{@link #Toolbar_titleTextColor com.naveed.ytextractor:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f010006, 0x7f010009, + 0x7f01000d, 0x7f010019, 0x7f01001a, 0x7f01001b, + 0x7f01001c, 0x7f01001e, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, + 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, + 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, + 0x7f0100c8 + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 19; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:collapseIcon + */ + public static final int Toolbar_collapseIcon = 18; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:logoDescription + */ + public static final int Toolbar_logoDescription = 22; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 17; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 21; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:navigationIcon + */ + public static final int Toolbar_navigationIcon = 20; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:popupTheme + */ + public static final int Toolbar_popupTheme = 9; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 11; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 24; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 16; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 14; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 13; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 15; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:titleMargins + */ + public static final int Toolbar_titleMargins = 12; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 10; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:titleTextColor + */ + public static final int Toolbar_titleTextColor = 23; + /** Attributes that can be used with a UniversalMediaController. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #UniversalMediaController_uvv_scalable com.naveed.ytextractor:uvv_scalable}
+ @see #UniversalMediaController_uvv_scalable + */ + public static final int[] UniversalMediaController = { + 0x7f010000 + }; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#uvv_scalable} + attribute's value can be found in the {@link #UniversalMediaController} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:uvv_scalable + */ + public static final int UniversalMediaController_uvv_scalable = 0; + /** Attributes that can be used with a UniversalVideoView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #UniversalVideoView_uvv_autoRotation com.naveed.ytextractor:uvv_autoRotation}
{@link #UniversalVideoView_uvv_fitXY com.naveed.ytextractor:uvv_fitXY}
+ @see #UniversalVideoView_uvv_autoRotation + @see #UniversalVideoView_uvv_fitXY + */ + public static final int[] UniversalVideoView = { + 0x7f010001, 0x7f010002 + }; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#uvv_autoRotation} + attribute's value can be found in the {@link #UniversalVideoView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:uvv_autoRotation + */ + public static final int UniversalVideoView_uvv_autoRotation = 1; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#uvv_fitXY} + attribute's value can be found in the {@link #UniversalVideoView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:uvv_fitXY + */ + public static final int UniversalVideoView_uvv_fitXY = 0; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd com.naveed.ytextractor:paddingEnd}
{@link #View_paddingStart com.naveed.ytextractor:paddingStart}
{@link #View_theme com.naveed.ytextractor:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f0100c9, 0x7f0100ca, + 0x7f0100cb + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.naveed.ytextractor:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint com.naveed.ytextractor:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode com.naveed.ytextractor:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f0100cc, 0x7f0100cd + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.naveed.ytextractor:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.naveed.ytextractor:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/YoutubeExtractor/app/build/gen/com/naveed/ytextractor/R.java b/YoutubeExtractor/app/build/gen/com/naveed/ytextractor/R.java index 6df9ad4..b8f47eb 100644 --- a/YoutubeExtractor/app/build/gen/com/naveed/ytextractor/R.java +++ b/YoutubeExtractor/app/build/gen/com/naveed/ytextractor/R.java @@ -24,15 +24,15 @@ public static final class attr { /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarDivider=0x7f010062; + public static final int actionBarDivider=0x7f010065; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarItemBackground=0x7f010063; + public static final int actionBarItemBackground=0x7f010066; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarPopupTheme=0x7f01005c; + public static final int actionBarPopupTheme=0x7f01005f; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -50,117 +50,117 @@ theme attribute (in the form wrap_content0 */ - public static final int actionBarSize=0x7f010061; + public static final int actionBarSize=0x7f010064; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarSplitStyle=0x7f01005e; + public static final int actionBarSplitStyle=0x7f010061; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarStyle=0x7f01005d; + public static final int actionBarStyle=0x7f010060; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarTabBarStyle=0x7f010058; + public static final int actionBarTabBarStyle=0x7f01005b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarTabStyle=0x7f010057; + public static final int actionBarTabStyle=0x7f01005a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarTabTextStyle=0x7f010059; + public static final int actionBarTabTextStyle=0x7f01005c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarTheme=0x7f01005f; + public static final int actionBarTheme=0x7f010062; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarWidgetTheme=0x7f010060; + public static final int actionBarWidgetTheme=0x7f010063; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionButtonStyle=0x7f01007c; + public static final int actionButtonStyle=0x7f01007f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionDropDownStyle=0x7f010078; + public static final int actionDropDownStyle=0x7f01007b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionLayout=0x7f010033; + public static final int actionLayout=0x7f010036; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionMenuTextAppearance=0x7f010064; + public static final int actionMenuTextAppearance=0x7f010067; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int actionMenuTextColor=0x7f010065; + public static final int actionMenuTextColor=0x7f010068; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeBackground=0x7f010068; + public static final int actionModeBackground=0x7f01006b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeCloseButtonStyle=0x7f010067; + public static final int actionModeCloseButtonStyle=0x7f01006a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeCloseDrawable=0x7f01006a; + public static final int actionModeCloseDrawable=0x7f01006d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeCopyDrawable=0x7f01006c; + public static final int actionModeCopyDrawable=0x7f01006f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeCutDrawable=0x7f01006b; + public static final int actionModeCutDrawable=0x7f01006e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeFindDrawable=0x7f010070; + public static final int actionModeFindDrawable=0x7f010073; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModePasteDrawable=0x7f01006d; + public static final int actionModePasteDrawable=0x7f010070; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModePopupWindowStyle=0x7f010072; + public static final int actionModePopupWindowStyle=0x7f010075; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeSelectAllDrawable=0x7f01006e; + public static final int actionModeSelectAllDrawable=0x7f010071; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeShareDrawable=0x7f01006f; + public static final int actionModeShareDrawable=0x7f010072; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeSplitBackground=0x7f010069; + public static final int actionModeSplitBackground=0x7f01006c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeStyle=0x7f010066; + public static final int actionModeStyle=0x7f010069; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeWebSearchDrawable=0x7f010071; + public static final int actionModeWebSearchDrawable=0x7f010074; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionOverflowButtonStyle=0x7f01005a; + public static final int actionOverflowButtonStyle=0x7f01005d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionOverflowMenuStyle=0x7f01005b; + public static final int actionOverflowMenuStyle=0x7f01005e; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -168,7 +168,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int actionProviderClass=0x7f010035; + public static final int actionProviderClass=0x7f010038; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -176,15 +176,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int actionViewClass=0x7f010034; + public static final int actionViewClass=0x7f010037; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int activityChooserViewStyle=0x7f010084; + public static final int activityChooserViewStyle=0x7f010087; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int alertDialogButtonGroupStyle=0x7f0100a6; + public static final int alertDialogButtonGroupStyle=0x7f0100a9; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -192,15 +192,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int alertDialogCenterButtons=0x7f0100a7; + public static final int alertDialogCenterButtons=0x7f0100aa; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int alertDialogStyle=0x7f0100a5; + public static final int alertDialogStyle=0x7f0100a8; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int alertDialogTheme=0x7f0100a8; + public static final int alertDialogTheme=0x7f0100ab; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -210,7 +210,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int arrowHeadLength=0x7f01002b; + public static final int arrowHeadLength=0x7f01002e; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -220,27 +220,27 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int arrowShaftLength=0x7f01002c; + public static final int arrowShaftLength=0x7f01002f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int autoCompleteTextViewStyle=0x7f0100ad; + public static final int autoCompleteTextViewStyle=0x7f0100b0; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int background=0x7f01000c; + public static final int background=0x7f01000f; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int backgroundSplit=0x7f01000e; + public static final int backgroundSplit=0x7f010011; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int backgroundStacked=0x7f01000d; + public static final int backgroundStacked=0x7f010010; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -249,7 +249,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int backgroundTint=0x7f0100c9; + public static final int backgroundTint=0x7f0100cc; /**

Must be one of the following constant values.

@@ -263,7 +263,7 @@ theme attribute (in the form
screen15
*/ - public static final int backgroundTintMode=0x7f0100ca; + public static final int backgroundTintMode=0x7f0100cd; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -273,43 +273,43 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int barLength=0x7f01002d; + public static final int barLength=0x7f010030; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int borderlessButtonStyle=0x7f010081; + public static final int borderlessButtonStyle=0x7f010084; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarButtonStyle=0x7f01007e; + public static final int buttonBarButtonStyle=0x7f010081; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarNegativeButtonStyle=0x7f0100ab; + public static final int buttonBarNegativeButtonStyle=0x7f0100ae; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarNeutralButtonStyle=0x7f0100ac; + public static final int buttonBarNeutralButtonStyle=0x7f0100af; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarPositiveButtonStyle=0x7f0100aa; + public static final int buttonBarPositiveButtonStyle=0x7f0100ad; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarStyle=0x7f01007d; + public static final int buttonBarStyle=0x7f010080; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonPanelSideLayout=0x7f01001f; + public static final int buttonPanelSideLayout=0x7f010022; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonStyle=0x7f0100ae; + public static final int buttonStyle=0x7f0100b1; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonStyleSmall=0x7f0100af; + public static final int buttonStyleSmall=0x7f0100b2; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -318,7 +318,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int buttonTint=0x7f010025; + public static final int buttonTint=0x7f010028; /**

Must be one of the following constant values.

@@ -332,23 +332,23 @@ theme attribute (in the form
screen15
*/ - public static final int buttonTintMode=0x7f010026; + public static final int buttonTintMode=0x7f010029; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int checkboxStyle=0x7f0100b0; + public static final int checkboxStyle=0x7f0100b3; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int checkedTextViewStyle=0x7f0100b1; + public static final int checkedTextViewStyle=0x7f0100b4; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int closeIcon=0x7f01003d; + public static final int closeIcon=0x7f010040; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int closeItemLayout=0x7f01001c; + public static final int closeItemLayout=0x7f01001f; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -356,11 +356,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int collapseContentDescription=0x7f0100c0; + public static final int collapseContentDescription=0x7f0100c3; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int collapseIcon=0x7f0100bf; + public static final int collapseIcon=0x7f0100c2; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -369,7 +369,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int color=0x7f010027; + public static final int color=0x7f01002a; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -378,7 +378,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorAccent=0x7f01009e; + public static final int colorAccent=0x7f0100a1; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -387,7 +387,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorButtonNormal=0x7f0100a2; + public static final int colorButtonNormal=0x7f0100a5; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -396,7 +396,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorControlActivated=0x7f0100a0; + public static final int colorControlActivated=0x7f0100a3; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -405,7 +405,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorControlHighlight=0x7f0100a1; + public static final int colorControlHighlight=0x7f0100a4; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -414,7 +414,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorControlNormal=0x7f01009f; + public static final int colorControlNormal=0x7f0100a2; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -423,7 +423,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorPrimary=0x7f01009c; + public static final int colorPrimary=0x7f01009f; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -432,7 +432,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorPrimaryDark=0x7f01009d; + public static final int colorPrimaryDark=0x7f0100a0; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -441,11 +441,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorSwitchThumbNormal=0x7f0100a3; + public static final int colorSwitchThumbNormal=0x7f0100a6; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int commitIcon=0x7f010042; + public static final int commitIcon=0x7f010045; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -455,7 +455,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int contentInsetEnd=0x7f010017; + public static final int contentInsetEnd=0x7f01001a; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -465,7 +465,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int contentInsetLeft=0x7f010018; + public static final int contentInsetLeft=0x7f01001b; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -475,7 +475,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int contentInsetRight=0x7f010019; + public static final int contentInsetRight=0x7f01001c; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -485,15 +485,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int contentInsetStart=0x7f010016; + public static final int contentInsetStart=0x7f010019; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int controlBackground=0x7f0100a4; + public static final int controlBackground=0x7f0100a7; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int customNavigationLayout=0x7f01000f; + public static final int customNavigationLayout=0x7f010012; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -501,7 +501,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int defaultQueryHint=0x7f01003c; + public static final int defaultQueryHint=0x7f01003f; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -511,11 +511,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int dialogPreferredPadding=0x7f010076; + public static final int dialogPreferredPadding=0x7f010079; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int dialogTheme=0x7f010075; + public static final int dialogTheme=0x7f010078; /**

Must be one or more (separated by '|') of the following constant values.

@@ -531,15 +531,15 @@ theme attribute (in the form
disableHome0x20
*/ - public static final int displayOptions=0x7f010005; + public static final int displayOptions=0x7f010008; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int divider=0x7f01000b; + public static final int divider=0x7f01000e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int dividerHorizontal=0x7f010083; + public static final int dividerHorizontal=0x7f010086; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -549,11 +549,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int dividerPadding=0x7f010031; + public static final int dividerPadding=0x7f010034; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int dividerVertical=0x7f010082; + public static final int dividerVertical=0x7f010085; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -563,15 +563,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int drawableSize=0x7f010029; + public static final int drawableSize=0x7f01002c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int drawerArrowStyle=0x7f010000; + public static final int drawerArrowStyle=0x7f010003; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int dropDownListViewStyle=0x7f010094; + public static final int dropDownListViewStyle=0x7f010097; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -581,21 +581,21 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int dropdownListPreferredItemHeight=0x7f010079; + public static final int dropdownListPreferredItemHeight=0x7f01007c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int editTextBackground=0x7f01008a; + public static final int editTextBackground=0x7f01008d; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int editTextColor=0x7f010089; + public static final int editTextColor=0x7f01008c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int editTextStyle=0x7f0100b2; + public static final int editTextStyle=0x7f0100b5; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -605,11 +605,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int elevation=0x7f01001a; + public static final int elevation=0x7f01001d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int expandActivityOverflowButtonDrawable=0x7f01001e; + public static final int expandActivityOverflowButtonDrawable=0x7f010021; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -619,11 +619,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int gapBetweenBars=0x7f01002a; + public static final int gapBetweenBars=0x7f01002d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int goIcon=0x7f01003e; + public static final int goIcon=0x7f010041; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -633,7 +633,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int height=0x7f010001; + public static final int height=0x7f010004; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -641,19 +641,19 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int hideOnContentScroll=0x7f010015; + public static final int hideOnContentScroll=0x7f010018; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int homeAsUpIndicator=0x7f01007b; + public static final int homeAsUpIndicator=0x7f01007e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int homeLayout=0x7f010010; + public static final int homeLayout=0x7f010013; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int icon=0x7f010009; + public static final int icon=0x7f01000c; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -661,11 +661,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int iconifiedByDefault=0x7f01003a; + public static final int iconifiedByDefault=0x7f01003d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int indeterminateProgressStyle=0x7f010012; + public static final int indeterminateProgressStyle=0x7f010015; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -673,7 +673,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int initialActivityCount=0x7f01001d; + public static final int initialActivityCount=0x7f010020; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -681,7 +681,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int isLightTheme=0x7f010002; + public static final int isLightTheme=0x7f010005; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -691,31 +691,31 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int itemPadding=0x7f010014; + public static final int itemPadding=0x7f010017; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int layout=0x7f010039; + public static final int layout=0x7f01003c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listChoiceBackgroundIndicator=0x7f01009b; + public static final int listChoiceBackgroundIndicator=0x7f01009e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listDividerAlertDialog=0x7f010077; + public static final int listDividerAlertDialog=0x7f01007a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listItemLayout=0x7f010023; + public static final int listItemLayout=0x7f010026; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listLayout=0x7f010020; + public static final int listLayout=0x7f010023; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listPopupWindowStyle=0x7f010095; + public static final int listPopupWindowStyle=0x7f010098; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -725,7 +725,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemHeight=0x7f01008f; + public static final int listPreferredItemHeight=0x7f010092; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -735,7 +735,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemHeightLarge=0x7f010091; + public static final int listPreferredItemHeightLarge=0x7f010094; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -745,7 +745,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemHeightSmall=0x7f010090; + public static final int listPreferredItemHeightSmall=0x7f010093; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -755,7 +755,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemPaddingLeft=0x7f010092; + public static final int listPreferredItemPaddingLeft=0x7f010095; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -765,11 +765,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemPaddingRight=0x7f010093; + public static final int listPreferredItemPaddingRight=0x7f010096; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int logo=0x7f01000a; + public static final int logo=0x7f01000d; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -777,7 +777,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int logoDescription=0x7f0100c3; + public static final int logoDescription=0x7f0100c6; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -787,7 +787,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int maxButtonHeight=0x7f0100be; + public static final int maxButtonHeight=0x7f0100c1; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -795,11 +795,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int measureWithLargestChild=0x7f01002f; + public static final int measureWithLargestChild=0x7f010032; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int multiChoiceItemLayout=0x7f010021; + public static final int multiChoiceItemLayout=0x7f010024; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -807,11 +807,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int navigationContentDescription=0x7f0100c2; + public static final int navigationContentDescription=0x7f0100c5; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int navigationIcon=0x7f0100c1; + public static final int navigationIcon=0x7f0100c4; /**

Must be one of the following constant values.

@@ -823,7 +823,7 @@ theme attribute (in the form
tabMode2
*/ - public static final int navigationMode=0x7f010004; + public static final int navigationMode=0x7f010007; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -831,7 +831,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int overlapAnchor=0x7f010037; + public static final int overlapAnchor=0x7f01003a; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -841,7 +841,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int paddingEnd=0x7f0100c7; + public static final int paddingEnd=0x7f0100ca; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -851,15 +851,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int paddingStart=0x7f0100c6; + public static final int paddingStart=0x7f0100c9; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int panelBackground=0x7f010098; + public static final int panelBackground=0x7f01009b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int panelMenuListTheme=0x7f01009a; + public static final int panelMenuListTheme=0x7f01009d; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -869,19 +869,19 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int panelMenuListWidth=0x7f010099; + public static final int panelMenuListWidth=0x7f01009c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int popupMenuStyle=0x7f010087; + public static final int popupMenuStyle=0x7f01008a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int popupTheme=0x7f01001b; + public static final int popupTheme=0x7f01001e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int popupWindowStyle=0x7f010088; + public static final int popupWindowStyle=0x7f01008b; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -889,7 +889,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int preserveIconSpacing=0x7f010036; + public static final int preserveIconSpacing=0x7f010039; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -899,15 +899,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int progressBarPadding=0x7f010013; + public static final int progressBarPadding=0x7f010016; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int progressBarStyle=0x7f010011; + public static final int progressBarStyle=0x7f010014; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int queryBackground=0x7f010044; + public static final int queryBackground=0x7f010047; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -915,35 +915,35 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int queryHint=0x7f01003b; + public static final int queryHint=0x7f01003e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int radioButtonStyle=0x7f0100b3; + public static final int radioButtonStyle=0x7f0100b6; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int ratingBarStyle=0x7f0100b4; + public static final int ratingBarStyle=0x7f0100b7; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int searchHintIcon=0x7f010040; + public static final int searchHintIcon=0x7f010043; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int searchIcon=0x7f01003f; + public static final int searchIcon=0x7f010042; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int searchViewStyle=0x7f01008e; + public static final int searchViewStyle=0x7f010091; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int selectableItemBackground=0x7f01007f; + public static final int selectableItemBackground=0x7f010082; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int selectableItemBackgroundBorderless=0x7f010080; + public static final int selectableItemBackgroundBorderless=0x7f010083; /**

Must be one or more (separated by '|') of the following constant values.

@@ -957,7 +957,7 @@ theme attribute (in the form
collapseActionView8
*/ - public static final int showAsAction=0x7f010032; + public static final int showAsAction=0x7f010035; /**

Must be one or more (separated by '|') of the following constant values.

@@ -970,7 +970,7 @@ theme attribute (in the form
end4
*/ - public static final int showDividers=0x7f010030; + public static final int showDividers=0x7f010033; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -978,11 +978,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int showText=0x7f01004c; + public static final int showText=0x7f01004f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int singleChoiceItemLayout=0x7f010022; + public static final int singleChoiceItemLayout=0x7f010025; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -990,15 +990,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int spinBars=0x7f010028; + public static final int spinBars=0x7f01002b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int spinnerDropDownItemStyle=0x7f01007a; + public static final int spinnerDropDownItemStyle=0x7f01007d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int spinnerStyle=0x7f0100b5; + public static final int spinnerStyle=0x7f0100b8; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1006,7 +1006,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int splitTrack=0x7f01004b; + public static final int splitTrack=0x7f01004e; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1014,11 +1014,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int state_above_anchor=0x7f010038; + public static final int state_above_anchor=0x7f01003b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int submitBackground=0x7f010045; + public static final int submitBackground=0x7f010048; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1026,11 +1026,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int subtitle=0x7f010006; + public static final int subtitle=0x7f010009; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int subtitleTextAppearance=0x7f0100b8; + public static final int subtitleTextAppearance=0x7f0100bb; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -1039,15 +1039,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int subtitleTextColor=0x7f0100c5; + public static final int subtitleTextColor=0x7f0100c8; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int subtitleTextStyle=0x7f010008; + public static final int subtitleTextStyle=0x7f01000b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int suggestionRowLayout=0x7f010043; + public static final int suggestionRowLayout=0x7f010046; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1057,7 +1057,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int switchMinWidth=0x7f010049; + public static final int switchMinWidth=0x7f01004c; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1067,60 +1067,60 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int switchPadding=0x7f01004a; + public static final int switchPadding=0x7f01004d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int switchStyle=0x7f0100b6; + public static final int switchStyle=0x7f0100b9; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int switchTextAppearance=0x7f010048; + public static final int switchTextAppearance=0x7f01004b; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a boolean value, either "true" or "false". */ - public static final int textAllCaps=0x7f010024; + public static final int textAllCaps=0x7f010027; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceLargePopupMenu=0x7f010073; + public static final int textAppearanceLargePopupMenu=0x7f010076; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceListItem=0x7f010096; + public static final int textAppearanceListItem=0x7f010099; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceListItemSmall=0x7f010097; + public static final int textAppearanceListItemSmall=0x7f01009a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceSearchResultSubtitle=0x7f01008c; + public static final int textAppearanceSearchResultSubtitle=0x7f01008f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceSearchResultTitle=0x7f01008b; + public static final int textAppearanceSearchResultTitle=0x7f01008e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceSmallPopupMenu=0x7f010074; + public static final int textAppearanceSmallPopupMenu=0x7f010077; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int textColorAlertDialogListItem=0x7f0100a9; + public static final int textColorAlertDialogListItem=0x7f0100ac; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int textColorSearchUrl=0x7f01008d; + public static final int textColorSearchUrl=0x7f010090; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int theme=0x7f0100c8; + public static final int theme=0x7f0100cb; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1130,7 +1130,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int thickness=0x7f01002e; + public static final int thickness=0x7f010031; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1140,7 +1140,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int thumbTextPadding=0x7f010047; + public static final int thumbTextPadding=0x7f01004a; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1148,7 +1148,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int title=0x7f010003; + public static final int title=0x7f010006; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1158,7 +1158,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMarginBottom=0x7f0100bd; + public static final int titleMarginBottom=0x7f0100c0; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1168,7 +1168,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMarginEnd=0x7f0100bb; + public static final int titleMarginEnd=0x7f0100be; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1178,7 +1178,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMarginStart=0x7f0100ba; + public static final int titleMarginStart=0x7f0100bd; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1188,7 +1188,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMarginTop=0x7f0100bc; + public static final int titleMarginTop=0x7f0100bf; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1198,11 +1198,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMargins=0x7f0100b9; + public static final int titleMargins=0x7f0100bc; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int titleTextAppearance=0x7f0100b7; + public static final int titleTextAppearance=0x7f0100ba; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -1211,23 +1211,23 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleTextColor=0x7f0100c4; + public static final int titleTextColor=0x7f0100c7; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int titleTextStyle=0x7f010007; + public static final int titleTextStyle=0x7f01000a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int toolbarNavigationButtonStyle=0x7f010086; + public static final int toolbarNavigationButtonStyle=0x7f010089; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int toolbarStyle=0x7f010085; + public static final int toolbarStyle=0x7f010088; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int track=0x7f010046; + public static final int track=0x7f010049; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1235,7 +1235,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int uvv_autoRotation=0x7f0100cd; + public static final int uvv_autoRotation=0x7f010002; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1243,7 +1243,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int uvv_fitXY=0x7f0100cc; + public static final int uvv_fitXY=0x7f010001; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1251,11 +1251,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int uvv_scalable=0x7f0100cb; + public static final int uvv_scalable=0x7f010000; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int voiceIcon=0x7f010041; + public static final int voiceIcon=0x7f010044; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1263,7 +1263,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowActionBar=0x7f01004d; + public static final int windowActionBar=0x7f010050; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1271,7 +1271,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowActionBarOverlay=0x7f01004f; + public static final int windowActionBarOverlay=0x7f010052; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1279,7 +1279,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowActionModeOverlay=0x7f010050; + public static final int windowActionModeOverlay=0x7f010053; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1292,7 +1292,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowFixedHeightMajor=0x7f010054; + public static final int windowFixedHeightMajor=0x7f010057; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1305,7 +1305,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowFixedHeightMinor=0x7f010052; + public static final int windowFixedHeightMinor=0x7f010055; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1318,7 +1318,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowFixedWidthMajor=0x7f010051; + public static final int windowFixedWidthMajor=0x7f010054; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1331,7 +1331,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowFixedWidthMinor=0x7f010053; + public static final int windowFixedWidthMinor=0x7f010056; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1344,7 +1344,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowMinWidthMajor=0x7f010055; + public static final int windowMinWidthMajor=0x7f010058; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1357,7 +1357,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowMinWidthMinor=0x7f010056; + public static final int windowMinWidthMinor=0x7f010059; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1365,168 +1365,168 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowNoTitle=0x7f01004e; + public static final int windowNoTitle=0x7f010051; } public static final class bool { - public static final int abc_action_bar_embed_tabs=0x7f080002; - public static final int abc_action_bar_embed_tabs_pre_jb=0x7f080000; - public static final int abc_action_bar_expanded_action_views_exclusive=0x7f080003; - public static final int abc_config_actionMenuItemAllCaps=0x7f080004; - public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f080001; - public static final int abc_config_closeDialogWhenTouchOutside=0x7f080005; - public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f080006; + public static final int abc_action_bar_embed_tabs=0x7f090002; + public static final int abc_action_bar_embed_tabs_pre_jb=0x7f090000; + public static final int abc_action_bar_expanded_action_views_exclusive=0x7f090003; + public static final int abc_config_actionMenuItemAllCaps=0x7f090004; + public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f090001; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f090005; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f090006; } public static final class color { - public static final int abc_background_cache_hint_selector_material_dark=0x7f0a003e; - public static final int abc_background_cache_hint_selector_material_light=0x7f0a003f; - public static final int abc_color_highlight_material=0x7f0a0040; - public static final int abc_input_method_navigation_guard=0x7f0a0000; - public static final int abc_primary_text_disable_only_material_dark=0x7f0a0041; - public static final int abc_primary_text_disable_only_material_light=0x7f0a0042; - public static final int abc_primary_text_material_dark=0x7f0a0043; - public static final int abc_primary_text_material_light=0x7f0a0044; - public static final int abc_search_url_text=0x7f0a0045; - public static final int abc_search_url_text_normal=0x7f0a0001; - public static final int abc_search_url_text_pressed=0x7f0a0002; - public static final int abc_search_url_text_selected=0x7f0a0003; - public static final int abc_secondary_text_material_dark=0x7f0a0046; - public static final int abc_secondary_text_material_light=0x7f0a0047; - public static final int accent_material_dark=0x7f0a0004; - public static final int accent_material_light=0x7f0a0005; - public static final int background_floating_material_dark=0x7f0a0006; - public static final int background_floating_material_light=0x7f0a0007; - public static final int background_material_dark=0x7f0a0008; - public static final int background_material_light=0x7f0a0009; - public static final int bright_foreground_disabled_material_dark=0x7f0a000a; - public static final int bright_foreground_disabled_material_light=0x7f0a000b; - public static final int bright_foreground_inverse_material_dark=0x7f0a000c; - public static final int bright_foreground_inverse_material_light=0x7f0a000d; - public static final int bright_foreground_material_dark=0x7f0a000e; - public static final int bright_foreground_material_light=0x7f0a000f; - public static final int button_material_dark=0x7f0a0010; - public static final int button_material_light=0x7f0a0011; - public static final int dim_foreground_disabled_material_dark=0x7f0a0012; - public static final int dim_foreground_disabled_material_light=0x7f0a0013; - public static final int dim_foreground_material_dark=0x7f0a0014; - public static final int dim_foreground_material_light=0x7f0a0015; - public static final int foreground_material_dark=0x7f0a0016; - public static final int foreground_material_light=0x7f0a0017; - public static final int highlighted_text_material_dark=0x7f0a0018; - public static final int highlighted_text_material_light=0x7f0a0019; - public static final int hint_foreground_material_dark=0x7f0a001a; - public static final int hint_foreground_material_light=0x7f0a001b; - public static final int material_blue_grey_800=0x7f0a001c; - public static final int material_blue_grey_900=0x7f0a001d; - public static final int material_blue_grey_950=0x7f0a001e; - public static final int material_deep_teal_200=0x7f0a001f; - public static final int material_deep_teal_500=0x7f0a0020; - public static final int material_grey_100=0x7f0a0021; - public static final int material_grey_300=0x7f0a0022; - public static final int material_grey_50=0x7f0a0023; - public static final int material_grey_600=0x7f0a0024; - public static final int material_grey_800=0x7f0a0025; - public static final int material_grey_850=0x7f0a0026; - public static final int material_grey_900=0x7f0a0027; - public static final int primary_dark_material_dark=0x7f0a0028; - public static final int primary_dark_material_light=0x7f0a0029; - public static final int primary_material_dark=0x7f0a002a; - public static final int primary_material_light=0x7f0a002b; - public static final int primary_text_default_material_dark=0x7f0a002c; - public static final int primary_text_default_material_light=0x7f0a002d; - public static final int primary_text_disabled_material_dark=0x7f0a002e; - public static final int primary_text_disabled_material_light=0x7f0a002f; - public static final int ripple_material_dark=0x7f0a0030; - public static final int ripple_material_light=0x7f0a0031; - public static final int secondary_text_default_material_dark=0x7f0a0032; - public static final int secondary_text_default_material_light=0x7f0a0033; - public static final int secondary_text_disabled_material_dark=0x7f0a0034; - public static final int secondary_text_disabled_material_light=0x7f0a0035; - public static final int switch_thumb_disabled_material_dark=0x7f0a0036; - public static final int switch_thumb_disabled_material_light=0x7f0a0037; - public static final int switch_thumb_material_dark=0x7f0a0048; - public static final int switch_thumb_material_light=0x7f0a0049; - public static final int switch_thumb_normal_material_dark=0x7f0a0038; - public static final int switch_thumb_normal_material_light=0x7f0a0039; - public static final int uvv_black=0x7f0a003a; - public static final int uvv_gray=0x7f0a003b; - public static final int uvv_light_gray=0x7f0a003c; - public static final int uvv_titlebar_bg=0x7f0a003d; + public static final int abc_background_cache_hint_selector_material_dark=0x7f05003e; + public static final int abc_background_cache_hint_selector_material_light=0x7f05003f; + public static final int abc_color_highlight_material=0x7f050040; + public static final int abc_input_method_navigation_guard=0x7f050004; + public static final int abc_primary_text_disable_only_material_dark=0x7f050041; + public static final int abc_primary_text_disable_only_material_light=0x7f050042; + public static final int abc_primary_text_material_dark=0x7f050043; + public static final int abc_primary_text_material_light=0x7f050044; + public static final int abc_search_url_text=0x7f050045; + public static final int abc_search_url_text_normal=0x7f050005; + public static final int abc_search_url_text_pressed=0x7f050006; + public static final int abc_search_url_text_selected=0x7f050007; + public static final int abc_secondary_text_material_dark=0x7f050046; + public static final int abc_secondary_text_material_light=0x7f050047; + public static final int accent_material_dark=0x7f050008; + public static final int accent_material_light=0x7f050009; + public static final int background_floating_material_dark=0x7f05000a; + public static final int background_floating_material_light=0x7f05000b; + public static final int background_material_dark=0x7f05000c; + public static final int background_material_light=0x7f05000d; + public static final int bright_foreground_disabled_material_dark=0x7f05000e; + public static final int bright_foreground_disabled_material_light=0x7f05000f; + public static final int bright_foreground_inverse_material_dark=0x7f050010; + public static final int bright_foreground_inverse_material_light=0x7f050011; + public static final int bright_foreground_material_dark=0x7f050012; + public static final int bright_foreground_material_light=0x7f050013; + public static final int button_material_dark=0x7f050014; + public static final int button_material_light=0x7f050015; + public static final int dim_foreground_disabled_material_dark=0x7f050016; + public static final int dim_foreground_disabled_material_light=0x7f050017; + public static final int dim_foreground_material_dark=0x7f050018; + public static final int dim_foreground_material_light=0x7f050019; + public static final int foreground_material_dark=0x7f05001a; + public static final int foreground_material_light=0x7f05001b; + public static final int highlighted_text_material_dark=0x7f05001c; + public static final int highlighted_text_material_light=0x7f05001d; + public static final int hint_foreground_material_dark=0x7f05001e; + public static final int hint_foreground_material_light=0x7f05001f; + public static final int material_blue_grey_800=0x7f050020; + public static final int material_blue_grey_900=0x7f050021; + public static final int material_blue_grey_950=0x7f050022; + public static final int material_deep_teal_200=0x7f050023; + public static final int material_deep_teal_500=0x7f050024; + public static final int material_grey_100=0x7f050025; + public static final int material_grey_300=0x7f050026; + public static final int material_grey_50=0x7f050027; + public static final int material_grey_600=0x7f050028; + public static final int material_grey_800=0x7f050029; + public static final int material_grey_850=0x7f05002a; + public static final int material_grey_900=0x7f05002b; + public static final int primary_dark_material_dark=0x7f05002c; + public static final int primary_dark_material_light=0x7f05002d; + public static final int primary_material_dark=0x7f05002e; + public static final int primary_material_light=0x7f05002f; + public static final int primary_text_default_material_dark=0x7f050030; + public static final int primary_text_default_material_light=0x7f050031; + public static final int primary_text_disabled_material_dark=0x7f050032; + public static final int primary_text_disabled_material_light=0x7f050033; + public static final int ripple_material_dark=0x7f050034; + public static final int ripple_material_light=0x7f050035; + public static final int secondary_text_default_material_dark=0x7f050036; + public static final int secondary_text_default_material_light=0x7f050037; + public static final int secondary_text_disabled_material_dark=0x7f050038; + public static final int secondary_text_disabled_material_light=0x7f050039; + public static final int switch_thumb_disabled_material_dark=0x7f05003a; + public static final int switch_thumb_disabled_material_light=0x7f05003b; + public static final int switch_thumb_material_dark=0x7f050048; + public static final int switch_thumb_material_light=0x7f050049; + public static final int switch_thumb_normal_material_dark=0x7f05003c; + public static final int switch_thumb_normal_material_light=0x7f05003d; + public static final int uvv_black=0x7f050000; + public static final int uvv_gray=0x7f050001; + public static final int uvv_light_gray=0x7f050002; + public static final int uvv_titlebar_bg=0x7f050003; } public static final class dimen { - public static final int abc_action_bar_content_inset_material=0x7f06000b; - public static final int abc_action_bar_default_height_material=0x7f060001; - public static final int abc_action_bar_default_padding_end_material=0x7f06000c; - public static final int abc_action_bar_default_padding_start_material=0x7f06000d; - public static final int abc_action_bar_icon_vertical_padding_material=0x7f06000f; - public static final int abc_action_bar_overflow_padding_end_material=0x7f060010; - public static final int abc_action_bar_overflow_padding_start_material=0x7f060011; - public static final int abc_action_bar_progress_bar_size=0x7f060002; - public static final int abc_action_bar_stacked_max_height=0x7f060012; - public static final int abc_action_bar_stacked_tab_max_width=0x7f060013; - public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f060014; - public static final int abc_action_bar_subtitle_top_margin_material=0x7f060015; - public static final int abc_action_button_min_height_material=0x7f060016; - public static final int abc_action_button_min_width_material=0x7f060017; - public static final int abc_action_button_min_width_overflow_material=0x7f060018; - public static final int abc_alert_dialog_button_bar_height=0x7f060000; - public static final int abc_button_inset_horizontal_material=0x7f060019; - public static final int abc_button_inset_vertical_material=0x7f06001a; - public static final int abc_button_padding_horizontal_material=0x7f06001b; - public static final int abc_button_padding_vertical_material=0x7f06001c; - public static final int abc_config_prefDialogWidth=0x7f060005; - public static final int abc_control_corner_material=0x7f06001d; - public static final int abc_control_inset_material=0x7f06001e; - public static final int abc_control_padding_material=0x7f06001f; - public static final int abc_dialog_list_padding_vertical_material=0x7f060020; - public static final int abc_dialog_min_width_major=0x7f060021; - public static final int abc_dialog_min_width_minor=0x7f060022; - public static final int abc_dialog_padding_material=0x7f060023; - public static final int abc_dialog_padding_top_material=0x7f060024; - public static final int abc_disabled_alpha_material_dark=0x7f060025; - public static final int abc_disabled_alpha_material_light=0x7f060026; - public static final int abc_dropdownitem_icon_width=0x7f060027; - public static final int abc_dropdownitem_text_padding_left=0x7f060028; - public static final int abc_dropdownitem_text_padding_right=0x7f060029; - public static final int abc_edit_text_inset_bottom_material=0x7f06002a; - public static final int abc_edit_text_inset_horizontal_material=0x7f06002b; - public static final int abc_edit_text_inset_top_material=0x7f06002c; - public static final int abc_floating_window_z=0x7f06002d; - public static final int abc_list_item_padding_horizontal_material=0x7f06002e; - public static final int abc_panel_menu_list_width=0x7f06002f; - public static final int abc_search_view_preferred_width=0x7f060030; - public static final int abc_search_view_text_min_width=0x7f060006; - public static final int abc_switch_padding=0x7f06000e; - public static final int abc_text_size_body_1_material=0x7f060031; - public static final int abc_text_size_body_2_material=0x7f060032; - public static final int abc_text_size_button_material=0x7f060033; - public static final int abc_text_size_caption_material=0x7f060034; - public static final int abc_text_size_display_1_material=0x7f060035; - public static final int abc_text_size_display_2_material=0x7f060036; - public static final int abc_text_size_display_3_material=0x7f060037; - public static final int abc_text_size_display_4_material=0x7f060038; - public static final int abc_text_size_headline_material=0x7f060039; - public static final int abc_text_size_large_material=0x7f06003a; - public static final int abc_text_size_medium_material=0x7f06003b; - public static final int abc_text_size_menu_material=0x7f06003c; - public static final int abc_text_size_small_material=0x7f06003d; - public static final int abc_text_size_subhead_material=0x7f06003e; - public static final int abc_text_size_subtitle_material_toolbar=0x7f060003; - public static final int abc_text_size_title_material=0x7f06003f; - public static final int abc_text_size_title_material_toolbar=0x7f060004; - public static final int activity_horizontal_margin=0x7f060048; - public static final int activity_vertical_margin=0x7f060049; - public static final int dialog_fixed_height_major=0x7f060007; - public static final int dialog_fixed_height_minor=0x7f060008; - public static final int dialog_fixed_width_major=0x7f060009; - public static final int dialog_fixed_width_minor=0x7f06000a; - public static final int disabled_alpha_material_dark=0x7f060040; - public static final int disabled_alpha_material_light=0x7f060041; - public static final int highlight_alpha_material_colored=0x7f060042; - public static final int highlight_alpha_material_dark=0x7f060043; - public static final int highlight_alpha_material_light=0x7f060044; - public static final int notification_large_icon_height=0x7f060045; - public static final int notification_large_icon_width=0x7f060046; - public static final int notification_subtext_size=0x7f060047; + public static final int abc_action_bar_content_inset_material=0x7f06000d; + public static final int abc_action_bar_default_height_material=0x7f060003; + public static final int abc_action_bar_default_padding_end_material=0x7f06000e; + public static final int abc_action_bar_default_padding_start_material=0x7f06000f; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f060011; + public static final int abc_action_bar_overflow_padding_end_material=0x7f060012; + public static final int abc_action_bar_overflow_padding_start_material=0x7f060013; + public static final int abc_action_bar_progress_bar_size=0x7f060004; + public static final int abc_action_bar_stacked_max_height=0x7f060014; + public static final int abc_action_bar_stacked_tab_max_width=0x7f060015; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f060016; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f060017; + public static final int abc_action_button_min_height_material=0x7f060018; + public static final int abc_action_button_min_width_material=0x7f060019; + public static final int abc_action_button_min_width_overflow_material=0x7f06001a; + public static final int abc_alert_dialog_button_bar_height=0x7f060002; + public static final int abc_button_inset_horizontal_material=0x7f06001b; + public static final int abc_button_inset_vertical_material=0x7f06001c; + public static final int abc_button_padding_horizontal_material=0x7f06001d; + public static final int abc_button_padding_vertical_material=0x7f06001e; + public static final int abc_config_prefDialogWidth=0x7f060007; + public static final int abc_control_corner_material=0x7f06001f; + public static final int abc_control_inset_material=0x7f060020; + public static final int abc_control_padding_material=0x7f060021; + public static final int abc_dialog_list_padding_vertical_material=0x7f060022; + public static final int abc_dialog_min_width_major=0x7f060023; + public static final int abc_dialog_min_width_minor=0x7f060024; + public static final int abc_dialog_padding_material=0x7f060025; + public static final int abc_dialog_padding_top_material=0x7f060026; + public static final int abc_disabled_alpha_material_dark=0x7f060027; + public static final int abc_disabled_alpha_material_light=0x7f060028; + public static final int abc_dropdownitem_icon_width=0x7f060029; + public static final int abc_dropdownitem_text_padding_left=0x7f06002a; + public static final int abc_dropdownitem_text_padding_right=0x7f06002b; + public static final int abc_edit_text_inset_bottom_material=0x7f06002c; + public static final int abc_edit_text_inset_horizontal_material=0x7f06002d; + public static final int abc_edit_text_inset_top_material=0x7f06002e; + public static final int abc_floating_window_z=0x7f06002f; + public static final int abc_list_item_padding_horizontal_material=0x7f060030; + public static final int abc_panel_menu_list_width=0x7f060031; + public static final int abc_search_view_preferred_width=0x7f060032; + public static final int abc_search_view_text_min_width=0x7f060008; + public static final int abc_switch_padding=0x7f060010; + public static final int abc_text_size_body_1_material=0x7f060033; + public static final int abc_text_size_body_2_material=0x7f060034; + public static final int abc_text_size_button_material=0x7f060035; + public static final int abc_text_size_caption_material=0x7f060036; + public static final int abc_text_size_display_1_material=0x7f060037; + public static final int abc_text_size_display_2_material=0x7f060038; + public static final int abc_text_size_display_3_material=0x7f060039; + public static final int abc_text_size_display_4_material=0x7f06003a; + public static final int abc_text_size_headline_material=0x7f06003b; + public static final int abc_text_size_large_material=0x7f06003c; + public static final int abc_text_size_medium_material=0x7f06003d; + public static final int abc_text_size_menu_material=0x7f06003e; + public static final int abc_text_size_small_material=0x7f06003f; + public static final int abc_text_size_subhead_material=0x7f060040; + public static final int abc_text_size_subtitle_material_toolbar=0x7f060005; + public static final int abc_text_size_title_material=0x7f060041; + public static final int abc_text_size_title_material_toolbar=0x7f060006; + public static final int activity_horizontal_margin=0x7f060000; + public static final int activity_vertical_margin=0x7f060001; + public static final int dialog_fixed_height_major=0x7f060009; + public static final int dialog_fixed_height_minor=0x7f06000a; + public static final int dialog_fixed_width_major=0x7f06000b; + public static final int dialog_fixed_width_minor=0x7f06000c; + public static final int disabled_alpha_material_dark=0x7f060042; + public static final int disabled_alpha_material_light=0x7f060043; + public static final int highlight_alpha_material_colored=0x7f060044; + public static final int highlight_alpha_material_dark=0x7f060045; + public static final int highlight_alpha_material_light=0x7f060046; + public static final int notification_large_icon_height=0x7f060047; + public static final int notification_large_icon_width=0x7f060048; + public static final int notification_subtext_size=0x7f060049; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; @@ -1720,11 +1720,11 @@ public static final class id { public static final int wrap_content=0x7f0b0020; } public static final class integer { - public static final int abc_config_activityDefaultDur=0x7f090001; - public static final int abc_config_activityShortDur=0x7f090002; - public static final int abc_max_action_buttons=0x7f090000; - public static final int cancel_button_image_alpha=0x7f090003; - public static final int status_bar_notification_info_maxnum=0x7f090004; + public static final int abc_config_activityDefaultDur=0x7f0a0001; + public static final int abc_config_activityShortDur=0x7f0a0002; + public static final int abc_max_action_buttons=0x7f0a0000; + public static final int cancel_button_image_alpha=0x7f0a0003; + public static final int status_bar_notification_info_maxnum=0x7f0a0004; } public static final class layout { public static final int abc_action_bar_title_item=0x7f030000; @@ -1769,335 +1769,335 @@ public static final class layout { public static final int uvv_player_controller=0x7f030027; } public static final class string { - public static final int abc_action_bar_home_description=0x7f050000; - public static final int abc_action_bar_home_description_format=0x7f050001; - public static final int abc_action_bar_home_subtitle_description_format=0x7f050002; - public static final int abc_action_bar_up_description=0x7f050003; - public static final int abc_action_menu_overflow_description=0x7f050004; - public static final int abc_action_mode_done=0x7f050005; - public static final int abc_activity_chooser_view_see_all=0x7f050006; - public static final int abc_activitychooserview_choose_application=0x7f050007; - public static final int abc_search_hint=0x7f050008; - public static final int abc_searchview_description_clear=0x7f050009; - public static final int abc_searchview_description_query=0x7f05000a; - public static final int abc_searchview_description_search=0x7f05000b; - public static final int abc_searchview_description_submit=0x7f05000c; - public static final int abc_searchview_description_voice=0x7f05000d; - public static final int abc_shareactionprovider_share_with=0x7f05000e; - public static final int abc_shareactionprovider_share_with_application=0x7f05000f; - public static final int abc_toolbar_collapse_description=0x7f050010; - public static final int action_settings=0x7f050012; - public static final int app_name=0x7f050013; - public static final int hello_world=0x7f050014; - public static final int status_bar_notification_info_overflow=0x7f050011; + public static final int abc_action_bar_home_description=0x7f070002; + public static final int abc_action_bar_home_description_format=0x7f070003; + public static final int abc_action_bar_home_subtitle_description_format=0x7f070004; + public static final int abc_action_bar_up_description=0x7f070005; + public static final int abc_action_menu_overflow_description=0x7f070006; + public static final int abc_action_mode_done=0x7f070007; + public static final int abc_activity_chooser_view_see_all=0x7f070008; + public static final int abc_activitychooserview_choose_application=0x7f070009; + public static final int abc_search_hint=0x7f07000a; + public static final int abc_searchview_description_clear=0x7f07000b; + public static final int abc_searchview_description_query=0x7f07000c; + public static final int abc_searchview_description_search=0x7f07000d; + public static final int abc_searchview_description_submit=0x7f07000e; + public static final int abc_searchview_description_voice=0x7f07000f; + public static final int abc_shareactionprovider_share_with=0x7f070010; + public static final int abc_shareactionprovider_share_with_application=0x7f070011; + public static final int abc_toolbar_collapse_description=0x7f070012; + public static final int action_settings=0x7f070000; + public static final int app_name=0x7f070001; + public static final int hello_world=0x7f070014; + public static final int status_bar_notification_info_overflow=0x7f070013; } public static final class style { - public static final int AlertDialog_AppCompat=0x7f07007a; - public static final int AlertDialog_AppCompat_Light=0x7f07007b; - public static final int Animation_AppCompat_Dialog=0x7f07007c; - public static final int Animation_AppCompat_DropDownUp=0x7f07007d; + public static final int AlertDialog_AppCompat=0x7f08007c; + public static final int AlertDialog_AppCompat_Light=0x7f08007d; + public static final int Animation_AppCompat_Dialog=0x7f08007e; + public static final int Animation_AppCompat_DropDownUp=0x7f08007f; /** Customize your theme here. */ - public static final int AppTheme=0x7f07012e; - public static final int Base_AlertDialog_AppCompat=0x7f07007e; - public static final int Base_AlertDialog_AppCompat_Light=0x7f07007f; - public static final int Base_Animation_AppCompat_Dialog=0x7f070080; - public static final int Base_Animation_AppCompat_DropDownUp=0x7f070081; - public static final int Base_DialogWindowTitle_AppCompat=0x7f070082; - public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f070083; - public static final int Base_TextAppearance_AppCompat=0x7f07002d; - public static final int Base_TextAppearance_AppCompat_Body1=0x7f07002e; - public static final int Base_TextAppearance_AppCompat_Body2=0x7f07002f; - public static final int Base_TextAppearance_AppCompat_Button=0x7f070018; - public static final int Base_TextAppearance_AppCompat_Caption=0x7f070030; - public static final int Base_TextAppearance_AppCompat_Display1=0x7f070031; - public static final int Base_TextAppearance_AppCompat_Display2=0x7f070032; - public static final int Base_TextAppearance_AppCompat_Display3=0x7f070033; - public static final int Base_TextAppearance_AppCompat_Display4=0x7f070034; - public static final int Base_TextAppearance_AppCompat_Headline=0x7f070035; - public static final int Base_TextAppearance_AppCompat_Inverse=0x7f070003; - public static final int Base_TextAppearance_AppCompat_Large=0x7f070036; - public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f070004; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070037; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f070038; - public static final int Base_TextAppearance_AppCompat_Medium=0x7f070039; - public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f070005; - public static final int Base_TextAppearance_AppCompat_Menu=0x7f07003a; - public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f070084; - public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f07003b; - public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f07003c; - public static final int Base_TextAppearance_AppCompat_Small=0x7f07003d; - public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f070006; - public static final int Base_TextAppearance_AppCompat_Subhead=0x7f07003e; - public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f070007; - public static final int Base_TextAppearance_AppCompat_Title=0x7f07003f; - public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070008; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070040; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f070041; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f070042; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f070043; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070044; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070045; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070046; - public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f070047; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070076; - public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f070085; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f070048; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f070049; - public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f07004a; - public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f07004b; - public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f070086; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f07004c; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f07004d; - public static final int Base_Theme_AppCompat=0x7f07004e; - public static final int Base_Theme_AppCompat_CompactMenu=0x7f070087; - public static final int Base_Theme_AppCompat_Dialog=0x7f070009; - public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f070088; - public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f070089; - public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f07008a; - public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f070001; - public static final int Base_Theme_AppCompat_Light=0x7f07004f; - public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f07008b; - public static final int Base_Theme_AppCompat_Light_Dialog=0x7f07000a; - public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f07008c; - public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f07008d; - public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f07008e; - public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070002; - public static final int Base_ThemeOverlay_AppCompat=0x7f07008f; - public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f070090; - public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f070091; - public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f070092; - public static final int Base_ThemeOverlay_AppCompat_Light=0x7f070093; - public static final int Base_V11_Theme_AppCompat_Dialog=0x7f07000b; - public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f07000c; - public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070014; - public static final int Base_V12_Widget_AppCompat_EditText=0x7f070015; - public static final int Base_V21_Theme_AppCompat=0x7f070050; - public static final int Base_V21_Theme_AppCompat_Dialog=0x7f070051; - public static final int Base_V21_Theme_AppCompat_Light=0x7f070052; - public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f070053; - public static final int Base_V22_Theme_AppCompat=0x7f070074; - public static final int Base_V22_Theme_AppCompat_Light=0x7f070075; - public static final int Base_V23_Theme_AppCompat=0x7f070077; - public static final int Base_V23_Theme_AppCompat_Light=0x7f070078; - public static final int Base_V7_Theme_AppCompat=0x7f070094; - public static final int Base_V7_Theme_AppCompat_Dialog=0x7f070095; - public static final int Base_V7_Theme_AppCompat_Light=0x7f070096; - public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f070097; - public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f070098; - public static final int Base_V7_Widget_AppCompat_EditText=0x7f070099; - public static final int Base_Widget_AppCompat_ActionBar=0x7f07009a; - public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f07009b; - public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f07009c; - public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f070054; - public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f070055; - public static final int Base_Widget_AppCompat_ActionButton=0x7f070056; - public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f070057; - public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f070058; - public static final int Base_Widget_AppCompat_ActionMode=0x7f07009d; - public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f07009e; - public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070016; - public static final int Base_Widget_AppCompat_Button=0x7f070059; - public static final int Base_Widget_AppCompat_Button_Borderless=0x7f07005a; - public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f07005b; - public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f07009f; - public static final int Base_Widget_AppCompat_Button_Colored=0x7f070079; - public static final int Base_Widget_AppCompat_Button_Small=0x7f07005c; - public static final int Base_Widget_AppCompat_ButtonBar=0x7f07005d; - public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700a0; - public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f07005e; - public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f07005f; - public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700a1; - public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070000; - public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700a2; - public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f070060; - public static final int Base_Widget_AppCompat_EditText=0x7f070017; - public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0700a3; - public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700a4; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700a5; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f070061; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f070062; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070063; - public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f070064; - public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070065; - public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f070066; - public static final int Base_Widget_AppCompat_ListView=0x7f070067; - public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f070068; - public static final int Base_Widget_AppCompat_ListView_Menu=0x7f070069; - public static final int Base_Widget_AppCompat_PopupMenu=0x7f07006a; - public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f07006b; - public static final int Base_Widget_AppCompat_PopupWindow=0x7f0700a6; - public static final int Base_Widget_AppCompat_ProgressBar=0x7f07000d; - public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07000e; - public static final int Base_Widget_AppCompat_RatingBar=0x7f07006c; - public static final int Base_Widget_AppCompat_SearchView=0x7f0700a7; - public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700a8; - public static final int Base_Widget_AppCompat_Spinner=0x7f07006d; - public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f07006e; - public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f07006f; - public static final int Base_Widget_AppCompat_Toolbar=0x7f0700a9; - public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f070070; - public static final int Platform_AppCompat=0x7f07000f; - public static final int Platform_AppCompat_Light=0x7f070010; - public static final int Platform_ThemeOverlay_AppCompat=0x7f070071; - public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f070072; - public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f070073; - public static final int Platform_V11_AppCompat=0x7f070011; - public static final int Platform_V11_AppCompat_Light=0x7f070012; - public static final int Platform_V14_AppCompat=0x7f070019; - public static final int Platform_V14_AppCompat_Light=0x7f07001a; - public static final int Platform_Widget_AppCompat_Spinner=0x7f070013; - public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f070020; - public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f070021; - public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f070022; - public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f070023; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f070024; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070025; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070026; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070027; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070028; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f070029; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f07002a; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f07002b; - public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f07002c; - public static final int TextAppearance_AppCompat=0x7f0700aa; - public static final int TextAppearance_AppCompat_Body1=0x7f0700ab; - public static final int TextAppearance_AppCompat_Body2=0x7f0700ac; - public static final int TextAppearance_AppCompat_Button=0x7f0700ad; - public static final int TextAppearance_AppCompat_Caption=0x7f0700ae; - public static final int TextAppearance_AppCompat_Display1=0x7f0700af; - public static final int TextAppearance_AppCompat_Display2=0x7f0700b0; - public static final int TextAppearance_AppCompat_Display3=0x7f0700b1; - public static final int TextAppearance_AppCompat_Display4=0x7f0700b2; - public static final int TextAppearance_AppCompat_Headline=0x7f0700b3; - public static final int TextAppearance_AppCompat_Inverse=0x7f0700b4; - public static final int TextAppearance_AppCompat_Large=0x7f0700b5; - public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0700b6; - public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700b7; - public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700b8; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700b9; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700ba; - public static final int TextAppearance_AppCompat_Medium=0x7f0700bb; - public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0700bc; - public static final int TextAppearance_AppCompat_Menu=0x7f0700bd; - public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700be; - public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0700bf; - public static final int TextAppearance_AppCompat_Small=0x7f0700c0; - public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0700c1; - public static final int TextAppearance_AppCompat_Subhead=0x7f0700c2; - public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700c3; - public static final int TextAppearance_AppCompat_Title=0x7f0700c4; - public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0700c5; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700c6; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700c7; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700c8; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700c9; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700ca; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700cb; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700cc; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700cd; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700ce; - public static final int TextAppearance_AppCompat_Widget_Button=0x7f0700cf; - public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700d0; - public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700d1; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700d2; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700d3; - public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0700d4; - public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700d5; - public static final int TextAppearance_StatusBar_EventContent=0x7f07001b; - public static final int TextAppearance_StatusBar_EventContent_Info=0x7f07001c; - public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f07001d; - public static final int TextAppearance_StatusBar_EventContent_Time=0x7f07001e; - public static final int TextAppearance_StatusBar_EventContent_Title=0x7f07001f; - public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700d6; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0700d7; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0700d8; - public static final int Theme_AppCompat=0x7f0700d9; - public static final int Theme_AppCompat_CompactMenu=0x7f0700da; - public static final int Theme_AppCompat_Dialog=0x7f0700db; - public static final int Theme_AppCompat_Dialog_Alert=0x7f0700dc; - public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0700dd; - public static final int Theme_AppCompat_DialogWhenLarge=0x7f0700de; - public static final int Theme_AppCompat_Light=0x7f0700df; - public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0700e0; - public static final int Theme_AppCompat_Light_Dialog=0x7f0700e1; - public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0700e2; - public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0700e3; - public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0700e4; - public static final int Theme_AppCompat_Light_NoActionBar=0x7f0700e5; - public static final int Theme_AppCompat_NoActionBar=0x7f0700e6; - public static final int ThemeOverlay_AppCompat=0x7f0700e7; - public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0700e8; - public static final int ThemeOverlay_AppCompat_Dark=0x7f0700e9; - public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700ea; - public static final int ThemeOverlay_AppCompat_Light=0x7f0700eb; - public static final int Universal_Widget_ProgressBar=0x7f07012f; - public static final int Widget_AppCompat_ActionBar=0x7f0700ec; - public static final int Widget_AppCompat_ActionBar_Solid=0x7f0700ed; - public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0700ee; - public static final int Widget_AppCompat_ActionBar_TabText=0x7f0700ef; - public static final int Widget_AppCompat_ActionBar_TabView=0x7f0700f0; - public static final int Widget_AppCompat_ActionButton=0x7f0700f1; - public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0700f2; - public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0700f3; - public static final int Widget_AppCompat_ActionMode=0x7f0700f4; - public static final int Widget_AppCompat_ActivityChooserView=0x7f0700f5; - public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0700f6; - public static final int Widget_AppCompat_Button=0x7f0700f7; - public static final int Widget_AppCompat_Button_Borderless=0x7f0700f8; - public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0700f9; - public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700fa; - public static final int Widget_AppCompat_Button_Colored=0x7f0700fb; - public static final int Widget_AppCompat_Button_Small=0x7f0700fc; - public static final int Widget_AppCompat_ButtonBar=0x7f0700fd; - public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700fe; - public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0700ff; - public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f070100; - public static final int Widget_AppCompat_CompoundButton_Switch=0x7f070101; - public static final int Widget_AppCompat_DrawerArrowToggle=0x7f070102; - public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f070103; - public static final int Widget_AppCompat_EditText=0x7f070104; - public static final int Widget_AppCompat_Light_ActionBar=0x7f070105; - public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f070106; - public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070107; - public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f070108; - public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f070109; - public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f07010a; - public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07010b; - public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f07010c; - public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f07010d; - public static final int Widget_AppCompat_Light_ActionButton=0x7f07010e; - public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f07010f; - public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f070110; - public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f070111; - public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f070112; - public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f070113; - public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070114; - public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f070115; - public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f070116; - public static final int Widget_AppCompat_Light_PopupMenu=0x7f070117; - public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070118; - public static final int Widget_AppCompat_Light_SearchView=0x7f070119; - public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f07011a; - public static final int Widget_AppCompat_ListPopupWindow=0x7f07011b; - public static final int Widget_AppCompat_ListView=0x7f07011c; - public static final int Widget_AppCompat_ListView_DropDown=0x7f07011d; - public static final int Widget_AppCompat_ListView_Menu=0x7f07011e; - public static final int Widget_AppCompat_PopupMenu=0x7f07011f; - public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f070120; - public static final int Widget_AppCompat_PopupWindow=0x7f070121; - public static final int Widget_AppCompat_ProgressBar=0x7f070122; - public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f070123; - public static final int Widget_AppCompat_RatingBar=0x7f070124; - public static final int Widget_AppCompat_SearchView=0x7f070125; - public static final int Widget_AppCompat_SearchView_ActionBar=0x7f070126; - public static final int Widget_AppCompat_Spinner=0x7f070127; - public static final int Widget_AppCompat_Spinner_DropDown=0x7f070128; - public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f070129; - public static final int Widget_AppCompat_Spinner_Underlined=0x7f07012a; - public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f07012b; - public static final int Widget_AppCompat_Toolbar=0x7f07012c; - public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f07012d; + public static final int AppTheme=0x7f080000; + public static final int Base_AlertDialog_AppCompat=0x7f080080; + public static final int Base_AlertDialog_AppCompat_Light=0x7f080081; + public static final int Base_Animation_AppCompat_Dialog=0x7f080082; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f080083; + public static final int Base_DialogWindowTitle_AppCompat=0x7f080084; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f080085; + public static final int Base_TextAppearance_AppCompat=0x7f08002f; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080030; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080031; + public static final int Base_TextAppearance_AppCompat_Button=0x7f08001a; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f080032; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f080033; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f080034; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f080035; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f080036; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f080037; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080005; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080038; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f080006; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080039; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f08003a; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f08003b; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f080007; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f08003c; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f080086; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f08003d; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f08003e; + public static final int Base_TextAppearance_AppCompat_Small=0x7f08003f; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f080008; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080040; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f080009; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080041; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08000a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f080042; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f080043; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f080044; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f080046; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080047; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080048; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080049; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080078; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f080087; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08004a; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08004b; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f08004c; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08004d; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080088; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08004e; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f08004f; + public static final int Base_Theme_AppCompat=0x7f080050; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f080089; + public static final int Base_Theme_AppCompat_Dialog=0x7f08000b; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f08008a; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f08008b; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f08008c; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f080003; + public static final int Base_Theme_AppCompat_Light=0x7f080051; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f08008d; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f08000c; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f08008e; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f08008f; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080090; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080004; + public static final int Base_ThemeOverlay_AppCompat=0x7f080091; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f080092; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f080093; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080094; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f080095; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f08000d; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f08000e; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080016; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080017; + public static final int Base_V21_Theme_AppCompat=0x7f080052; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f080053; + public static final int Base_V21_Theme_AppCompat_Light=0x7f080054; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f080055; + public static final int Base_V22_Theme_AppCompat=0x7f080076; + public static final int Base_V22_Theme_AppCompat_Light=0x7f080077; + public static final int Base_V23_Theme_AppCompat=0x7f080079; + public static final int Base_V23_Theme_AppCompat_Light=0x7f08007a; + public static final int Base_V7_Theme_AppCompat=0x7f080096; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f080097; + public static final int Base_V7_Theme_AppCompat_Light=0x7f080098; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f080099; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f08009a; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f08009b; + public static final int Base_Widget_AppCompat_ActionBar=0x7f08009c; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f08009d; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f08009e; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f080056; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080057; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080058; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080059; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f08005a; + public static final int Base_Widget_AppCompat_ActionMode=0x7f08009f; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800a0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080018; + public static final int Base_Widget_AppCompat_Button=0x7f08005b; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f08005c; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f08005d; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800a1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f08007b; + public static final int Base_Widget_AppCompat_Button_Small=0x7f08005e; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f08005f; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800a2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080060; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f080061; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800a3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080002; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800a4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f080062; + public static final int Base_Widget_AppCompat_EditText=0x7f080019; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800a5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800a6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800a7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f080063; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080064; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f080065; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080066; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080067; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080068; + public static final int Base_Widget_AppCompat_ListView=0x7f080069; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f08006a; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f08006b; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f08006c; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f08006d; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800a8; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08000f; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f080010; + public static final int Base_Widget_AppCompat_RatingBar=0x7f08006e; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800a9; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800aa; + public static final int Base_Widget_AppCompat_Spinner=0x7f08006f; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080070; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f080071; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ab; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f080072; + public static final int Platform_AppCompat=0x7f080011; + public static final int Platform_AppCompat_Light=0x7f080012; + public static final int Platform_ThemeOverlay_AppCompat=0x7f080073; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f080074; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f080075; + public static final int Platform_V11_AppCompat=0x7f080013; + public static final int Platform_V11_AppCompat_Light=0x7f080014; + public static final int Platform_V14_AppCompat=0x7f08001b; + public static final int Platform_V14_AppCompat_Light=0x7f08001c; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080015; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080022; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f080023; + public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f080024; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f080025; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f080026; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f080027; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f080028; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080029; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f08002a; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f08002b; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f08002c; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f08002d; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f08002e; + public static final int TextAppearance_AppCompat=0x7f0800ac; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ad; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ae; + public static final int TextAppearance_AppCompat_Button=0x7f0800af; + public static final int TextAppearance_AppCompat_Caption=0x7f0800b0; + public static final int TextAppearance_AppCompat_Display1=0x7f0800b1; + public static final int TextAppearance_AppCompat_Display2=0x7f0800b2; + public static final int TextAppearance_AppCompat_Display3=0x7f0800b3; + public static final int TextAppearance_AppCompat_Display4=0x7f0800b4; + public static final int TextAppearance_AppCompat_Headline=0x7f0800b5; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800b6; + public static final int TextAppearance_AppCompat_Large=0x7f0800b7; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800b8; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800b9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800ba; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800bb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800bc; + public static final int TextAppearance_AppCompat_Medium=0x7f0800bd; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800be; + public static final int TextAppearance_AppCompat_Menu=0x7f0800bf; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0800c0; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0800c1; + public static final int TextAppearance_AppCompat_Small=0x7f0800c2; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0800c3; + public static final int TextAppearance_AppCompat_Subhead=0x7f0800c4; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0800c5; + public static final int TextAppearance_AppCompat_Title=0x7f0800c6; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0800c7; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800c8; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0800c9; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0800ca; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0800cb; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0800cc; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0800cd; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0800ce; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0800cf; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0800d0; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f0800d1; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800d2; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800d3; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0800d4; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0800d5; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0800d6; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0800d7; + public static final int TextAppearance_StatusBar_EventContent=0x7f08001d; + public static final int TextAppearance_StatusBar_EventContent_Info=0x7f08001e; + public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f08001f; + public static final int TextAppearance_StatusBar_EventContent_Time=0x7f080020; + public static final int TextAppearance_StatusBar_EventContent_Title=0x7f080021; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800d8; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0800d9; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0800da; + public static final int Theme_AppCompat=0x7f0800db; + public static final int Theme_AppCompat_CompactMenu=0x7f0800dc; + public static final int Theme_AppCompat_Dialog=0x7f0800dd; + public static final int Theme_AppCompat_Dialog_Alert=0x7f0800de; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0800df; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f0800e0; + public static final int Theme_AppCompat_Light=0x7f0800e1; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0800e2; + public static final int Theme_AppCompat_Light_Dialog=0x7f0800e3; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0800e4; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0800e5; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0800e6; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f0800e7; + public static final int Theme_AppCompat_NoActionBar=0x7f0800e8; + public static final int ThemeOverlay_AppCompat=0x7f0800e9; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0800ea; + public static final int ThemeOverlay_AppCompat_Dark=0x7f0800eb; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800ec; + public static final int ThemeOverlay_AppCompat_Light=0x7f0800ed; + public static final int Universal_Widget_ProgressBar=0x7f080001; + public static final int Widget_AppCompat_ActionBar=0x7f0800ee; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f0800ef; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0800f0; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f0800f1; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f0800f2; + public static final int Widget_AppCompat_ActionButton=0x7f0800f3; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0800f4; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0800f5; + public static final int Widget_AppCompat_ActionMode=0x7f0800f6; + public static final int Widget_AppCompat_ActivityChooserView=0x7f0800f7; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0800f8; + public static final int Widget_AppCompat_Button=0x7f0800f9; + public static final int Widget_AppCompat_Button_Borderless=0x7f0800fa; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0800fb; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800fc; + public static final int Widget_AppCompat_Button_Colored=0x7f0800fd; + public static final int Widget_AppCompat_Button_Small=0x7f0800fe; + public static final int Widget_AppCompat_ButtonBar=0x7f0800ff; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080100; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080101; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f080102; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f080103; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f080104; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f080105; + public static final int Widget_AppCompat_EditText=0x7f080106; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080107; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080108; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080109; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f08010a; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f08010b; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f08010c; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08010d; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f08010e; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f08010f; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080110; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f080111; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f080112; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f080113; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f080114; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f080115; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f080116; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080117; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080118; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080119; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f08011a; + public static final int Widget_AppCompat_Light_SearchView=0x7f08011b; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f08011c; + public static final int Widget_AppCompat_ListPopupWindow=0x7f08011d; + public static final int Widget_AppCompat_ListView=0x7f08011e; + public static final int Widget_AppCompat_ListView_DropDown=0x7f08011f; + public static final int Widget_AppCompat_ListView_Menu=0x7f080120; + public static final int Widget_AppCompat_PopupMenu=0x7f080121; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f080122; + public static final int Widget_AppCompat_PopupWindow=0x7f080123; + public static final int Widget_AppCompat_ProgressBar=0x7f080124; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f080125; + public static final int Widget_AppCompat_RatingBar=0x7f080126; + public static final int Widget_AppCompat_SearchView=0x7f080127; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080128; + public static final int Widget_AppCompat_Spinner=0x7f080129; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f08012a; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f08012b; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08012c; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08012d; + public static final int Widget_AppCompat_Toolbar=0x7f08012e; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08012f; } public static final class styleable { /** Attributes that can be used with a ActionBar. @@ -2163,13 +2163,13 @@ public static final class styleable { @see #ActionBar_titleTextStyle */ public static final int[] ActionBar = { - 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, - 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, - 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, - 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, - 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, - 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, - 0x7f01001a, 0x7f01001b, 0x7f01007b + 0x7f010004, 0x7f010006, 0x7f010007, 0x7f010008, + 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, + 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01007e }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#background} @@ -2589,8 +2589,8 @@ theme attribute (in the form @see #ActionMode_titleTextStyle */ public static final int[] ActionMode = { - 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, - 0x7f01000e, 0x7f01001c + 0x7f010004, 0x7f01000a, 0x7f01000b, 0x7f01000f, + 0x7f010011, 0x7f01001f }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#background} @@ -2673,7 +2673,7 @@ theme attribute (in the form @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { - 0x7f01001d, 0x7f01001e + 0x7f010020, 0x7f010021 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#expandActivityOverflowButtonDrawable} @@ -2720,8 +2720,8 @@ theme attribute (in the form @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog = { - 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, - 0x7f010022, 0x7f010023 + 0x010100f2, 0x7f010022, 0x7f010023, 0x7f010024, + 0x7f010025, 0x7f010026 }; /**

This symbol is the offset where the {@link android.R.attr#layout} @@ -2792,7 +2792,7 @@ theme attribute (in the form @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { - 0x01010034, 0x7f010024 + 0x01010034, 0x7f010027 }; /**

This symbol is the offset where the {@link android.R.attr#textAppearance} @@ -2826,7 +2826,7 @@ theme attribute (in the form @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { - 0x01010107, 0x7f010025, 0x7f010026 + 0x01010107, 0x7f010028, 0x7f010029 }; /**

This symbol is the offset where the {@link android.R.attr#button} @@ -2894,8 +2894,8 @@ theme attribute (in the form @see #DrawerArrowToggle_thickness */ public static final int[] DrawerArrowToggle = { - 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, - 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e + 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, + 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#arrowHeadLength} @@ -3050,8 +3050,8 @@ theme attribute (in the form */ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, - 0x01010128, 0x7f01000b, 0x7f01002f, 0x7f010030, - 0x7f010031 + 0x01010128, 0x7f01000e, 0x7f010032, 0x7f010033, + 0x7f010034 }; /**

This symbol is the offset where the {@link android.R.attr#baselineAligned} @@ -3318,8 +3318,8 @@

Must be one or more (separated by '|') of the following constant values.

0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, - 0x0101026f, 0x7f010032, 0x7f010033, 0x7f010034, - 0x7f010035 + 0x0101026f, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010038 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionLayout} @@ -3483,7 +3483,7 @@

Must be one or more (separated by '|') of the following constant values.

*/ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, - 0x0101012f, 0x01010130, 0x01010131, 0x7f010036 + 0x0101012f, 0x01010130, 0x01010131, 0x7f010039 }; /**

This symbol is the offset where the {@link android.R.attr#headerBackground} @@ -3554,7 +3554,7 @@ theme attribute (in the form @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { - 0x01010176, 0x7f010037 + 0x01010176, 0x7f01003a }; /**

This symbol is the offset where the {@link android.R.attr#popupBackground} @@ -3587,7 +3587,7 @@ theme attribute (in the form @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { - 0x7f010038 + 0x7f01003b }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#state_above_anchor} @@ -3647,10 +3647,10 @@ theme attribute (in the form */ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, - 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, - 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, - 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, - 0x7f010045 + 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, + 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, + 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, + 0x7f010048 }; /**

This symbol is the offset where the {@link android.R.attr#focusable} @@ -3835,7 +3835,7 @@ theme attribute (in the form @see #Spinner_popupTheme */ public static final int[] Spinner = { - 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b + 0x01010176, 0x0101017b, 0x01010262, 0x7f01001e }; /**

This symbol is the offset where the {@link android.R.attr#dropDownWidth} @@ -3894,9 +3894,9 @@ theme attribute (in the form @see #SwitchCompat_track */ public static final int[] SwitchCompat = { - 0x01010124, 0x01010125, 0x01010142, 0x7f010046, - 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, - 0x7f01004b, 0x7f01004c + 0x01010124, 0x01010125, 0x01010142, 0x7f010049, + 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, + 0x7f01004e, 0x7f01004f }; /**

This symbol is the offset where the {@link android.R.attr#textOff} @@ -4032,7 +4032,7 @@ theme attribute (in the form */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, - 0x7f010024 + 0x7f010027 }; /**

This symbol is the offset where the {@link android.R.attr#textColor} @@ -4294,33 +4294,33 @@ theme attribute (in the form @see #Theme_windowNoTitle */ public static final int[] Theme = { - 0x01010057, 0x010100ae, 0x7f01004d, 0x7f01004e, - 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, - 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, - 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, - 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, - 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, - 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, - 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, - 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, - 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, - 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, - 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, - 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, - 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, - 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, - 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, - 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, - 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, - 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, - 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, - 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, - 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, - 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, - 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, - 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, - 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, - 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6 + 0x01010057, 0x010100ae, 0x7f010050, 0x7f010051, + 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, + 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, + 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, + 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, + 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, + 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, + 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, + 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, + 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, + 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, + 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, + 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, + 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, + 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, + 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, + 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, + 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, + 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, + 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, + 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, + 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, + 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, + 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, + 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, + 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, + 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionBarDivider} @@ -5637,13 +5637,13 @@ theme attribute (in the form @see #Toolbar_titleTextColor */ public static final int[] Toolbar = { - 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, - 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, - 0x7f010019, 0x7f01001b, 0x7f0100b7, 0x7f0100b8, - 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, - 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, - 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, - 0x7f0100c5 + 0x010100af, 0x01010140, 0x7f010006, 0x7f010009, + 0x7f01000d, 0x7f010019, 0x7f01001a, 0x7f01001b, + 0x7f01001c, 0x7f01001e, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, + 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, + 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, + 0x7f0100c8 }; /**

This symbol is the offset where the {@link android.R.attr#gravity} @@ -5988,7 +5988,7 @@ theme attribute (in the form @see #UniversalMediaController_uvv_scalable */ public static final int[] UniversalMediaController = { - 0x7f0100cb + 0x7f010000 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#uvv_scalable} @@ -6017,7 +6017,7 @@ theme attribute (in the form @see #UniversalVideoView_uvv_fitXY */ public static final int[] UniversalVideoView = { - 0x7f0100cc, 0x7f0100cd + 0x7f010001, 0x7f010002 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#uvv_autoRotation} @@ -6066,8 +6066,8 @@ theme attribute (in the form @see #View_theme */ public static final int[] View = { - 0x01010000, 0x010100da, 0x7f0100c6, 0x7f0100c7, - 0x7f0100c8 + 0x01010000, 0x010100da, 0x7f0100c9, 0x7f0100ca, + 0x7f0100cb }; /**

This symbol is the offset where the {@link android.R.attr#focusable} @@ -6138,7 +6138,7 @@ theme attribute (in the form @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { - 0x010100d4, 0x7f0100c9, 0x7f0100ca + 0x010100d4, 0x7f0100cc, 0x7f0100cd }; /**

This symbol is the offset where the {@link android.R.attr#background} diff --git a/YoutubeExtractor/app/build/gen/com/universalvideoview/R.java b/YoutubeExtractor/app/build/gen/com/universalvideoview/R.java index 5d008f5..044ee44 100644 --- a/YoutubeExtractor/app/build/gen/com/universalvideoview/R.java +++ b/YoutubeExtractor/app/build/gen/com/universalvideoview/R.java @@ -24,15 +24,15 @@ public static final class attr { /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarDivider=0x7f010062; + public static final int actionBarDivider=0x7f010065; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarItemBackground=0x7f010063; + public static final int actionBarItemBackground=0x7f010066; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarPopupTheme=0x7f01005c; + public static final int actionBarPopupTheme=0x7f01005f; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -50,117 +50,117 @@ theme attribute (in the form wrap_content0 */ - public static final int actionBarSize=0x7f010061; + public static final int actionBarSize=0x7f010064; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarSplitStyle=0x7f01005e; + public static final int actionBarSplitStyle=0x7f010061; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarStyle=0x7f01005d; + public static final int actionBarStyle=0x7f010060; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarTabBarStyle=0x7f010058; + public static final int actionBarTabBarStyle=0x7f01005b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarTabStyle=0x7f010057; + public static final int actionBarTabStyle=0x7f01005a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarTabTextStyle=0x7f010059; + public static final int actionBarTabTextStyle=0x7f01005c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarTheme=0x7f01005f; + public static final int actionBarTheme=0x7f010062; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionBarWidgetTheme=0x7f010060; + public static final int actionBarWidgetTheme=0x7f010063; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionButtonStyle=0x7f01007c; + public static final int actionButtonStyle=0x7f01007f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionDropDownStyle=0x7f010078; + public static final int actionDropDownStyle=0x7f01007b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionLayout=0x7f010033; + public static final int actionLayout=0x7f010036; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionMenuTextAppearance=0x7f010064; + public static final int actionMenuTextAppearance=0x7f010067; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int actionMenuTextColor=0x7f010065; + public static final int actionMenuTextColor=0x7f010068; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeBackground=0x7f010068; + public static final int actionModeBackground=0x7f01006b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeCloseButtonStyle=0x7f010067; + public static final int actionModeCloseButtonStyle=0x7f01006a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeCloseDrawable=0x7f01006a; + public static final int actionModeCloseDrawable=0x7f01006d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeCopyDrawable=0x7f01006c; + public static final int actionModeCopyDrawable=0x7f01006f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeCutDrawable=0x7f01006b; + public static final int actionModeCutDrawable=0x7f01006e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeFindDrawable=0x7f010070; + public static final int actionModeFindDrawable=0x7f010073; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModePasteDrawable=0x7f01006d; + public static final int actionModePasteDrawable=0x7f010070; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModePopupWindowStyle=0x7f010072; + public static final int actionModePopupWindowStyle=0x7f010075; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeSelectAllDrawable=0x7f01006e; + public static final int actionModeSelectAllDrawable=0x7f010071; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeShareDrawable=0x7f01006f; + public static final int actionModeShareDrawable=0x7f010072; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeSplitBackground=0x7f010069; + public static final int actionModeSplitBackground=0x7f01006c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeStyle=0x7f010066; + public static final int actionModeStyle=0x7f010069; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionModeWebSearchDrawable=0x7f010071; + public static final int actionModeWebSearchDrawable=0x7f010074; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionOverflowButtonStyle=0x7f01005a; + public static final int actionOverflowButtonStyle=0x7f01005d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int actionOverflowMenuStyle=0x7f01005b; + public static final int actionOverflowMenuStyle=0x7f01005e; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -168,7 +168,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int actionProviderClass=0x7f010035; + public static final int actionProviderClass=0x7f010038; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -176,15 +176,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int actionViewClass=0x7f010034; + public static final int actionViewClass=0x7f010037; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int activityChooserViewStyle=0x7f010084; + public static final int activityChooserViewStyle=0x7f010087; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int alertDialogButtonGroupStyle=0x7f0100a6; + public static final int alertDialogButtonGroupStyle=0x7f0100a9; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -192,15 +192,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int alertDialogCenterButtons=0x7f0100a7; + public static final int alertDialogCenterButtons=0x7f0100aa; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int alertDialogStyle=0x7f0100a5; + public static final int alertDialogStyle=0x7f0100a8; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int alertDialogTheme=0x7f0100a8; + public static final int alertDialogTheme=0x7f0100ab; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -210,7 +210,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int arrowHeadLength=0x7f01002b; + public static final int arrowHeadLength=0x7f01002e; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -220,27 +220,27 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int arrowShaftLength=0x7f01002c; + public static final int arrowShaftLength=0x7f01002f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int autoCompleteTextViewStyle=0x7f0100ad; + public static final int autoCompleteTextViewStyle=0x7f0100b0; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int background=0x7f01000c; + public static final int background=0x7f01000f; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int backgroundSplit=0x7f01000e; + public static final int backgroundSplit=0x7f010011; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int backgroundStacked=0x7f01000d; + public static final int backgroundStacked=0x7f010010; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -249,7 +249,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int backgroundTint=0x7f0100c9; + public static final int backgroundTint=0x7f0100cc; /**

Must be one of the following constant values.

@@ -263,7 +263,7 @@ theme attribute (in the form
screen15
*/ - public static final int backgroundTintMode=0x7f0100ca; + public static final int backgroundTintMode=0x7f0100cd; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -273,43 +273,43 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int barLength=0x7f01002d; + public static final int barLength=0x7f010030; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int borderlessButtonStyle=0x7f010081; + public static final int borderlessButtonStyle=0x7f010084; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarButtonStyle=0x7f01007e; + public static final int buttonBarButtonStyle=0x7f010081; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarNegativeButtonStyle=0x7f0100ab; + public static final int buttonBarNegativeButtonStyle=0x7f0100ae; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarNeutralButtonStyle=0x7f0100ac; + public static final int buttonBarNeutralButtonStyle=0x7f0100af; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarPositiveButtonStyle=0x7f0100aa; + public static final int buttonBarPositiveButtonStyle=0x7f0100ad; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonBarStyle=0x7f01007d; + public static final int buttonBarStyle=0x7f010080; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonPanelSideLayout=0x7f01001f; + public static final int buttonPanelSideLayout=0x7f010022; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonStyle=0x7f0100ae; + public static final int buttonStyle=0x7f0100b1; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int buttonStyleSmall=0x7f0100af; + public static final int buttonStyleSmall=0x7f0100b2; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -318,7 +318,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int buttonTint=0x7f010025; + public static final int buttonTint=0x7f010028; /**

Must be one of the following constant values.

@@ -332,23 +332,23 @@ theme attribute (in the form
screen15
*/ - public static final int buttonTintMode=0x7f010026; + public static final int buttonTintMode=0x7f010029; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int checkboxStyle=0x7f0100b0; + public static final int checkboxStyle=0x7f0100b3; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int checkedTextViewStyle=0x7f0100b1; + public static final int checkedTextViewStyle=0x7f0100b4; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int closeIcon=0x7f01003d; + public static final int closeIcon=0x7f010040; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int closeItemLayout=0x7f01001c; + public static final int closeItemLayout=0x7f01001f; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -356,11 +356,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int collapseContentDescription=0x7f0100c0; + public static final int collapseContentDescription=0x7f0100c3; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int collapseIcon=0x7f0100bf; + public static final int collapseIcon=0x7f0100c2; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -369,7 +369,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int color=0x7f010027; + public static final int color=0x7f01002a; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -378,7 +378,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorAccent=0x7f01009e; + public static final int colorAccent=0x7f0100a1; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -387,7 +387,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorButtonNormal=0x7f0100a2; + public static final int colorButtonNormal=0x7f0100a5; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -396,7 +396,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorControlActivated=0x7f0100a0; + public static final int colorControlActivated=0x7f0100a3; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -405,7 +405,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorControlHighlight=0x7f0100a1; + public static final int colorControlHighlight=0x7f0100a4; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -414,7 +414,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorControlNormal=0x7f01009f; + public static final int colorControlNormal=0x7f0100a2; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -423,7 +423,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorPrimary=0x7f01009c; + public static final int colorPrimary=0x7f01009f; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -432,7 +432,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorPrimaryDark=0x7f01009d; + public static final int colorPrimaryDark=0x7f0100a0; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -441,11 +441,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int colorSwitchThumbNormal=0x7f0100a3; + public static final int colorSwitchThumbNormal=0x7f0100a6; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int commitIcon=0x7f010042; + public static final int commitIcon=0x7f010045; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -455,7 +455,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int contentInsetEnd=0x7f010017; + public static final int contentInsetEnd=0x7f01001a; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -465,7 +465,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int contentInsetLeft=0x7f010018; + public static final int contentInsetLeft=0x7f01001b; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -475,7 +475,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int contentInsetRight=0x7f010019; + public static final int contentInsetRight=0x7f01001c; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -485,15 +485,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int contentInsetStart=0x7f010016; + public static final int contentInsetStart=0x7f010019; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int controlBackground=0x7f0100a4; + public static final int controlBackground=0x7f0100a7; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int customNavigationLayout=0x7f01000f; + public static final int customNavigationLayout=0x7f010012; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -501,7 +501,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int defaultQueryHint=0x7f01003c; + public static final int defaultQueryHint=0x7f01003f; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -511,11 +511,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int dialogPreferredPadding=0x7f010076; + public static final int dialogPreferredPadding=0x7f010079; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int dialogTheme=0x7f010075; + public static final int dialogTheme=0x7f010078; /**

Must be one or more (separated by '|') of the following constant values.

@@ -531,15 +531,15 @@ theme attribute (in the form
disableHome0x20
*/ - public static final int displayOptions=0x7f010005; + public static final int displayOptions=0x7f010008; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int divider=0x7f01000b; + public static final int divider=0x7f01000e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int dividerHorizontal=0x7f010083; + public static final int dividerHorizontal=0x7f010086; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -549,11 +549,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int dividerPadding=0x7f010031; + public static final int dividerPadding=0x7f010034; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int dividerVertical=0x7f010082; + public static final int dividerVertical=0x7f010085; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -563,15 +563,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int drawableSize=0x7f010029; + public static final int drawableSize=0x7f01002c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int drawerArrowStyle=0x7f010000; + public static final int drawerArrowStyle=0x7f010003; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int dropDownListViewStyle=0x7f010094; + public static final int dropDownListViewStyle=0x7f010097; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -581,21 +581,21 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int dropdownListPreferredItemHeight=0x7f010079; + public static final int dropdownListPreferredItemHeight=0x7f01007c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int editTextBackground=0x7f01008a; + public static final int editTextBackground=0x7f01008d; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int editTextColor=0x7f010089; + public static final int editTextColor=0x7f01008c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int editTextStyle=0x7f0100b2; + public static final int editTextStyle=0x7f0100b5; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -605,11 +605,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int elevation=0x7f01001a; + public static final int elevation=0x7f01001d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int expandActivityOverflowButtonDrawable=0x7f01001e; + public static final int expandActivityOverflowButtonDrawable=0x7f010021; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -619,11 +619,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int gapBetweenBars=0x7f01002a; + public static final int gapBetweenBars=0x7f01002d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int goIcon=0x7f01003e; + public static final int goIcon=0x7f010041; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -633,7 +633,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int height=0x7f010001; + public static final int height=0x7f010004; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -641,19 +641,19 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int hideOnContentScroll=0x7f010015; + public static final int hideOnContentScroll=0x7f010018; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int homeAsUpIndicator=0x7f01007b; + public static final int homeAsUpIndicator=0x7f01007e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int homeLayout=0x7f010010; + public static final int homeLayout=0x7f010013; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int icon=0x7f010009; + public static final int icon=0x7f01000c; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -661,11 +661,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int iconifiedByDefault=0x7f01003a; + public static final int iconifiedByDefault=0x7f01003d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int indeterminateProgressStyle=0x7f010012; + public static final int indeterminateProgressStyle=0x7f010015; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -673,7 +673,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int initialActivityCount=0x7f01001d; + public static final int initialActivityCount=0x7f010020; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -681,7 +681,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int isLightTheme=0x7f010002; + public static final int isLightTheme=0x7f010005; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -691,31 +691,31 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int itemPadding=0x7f010014; + public static final int itemPadding=0x7f010017; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int layout=0x7f010039; + public static final int layout=0x7f01003c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listChoiceBackgroundIndicator=0x7f01009b; + public static final int listChoiceBackgroundIndicator=0x7f01009e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listDividerAlertDialog=0x7f010077; + public static final int listDividerAlertDialog=0x7f01007a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listItemLayout=0x7f010023; + public static final int listItemLayout=0x7f010026; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listLayout=0x7f010020; + public static final int listLayout=0x7f010023; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int listPopupWindowStyle=0x7f010095; + public static final int listPopupWindowStyle=0x7f010098; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -725,7 +725,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemHeight=0x7f01008f; + public static final int listPreferredItemHeight=0x7f010092; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -735,7 +735,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemHeightLarge=0x7f010091; + public static final int listPreferredItemHeightLarge=0x7f010094; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -745,7 +745,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemHeightSmall=0x7f010090; + public static final int listPreferredItemHeightSmall=0x7f010093; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -755,7 +755,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemPaddingLeft=0x7f010092; + public static final int listPreferredItemPaddingLeft=0x7f010095; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -765,11 +765,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int listPreferredItemPaddingRight=0x7f010093; + public static final int listPreferredItemPaddingRight=0x7f010096; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int logo=0x7f01000a; + public static final int logo=0x7f01000d; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -777,7 +777,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int logoDescription=0x7f0100c3; + public static final int logoDescription=0x7f0100c6; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -787,7 +787,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int maxButtonHeight=0x7f0100be; + public static final int maxButtonHeight=0x7f0100c1; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -795,11 +795,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int measureWithLargestChild=0x7f01002f; + public static final int measureWithLargestChild=0x7f010032; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int multiChoiceItemLayout=0x7f010021; + public static final int multiChoiceItemLayout=0x7f010024; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -807,11 +807,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int navigationContentDescription=0x7f0100c2; + public static final int navigationContentDescription=0x7f0100c5; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int navigationIcon=0x7f0100c1; + public static final int navigationIcon=0x7f0100c4; /**

Must be one of the following constant values.

@@ -823,7 +823,7 @@ theme attribute (in the form
tabMode2
*/ - public static final int navigationMode=0x7f010004; + public static final int navigationMode=0x7f010007; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -831,7 +831,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int overlapAnchor=0x7f010037; + public static final int overlapAnchor=0x7f01003a; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -841,7 +841,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int paddingEnd=0x7f0100c7; + public static final int paddingEnd=0x7f0100ca; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -851,15 +851,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int paddingStart=0x7f0100c6; + public static final int paddingStart=0x7f0100c9; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int panelBackground=0x7f010098; + public static final int panelBackground=0x7f01009b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int panelMenuListTheme=0x7f01009a; + public static final int panelMenuListTheme=0x7f01009d; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -869,19 +869,19 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int panelMenuListWidth=0x7f010099; + public static final int panelMenuListWidth=0x7f01009c; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int popupMenuStyle=0x7f010087; + public static final int popupMenuStyle=0x7f01008a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int popupTheme=0x7f01001b; + public static final int popupTheme=0x7f01001e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int popupWindowStyle=0x7f010088; + public static final int popupWindowStyle=0x7f01008b; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -889,7 +889,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int preserveIconSpacing=0x7f010036; + public static final int preserveIconSpacing=0x7f010039; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -899,15 +899,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int progressBarPadding=0x7f010013; + public static final int progressBarPadding=0x7f010016; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int progressBarStyle=0x7f010011; + public static final int progressBarStyle=0x7f010014; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int queryBackground=0x7f010044; + public static final int queryBackground=0x7f010047; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -915,35 +915,35 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int queryHint=0x7f01003b; + public static final int queryHint=0x7f01003e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int radioButtonStyle=0x7f0100b3; + public static final int radioButtonStyle=0x7f0100b6; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int ratingBarStyle=0x7f0100b4; + public static final int ratingBarStyle=0x7f0100b7; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int searchHintIcon=0x7f010040; + public static final int searchHintIcon=0x7f010043; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int searchIcon=0x7f01003f; + public static final int searchIcon=0x7f010042; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int searchViewStyle=0x7f01008e; + public static final int searchViewStyle=0x7f010091; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int selectableItemBackground=0x7f01007f; + public static final int selectableItemBackground=0x7f010082; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int selectableItemBackgroundBorderless=0x7f010080; + public static final int selectableItemBackgroundBorderless=0x7f010083; /**

Must be one or more (separated by '|') of the following constant values.

@@ -957,7 +957,7 @@ theme attribute (in the form
collapseActionView8
*/ - public static final int showAsAction=0x7f010032; + public static final int showAsAction=0x7f010035; /**

Must be one or more (separated by '|') of the following constant values.

@@ -970,7 +970,7 @@ theme attribute (in the form
end4
*/ - public static final int showDividers=0x7f010030; + public static final int showDividers=0x7f010033; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -978,11 +978,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int showText=0x7f01004c; + public static final int showText=0x7f01004f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int singleChoiceItemLayout=0x7f010022; + public static final int singleChoiceItemLayout=0x7f010025; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -990,15 +990,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int spinBars=0x7f010028; + public static final int spinBars=0x7f01002b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int spinnerDropDownItemStyle=0x7f01007a; + public static final int spinnerDropDownItemStyle=0x7f01007d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int spinnerStyle=0x7f0100b5; + public static final int spinnerStyle=0x7f0100b8; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1006,7 +1006,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int splitTrack=0x7f01004b; + public static final int splitTrack=0x7f01004e; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1014,11 +1014,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int state_above_anchor=0x7f010038; + public static final int state_above_anchor=0x7f01003b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int submitBackground=0x7f010045; + public static final int submitBackground=0x7f010048; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1026,11 +1026,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int subtitle=0x7f010006; + public static final int subtitle=0x7f010009; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int subtitleTextAppearance=0x7f0100b8; + public static final int subtitleTextAppearance=0x7f0100bb; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -1039,15 +1039,15 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int subtitleTextColor=0x7f0100c5; + public static final int subtitleTextColor=0x7f0100c8; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int subtitleTextStyle=0x7f010008; + public static final int subtitleTextStyle=0x7f01000b; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int suggestionRowLayout=0x7f010043; + public static final int suggestionRowLayout=0x7f010046; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1057,7 +1057,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int switchMinWidth=0x7f010049; + public static final int switchMinWidth=0x7f01004c; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1067,60 +1067,60 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int switchPadding=0x7f01004a; + public static final int switchPadding=0x7f01004d; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int switchStyle=0x7f0100b6; + public static final int switchStyle=0x7f0100b9; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int switchTextAppearance=0x7f010048; + public static final int switchTextAppearance=0x7f01004b; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a boolean value, either "true" or "false". */ - public static final int textAllCaps=0x7f010024; + public static final int textAllCaps=0x7f010027; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceLargePopupMenu=0x7f010073; + public static final int textAppearanceLargePopupMenu=0x7f010076; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceListItem=0x7f010096; + public static final int textAppearanceListItem=0x7f010099; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceListItemSmall=0x7f010097; + public static final int textAppearanceListItemSmall=0x7f01009a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceSearchResultSubtitle=0x7f01008c; + public static final int textAppearanceSearchResultSubtitle=0x7f01008f; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceSearchResultTitle=0x7f01008b; + public static final int textAppearanceSearchResultTitle=0x7f01008e; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int textAppearanceSmallPopupMenu=0x7f010074; + public static final int textAppearanceSmallPopupMenu=0x7f010077; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int textColorAlertDialogListItem=0x7f0100a9; + public static final int textColorAlertDialogListItem=0x7f0100ac; /**

May be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name".

May be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb". */ - public static final int textColorSearchUrl=0x7f01008d; + public static final int textColorSearchUrl=0x7f010090; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int theme=0x7f0100c8; + public static final int theme=0x7f0100cb; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1130,7 +1130,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int thickness=0x7f01002e; + public static final int thickness=0x7f010031; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1140,7 +1140,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int thumbTextPadding=0x7f010047; + public static final int thumbTextPadding=0x7f01004a; /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1148,7 +1148,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int title=0x7f010003; + public static final int title=0x7f010006; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1158,7 +1158,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMarginBottom=0x7f0100bd; + public static final int titleMarginBottom=0x7f0100c0; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1168,7 +1168,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMarginEnd=0x7f0100bb; + public static final int titleMarginEnd=0x7f0100be; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1178,7 +1178,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMarginStart=0x7f0100ba; + public static final int titleMarginStart=0x7f0100bd; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1188,7 +1188,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMarginTop=0x7f0100bc; + public static final int titleMarginTop=0x7f0100bf; /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1198,11 +1198,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleMargins=0x7f0100b9; + public static final int titleMargins=0x7f0100bc; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int titleTextAppearance=0x7f0100b7; + public static final int titleTextAppearance=0x7f0100ba; /**

Must be a color value, in the form of "#rgb", "#argb", "#rrggbb", or "#aarrggbb".

This may also be a reference to a resource (in the form @@ -1211,23 +1211,23 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int titleTextColor=0x7f0100c4; + public static final int titleTextColor=0x7f0100c7; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int titleTextStyle=0x7f010007; + public static final int titleTextStyle=0x7f01000a; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int toolbarNavigationButtonStyle=0x7f010086; + public static final int toolbarNavigationButtonStyle=0x7f010089; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int toolbarStyle=0x7f010085; + public static final int toolbarStyle=0x7f010088; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int track=0x7f010046; + public static final int track=0x7f010049; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1235,7 +1235,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int uvv_autoRotation=0x7f0100cd; + public static final int uvv_autoRotation=0x7f010002; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1243,7 +1243,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int uvv_fitXY=0x7f0100cc; + public static final int uvv_fitXY=0x7f010001; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1251,11 +1251,11 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int uvv_scalable=0x7f0100cb; + public static final int uvv_scalable=0x7f010000; /**

Must be a reference to another resource, in the form "@[+][package:]type:name" or to a theme attribute in the form "?[package:][type:]name". */ - public static final int voiceIcon=0x7f010041; + public static final int voiceIcon=0x7f010044; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1263,7 +1263,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowActionBar=0x7f01004d; + public static final int windowActionBar=0x7f010050; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1271,7 +1271,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowActionBarOverlay=0x7f01004f; + public static final int windowActionBarOverlay=0x7f010052; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1279,7 +1279,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowActionModeOverlay=0x7f010050; + public static final int windowActionModeOverlay=0x7f010053; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1292,7 +1292,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowFixedHeightMajor=0x7f010054; + public static final int windowFixedHeightMajor=0x7f010057; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1305,7 +1305,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowFixedHeightMinor=0x7f010052; + public static final int windowFixedHeightMinor=0x7f010055; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1318,7 +1318,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowFixedWidthMajor=0x7f010051; + public static final int windowFixedWidthMajor=0x7f010054; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1331,7 +1331,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowFixedWidthMinor=0x7f010053; + public static final int windowFixedWidthMinor=0x7f010056; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1344,7 +1344,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowMinWidthMajor=0x7f010055; + public static final int windowMinWidthMajor=0x7f010058; /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). @@ -1357,7 +1357,7 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowMinWidthMinor=0x7f010056; + public static final int windowMinWidthMinor=0x7f010059; /**

Must be a boolean value, either "true" or "false".

This may also be a reference to a resource (in the form "@[package:]type:name") or @@ -1365,168 +1365,168 @@ theme attribute (in the form "?[package:][type:]name") containing a value of this type. */ - public static final int windowNoTitle=0x7f01004e; + public static final int windowNoTitle=0x7f010051; } public static final class bool { - public static final int abc_action_bar_embed_tabs=0x7f080002; - public static final int abc_action_bar_embed_tabs_pre_jb=0x7f080000; - public static final int abc_action_bar_expanded_action_views_exclusive=0x7f080003; - public static final int abc_config_actionMenuItemAllCaps=0x7f080004; - public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f080001; - public static final int abc_config_closeDialogWhenTouchOutside=0x7f080005; - public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f080006; + public static final int abc_action_bar_embed_tabs=0x7f090002; + public static final int abc_action_bar_embed_tabs_pre_jb=0x7f090000; + public static final int abc_action_bar_expanded_action_views_exclusive=0x7f090003; + public static final int abc_config_actionMenuItemAllCaps=0x7f090004; + public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f090001; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f090005; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f090006; } public static final class color { - public static final int abc_background_cache_hint_selector_material_dark=0x7f0a003e; - public static final int abc_background_cache_hint_selector_material_light=0x7f0a003f; - public static final int abc_color_highlight_material=0x7f0a0040; - public static final int abc_input_method_navigation_guard=0x7f0a0000; - public static final int abc_primary_text_disable_only_material_dark=0x7f0a0041; - public static final int abc_primary_text_disable_only_material_light=0x7f0a0042; - public static final int abc_primary_text_material_dark=0x7f0a0043; - public static final int abc_primary_text_material_light=0x7f0a0044; - public static final int abc_search_url_text=0x7f0a0045; - public static final int abc_search_url_text_normal=0x7f0a0001; - public static final int abc_search_url_text_pressed=0x7f0a0002; - public static final int abc_search_url_text_selected=0x7f0a0003; - public static final int abc_secondary_text_material_dark=0x7f0a0046; - public static final int abc_secondary_text_material_light=0x7f0a0047; - public static final int accent_material_dark=0x7f0a0004; - public static final int accent_material_light=0x7f0a0005; - public static final int background_floating_material_dark=0x7f0a0006; - public static final int background_floating_material_light=0x7f0a0007; - public static final int background_material_dark=0x7f0a0008; - public static final int background_material_light=0x7f0a0009; - public static final int bright_foreground_disabled_material_dark=0x7f0a000a; - public static final int bright_foreground_disabled_material_light=0x7f0a000b; - public static final int bright_foreground_inverse_material_dark=0x7f0a000c; - public static final int bright_foreground_inverse_material_light=0x7f0a000d; - public static final int bright_foreground_material_dark=0x7f0a000e; - public static final int bright_foreground_material_light=0x7f0a000f; - public static final int button_material_dark=0x7f0a0010; - public static final int button_material_light=0x7f0a0011; - public static final int dim_foreground_disabled_material_dark=0x7f0a0012; - public static final int dim_foreground_disabled_material_light=0x7f0a0013; - public static final int dim_foreground_material_dark=0x7f0a0014; - public static final int dim_foreground_material_light=0x7f0a0015; - public static final int foreground_material_dark=0x7f0a0016; - public static final int foreground_material_light=0x7f0a0017; - public static final int highlighted_text_material_dark=0x7f0a0018; - public static final int highlighted_text_material_light=0x7f0a0019; - public static final int hint_foreground_material_dark=0x7f0a001a; - public static final int hint_foreground_material_light=0x7f0a001b; - public static final int material_blue_grey_800=0x7f0a001c; - public static final int material_blue_grey_900=0x7f0a001d; - public static final int material_blue_grey_950=0x7f0a001e; - public static final int material_deep_teal_200=0x7f0a001f; - public static final int material_deep_teal_500=0x7f0a0020; - public static final int material_grey_100=0x7f0a0021; - public static final int material_grey_300=0x7f0a0022; - public static final int material_grey_50=0x7f0a0023; - public static final int material_grey_600=0x7f0a0024; - public static final int material_grey_800=0x7f0a0025; - public static final int material_grey_850=0x7f0a0026; - public static final int material_grey_900=0x7f0a0027; - public static final int primary_dark_material_dark=0x7f0a0028; - public static final int primary_dark_material_light=0x7f0a0029; - public static final int primary_material_dark=0x7f0a002a; - public static final int primary_material_light=0x7f0a002b; - public static final int primary_text_default_material_dark=0x7f0a002c; - public static final int primary_text_default_material_light=0x7f0a002d; - public static final int primary_text_disabled_material_dark=0x7f0a002e; - public static final int primary_text_disabled_material_light=0x7f0a002f; - public static final int ripple_material_dark=0x7f0a0030; - public static final int ripple_material_light=0x7f0a0031; - public static final int secondary_text_default_material_dark=0x7f0a0032; - public static final int secondary_text_default_material_light=0x7f0a0033; - public static final int secondary_text_disabled_material_dark=0x7f0a0034; - public static final int secondary_text_disabled_material_light=0x7f0a0035; - public static final int switch_thumb_disabled_material_dark=0x7f0a0036; - public static final int switch_thumb_disabled_material_light=0x7f0a0037; - public static final int switch_thumb_material_dark=0x7f0a0048; - public static final int switch_thumb_material_light=0x7f0a0049; - public static final int switch_thumb_normal_material_dark=0x7f0a0038; - public static final int switch_thumb_normal_material_light=0x7f0a0039; - public static final int uvv_black=0x7f0a003a; - public static final int uvv_gray=0x7f0a003b; - public static final int uvv_light_gray=0x7f0a003c; - public static final int uvv_titlebar_bg=0x7f0a003d; + public static final int abc_background_cache_hint_selector_material_dark=0x7f05003e; + public static final int abc_background_cache_hint_selector_material_light=0x7f05003f; + public static final int abc_color_highlight_material=0x7f050040; + public static final int abc_input_method_navigation_guard=0x7f050004; + public static final int abc_primary_text_disable_only_material_dark=0x7f050041; + public static final int abc_primary_text_disable_only_material_light=0x7f050042; + public static final int abc_primary_text_material_dark=0x7f050043; + public static final int abc_primary_text_material_light=0x7f050044; + public static final int abc_search_url_text=0x7f050045; + public static final int abc_search_url_text_normal=0x7f050005; + public static final int abc_search_url_text_pressed=0x7f050006; + public static final int abc_search_url_text_selected=0x7f050007; + public static final int abc_secondary_text_material_dark=0x7f050046; + public static final int abc_secondary_text_material_light=0x7f050047; + public static final int accent_material_dark=0x7f050008; + public static final int accent_material_light=0x7f050009; + public static final int background_floating_material_dark=0x7f05000a; + public static final int background_floating_material_light=0x7f05000b; + public static final int background_material_dark=0x7f05000c; + public static final int background_material_light=0x7f05000d; + public static final int bright_foreground_disabled_material_dark=0x7f05000e; + public static final int bright_foreground_disabled_material_light=0x7f05000f; + public static final int bright_foreground_inverse_material_dark=0x7f050010; + public static final int bright_foreground_inverse_material_light=0x7f050011; + public static final int bright_foreground_material_dark=0x7f050012; + public static final int bright_foreground_material_light=0x7f050013; + public static final int button_material_dark=0x7f050014; + public static final int button_material_light=0x7f050015; + public static final int dim_foreground_disabled_material_dark=0x7f050016; + public static final int dim_foreground_disabled_material_light=0x7f050017; + public static final int dim_foreground_material_dark=0x7f050018; + public static final int dim_foreground_material_light=0x7f050019; + public static final int foreground_material_dark=0x7f05001a; + public static final int foreground_material_light=0x7f05001b; + public static final int highlighted_text_material_dark=0x7f05001c; + public static final int highlighted_text_material_light=0x7f05001d; + public static final int hint_foreground_material_dark=0x7f05001e; + public static final int hint_foreground_material_light=0x7f05001f; + public static final int material_blue_grey_800=0x7f050020; + public static final int material_blue_grey_900=0x7f050021; + public static final int material_blue_grey_950=0x7f050022; + public static final int material_deep_teal_200=0x7f050023; + public static final int material_deep_teal_500=0x7f050024; + public static final int material_grey_100=0x7f050025; + public static final int material_grey_300=0x7f050026; + public static final int material_grey_50=0x7f050027; + public static final int material_grey_600=0x7f050028; + public static final int material_grey_800=0x7f050029; + public static final int material_grey_850=0x7f05002a; + public static final int material_grey_900=0x7f05002b; + public static final int primary_dark_material_dark=0x7f05002c; + public static final int primary_dark_material_light=0x7f05002d; + public static final int primary_material_dark=0x7f05002e; + public static final int primary_material_light=0x7f05002f; + public static final int primary_text_default_material_dark=0x7f050030; + public static final int primary_text_default_material_light=0x7f050031; + public static final int primary_text_disabled_material_dark=0x7f050032; + public static final int primary_text_disabled_material_light=0x7f050033; + public static final int ripple_material_dark=0x7f050034; + public static final int ripple_material_light=0x7f050035; + public static final int secondary_text_default_material_dark=0x7f050036; + public static final int secondary_text_default_material_light=0x7f050037; + public static final int secondary_text_disabled_material_dark=0x7f050038; + public static final int secondary_text_disabled_material_light=0x7f050039; + public static final int switch_thumb_disabled_material_dark=0x7f05003a; + public static final int switch_thumb_disabled_material_light=0x7f05003b; + public static final int switch_thumb_material_dark=0x7f050048; + public static final int switch_thumb_material_light=0x7f050049; + public static final int switch_thumb_normal_material_dark=0x7f05003c; + public static final int switch_thumb_normal_material_light=0x7f05003d; + public static final int uvv_black=0x7f050000; + public static final int uvv_gray=0x7f050001; + public static final int uvv_light_gray=0x7f050002; + public static final int uvv_titlebar_bg=0x7f050003; } public static final class dimen { - public static final int abc_action_bar_content_inset_material=0x7f06000b; - public static final int abc_action_bar_default_height_material=0x7f060001; - public static final int abc_action_bar_default_padding_end_material=0x7f06000c; - public static final int abc_action_bar_default_padding_start_material=0x7f06000d; - public static final int abc_action_bar_icon_vertical_padding_material=0x7f06000f; - public static final int abc_action_bar_overflow_padding_end_material=0x7f060010; - public static final int abc_action_bar_overflow_padding_start_material=0x7f060011; - public static final int abc_action_bar_progress_bar_size=0x7f060002; - public static final int abc_action_bar_stacked_max_height=0x7f060012; - public static final int abc_action_bar_stacked_tab_max_width=0x7f060013; - public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f060014; - public static final int abc_action_bar_subtitle_top_margin_material=0x7f060015; - public static final int abc_action_button_min_height_material=0x7f060016; - public static final int abc_action_button_min_width_material=0x7f060017; - public static final int abc_action_button_min_width_overflow_material=0x7f060018; - public static final int abc_alert_dialog_button_bar_height=0x7f060000; - public static final int abc_button_inset_horizontal_material=0x7f060019; - public static final int abc_button_inset_vertical_material=0x7f06001a; - public static final int abc_button_padding_horizontal_material=0x7f06001b; - public static final int abc_button_padding_vertical_material=0x7f06001c; - public static final int abc_config_prefDialogWidth=0x7f060005; - public static final int abc_control_corner_material=0x7f06001d; - public static final int abc_control_inset_material=0x7f06001e; - public static final int abc_control_padding_material=0x7f06001f; - public static final int abc_dialog_list_padding_vertical_material=0x7f060020; - public static final int abc_dialog_min_width_major=0x7f060021; - public static final int abc_dialog_min_width_minor=0x7f060022; - public static final int abc_dialog_padding_material=0x7f060023; - public static final int abc_dialog_padding_top_material=0x7f060024; - public static final int abc_disabled_alpha_material_dark=0x7f060025; - public static final int abc_disabled_alpha_material_light=0x7f060026; - public static final int abc_dropdownitem_icon_width=0x7f060027; - public static final int abc_dropdownitem_text_padding_left=0x7f060028; - public static final int abc_dropdownitem_text_padding_right=0x7f060029; - public static final int abc_edit_text_inset_bottom_material=0x7f06002a; - public static final int abc_edit_text_inset_horizontal_material=0x7f06002b; - public static final int abc_edit_text_inset_top_material=0x7f06002c; - public static final int abc_floating_window_z=0x7f06002d; - public static final int abc_list_item_padding_horizontal_material=0x7f06002e; - public static final int abc_panel_menu_list_width=0x7f06002f; - public static final int abc_search_view_preferred_width=0x7f060030; - public static final int abc_search_view_text_min_width=0x7f060006; - public static final int abc_switch_padding=0x7f06000e; - public static final int abc_text_size_body_1_material=0x7f060031; - public static final int abc_text_size_body_2_material=0x7f060032; - public static final int abc_text_size_button_material=0x7f060033; - public static final int abc_text_size_caption_material=0x7f060034; - public static final int abc_text_size_display_1_material=0x7f060035; - public static final int abc_text_size_display_2_material=0x7f060036; - public static final int abc_text_size_display_3_material=0x7f060037; - public static final int abc_text_size_display_4_material=0x7f060038; - public static final int abc_text_size_headline_material=0x7f060039; - public static final int abc_text_size_large_material=0x7f06003a; - public static final int abc_text_size_medium_material=0x7f06003b; - public static final int abc_text_size_menu_material=0x7f06003c; - public static final int abc_text_size_small_material=0x7f06003d; - public static final int abc_text_size_subhead_material=0x7f06003e; - public static final int abc_text_size_subtitle_material_toolbar=0x7f060003; - public static final int abc_text_size_title_material=0x7f06003f; - public static final int abc_text_size_title_material_toolbar=0x7f060004; - public static final int activity_horizontal_margin=0x7f060048; - public static final int activity_vertical_margin=0x7f060049; - public static final int dialog_fixed_height_major=0x7f060007; - public static final int dialog_fixed_height_minor=0x7f060008; - public static final int dialog_fixed_width_major=0x7f060009; - public static final int dialog_fixed_width_minor=0x7f06000a; - public static final int disabled_alpha_material_dark=0x7f060040; - public static final int disabled_alpha_material_light=0x7f060041; - public static final int highlight_alpha_material_colored=0x7f060042; - public static final int highlight_alpha_material_dark=0x7f060043; - public static final int highlight_alpha_material_light=0x7f060044; - public static final int notification_large_icon_height=0x7f060045; - public static final int notification_large_icon_width=0x7f060046; - public static final int notification_subtext_size=0x7f060047; + public static final int abc_action_bar_content_inset_material=0x7f06000d; + public static final int abc_action_bar_default_height_material=0x7f060003; + public static final int abc_action_bar_default_padding_end_material=0x7f06000e; + public static final int abc_action_bar_default_padding_start_material=0x7f06000f; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f060011; + public static final int abc_action_bar_overflow_padding_end_material=0x7f060012; + public static final int abc_action_bar_overflow_padding_start_material=0x7f060013; + public static final int abc_action_bar_progress_bar_size=0x7f060004; + public static final int abc_action_bar_stacked_max_height=0x7f060014; + public static final int abc_action_bar_stacked_tab_max_width=0x7f060015; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f060016; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f060017; + public static final int abc_action_button_min_height_material=0x7f060018; + public static final int abc_action_button_min_width_material=0x7f060019; + public static final int abc_action_button_min_width_overflow_material=0x7f06001a; + public static final int abc_alert_dialog_button_bar_height=0x7f060002; + public static final int abc_button_inset_horizontal_material=0x7f06001b; + public static final int abc_button_inset_vertical_material=0x7f06001c; + public static final int abc_button_padding_horizontal_material=0x7f06001d; + public static final int abc_button_padding_vertical_material=0x7f06001e; + public static final int abc_config_prefDialogWidth=0x7f060007; + public static final int abc_control_corner_material=0x7f06001f; + public static final int abc_control_inset_material=0x7f060020; + public static final int abc_control_padding_material=0x7f060021; + public static final int abc_dialog_list_padding_vertical_material=0x7f060022; + public static final int abc_dialog_min_width_major=0x7f060023; + public static final int abc_dialog_min_width_minor=0x7f060024; + public static final int abc_dialog_padding_material=0x7f060025; + public static final int abc_dialog_padding_top_material=0x7f060026; + public static final int abc_disabled_alpha_material_dark=0x7f060027; + public static final int abc_disabled_alpha_material_light=0x7f060028; + public static final int abc_dropdownitem_icon_width=0x7f060029; + public static final int abc_dropdownitem_text_padding_left=0x7f06002a; + public static final int abc_dropdownitem_text_padding_right=0x7f06002b; + public static final int abc_edit_text_inset_bottom_material=0x7f06002c; + public static final int abc_edit_text_inset_horizontal_material=0x7f06002d; + public static final int abc_edit_text_inset_top_material=0x7f06002e; + public static final int abc_floating_window_z=0x7f06002f; + public static final int abc_list_item_padding_horizontal_material=0x7f060030; + public static final int abc_panel_menu_list_width=0x7f060031; + public static final int abc_search_view_preferred_width=0x7f060032; + public static final int abc_search_view_text_min_width=0x7f060008; + public static final int abc_switch_padding=0x7f060010; + public static final int abc_text_size_body_1_material=0x7f060033; + public static final int abc_text_size_body_2_material=0x7f060034; + public static final int abc_text_size_button_material=0x7f060035; + public static final int abc_text_size_caption_material=0x7f060036; + public static final int abc_text_size_display_1_material=0x7f060037; + public static final int abc_text_size_display_2_material=0x7f060038; + public static final int abc_text_size_display_3_material=0x7f060039; + public static final int abc_text_size_display_4_material=0x7f06003a; + public static final int abc_text_size_headline_material=0x7f06003b; + public static final int abc_text_size_large_material=0x7f06003c; + public static final int abc_text_size_medium_material=0x7f06003d; + public static final int abc_text_size_menu_material=0x7f06003e; + public static final int abc_text_size_small_material=0x7f06003f; + public static final int abc_text_size_subhead_material=0x7f060040; + public static final int abc_text_size_subtitle_material_toolbar=0x7f060005; + public static final int abc_text_size_title_material=0x7f060041; + public static final int abc_text_size_title_material_toolbar=0x7f060006; + public static final int activity_horizontal_margin=0x7f060000; + public static final int activity_vertical_margin=0x7f060001; + public static final int dialog_fixed_height_major=0x7f060009; + public static final int dialog_fixed_height_minor=0x7f06000a; + public static final int dialog_fixed_width_major=0x7f06000b; + public static final int dialog_fixed_width_minor=0x7f06000c; + public static final int disabled_alpha_material_dark=0x7f060042; + public static final int disabled_alpha_material_light=0x7f060043; + public static final int highlight_alpha_material_colored=0x7f060044; + public static final int highlight_alpha_material_dark=0x7f060045; + public static final int highlight_alpha_material_light=0x7f060046; + public static final int notification_large_icon_height=0x7f060047; + public static final int notification_large_icon_width=0x7f060048; + public static final int notification_subtext_size=0x7f060049; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; @@ -1720,11 +1720,11 @@ public static final class id { public static final int wrap_content=0x7f0b0020; } public static final class integer { - public static final int abc_config_activityDefaultDur=0x7f090001; - public static final int abc_config_activityShortDur=0x7f090002; - public static final int abc_max_action_buttons=0x7f090000; - public static final int cancel_button_image_alpha=0x7f090003; - public static final int status_bar_notification_info_maxnum=0x7f090004; + public static final int abc_config_activityDefaultDur=0x7f0a0001; + public static final int abc_config_activityShortDur=0x7f0a0002; + public static final int abc_max_action_buttons=0x7f0a0000; + public static final int cancel_button_image_alpha=0x7f0a0003; + public static final int status_bar_notification_info_maxnum=0x7f0a0004; } public static final class layout { public static final int abc_action_bar_title_item=0x7f030000; @@ -1769,335 +1769,335 @@ public static final class layout { public static final int uvv_player_controller=0x7f030027; } public static final class string { - public static final int abc_action_bar_home_description=0x7f050000; - public static final int abc_action_bar_home_description_format=0x7f050001; - public static final int abc_action_bar_home_subtitle_description_format=0x7f050002; - public static final int abc_action_bar_up_description=0x7f050003; - public static final int abc_action_menu_overflow_description=0x7f050004; - public static final int abc_action_mode_done=0x7f050005; - public static final int abc_activity_chooser_view_see_all=0x7f050006; - public static final int abc_activitychooserview_choose_application=0x7f050007; - public static final int abc_search_hint=0x7f050008; - public static final int abc_searchview_description_clear=0x7f050009; - public static final int abc_searchview_description_query=0x7f05000a; - public static final int abc_searchview_description_search=0x7f05000b; - public static final int abc_searchview_description_submit=0x7f05000c; - public static final int abc_searchview_description_voice=0x7f05000d; - public static final int abc_shareactionprovider_share_with=0x7f05000e; - public static final int abc_shareactionprovider_share_with_application=0x7f05000f; - public static final int abc_toolbar_collapse_description=0x7f050010; - public static final int action_settings=0x7f050012; - public static final int app_name=0x7f050013; - public static final int hello_world=0x7f050014; - public static final int status_bar_notification_info_overflow=0x7f050011; + public static final int abc_action_bar_home_description=0x7f070002; + public static final int abc_action_bar_home_description_format=0x7f070003; + public static final int abc_action_bar_home_subtitle_description_format=0x7f070004; + public static final int abc_action_bar_up_description=0x7f070005; + public static final int abc_action_menu_overflow_description=0x7f070006; + public static final int abc_action_mode_done=0x7f070007; + public static final int abc_activity_chooser_view_see_all=0x7f070008; + public static final int abc_activitychooserview_choose_application=0x7f070009; + public static final int abc_search_hint=0x7f07000a; + public static final int abc_searchview_description_clear=0x7f07000b; + public static final int abc_searchview_description_query=0x7f07000c; + public static final int abc_searchview_description_search=0x7f07000d; + public static final int abc_searchview_description_submit=0x7f07000e; + public static final int abc_searchview_description_voice=0x7f07000f; + public static final int abc_shareactionprovider_share_with=0x7f070010; + public static final int abc_shareactionprovider_share_with_application=0x7f070011; + public static final int abc_toolbar_collapse_description=0x7f070012; + public static final int action_settings=0x7f070000; + public static final int app_name=0x7f070001; + public static final int hello_world=0x7f070014; + public static final int status_bar_notification_info_overflow=0x7f070013; } public static final class style { - public static final int AlertDialog_AppCompat=0x7f07007a; - public static final int AlertDialog_AppCompat_Light=0x7f07007b; - public static final int Animation_AppCompat_Dialog=0x7f07007c; - public static final int Animation_AppCompat_DropDownUp=0x7f07007d; + public static final int AlertDialog_AppCompat=0x7f08007c; + public static final int AlertDialog_AppCompat_Light=0x7f08007d; + public static final int Animation_AppCompat_Dialog=0x7f08007e; + public static final int Animation_AppCompat_DropDownUp=0x7f08007f; /** Customize your theme here. */ - public static final int AppTheme=0x7f07012e; - public static final int Base_AlertDialog_AppCompat=0x7f07007e; - public static final int Base_AlertDialog_AppCompat_Light=0x7f07007f; - public static final int Base_Animation_AppCompat_Dialog=0x7f070080; - public static final int Base_Animation_AppCompat_DropDownUp=0x7f070081; - public static final int Base_DialogWindowTitle_AppCompat=0x7f070082; - public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f070083; - public static final int Base_TextAppearance_AppCompat=0x7f07002d; - public static final int Base_TextAppearance_AppCompat_Body1=0x7f07002e; - public static final int Base_TextAppearance_AppCompat_Body2=0x7f07002f; - public static final int Base_TextAppearance_AppCompat_Button=0x7f070018; - public static final int Base_TextAppearance_AppCompat_Caption=0x7f070030; - public static final int Base_TextAppearance_AppCompat_Display1=0x7f070031; - public static final int Base_TextAppearance_AppCompat_Display2=0x7f070032; - public static final int Base_TextAppearance_AppCompat_Display3=0x7f070033; - public static final int Base_TextAppearance_AppCompat_Display4=0x7f070034; - public static final int Base_TextAppearance_AppCompat_Headline=0x7f070035; - public static final int Base_TextAppearance_AppCompat_Inverse=0x7f070003; - public static final int Base_TextAppearance_AppCompat_Large=0x7f070036; - public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f070004; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070037; - public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f070038; - public static final int Base_TextAppearance_AppCompat_Medium=0x7f070039; - public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f070005; - public static final int Base_TextAppearance_AppCompat_Menu=0x7f07003a; - public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f070084; - public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f07003b; - public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f07003c; - public static final int Base_TextAppearance_AppCompat_Small=0x7f07003d; - public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f070006; - public static final int Base_TextAppearance_AppCompat_Subhead=0x7f07003e; - public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f070007; - public static final int Base_TextAppearance_AppCompat_Title=0x7f07003f; - public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070008; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070040; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f070041; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f070042; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f070043; - public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070044; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070045; - public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070046; - public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f070047; - public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070076; - public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f070085; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f070048; - public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f070049; - public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f07004a; - public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f07004b; - public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f070086; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f07004c; - public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f07004d; - public static final int Base_Theme_AppCompat=0x7f07004e; - public static final int Base_Theme_AppCompat_CompactMenu=0x7f070087; - public static final int Base_Theme_AppCompat_Dialog=0x7f070009; - public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f070088; - public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f070089; - public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f07008a; - public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f070001; - public static final int Base_Theme_AppCompat_Light=0x7f07004f; - public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f07008b; - public static final int Base_Theme_AppCompat_Light_Dialog=0x7f07000a; - public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f07008c; - public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f07008d; - public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f07008e; - public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070002; - public static final int Base_ThemeOverlay_AppCompat=0x7f07008f; - public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f070090; - public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f070091; - public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f070092; - public static final int Base_ThemeOverlay_AppCompat_Light=0x7f070093; - public static final int Base_V11_Theme_AppCompat_Dialog=0x7f07000b; - public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f07000c; - public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070014; - public static final int Base_V12_Widget_AppCompat_EditText=0x7f070015; - public static final int Base_V21_Theme_AppCompat=0x7f070050; - public static final int Base_V21_Theme_AppCompat_Dialog=0x7f070051; - public static final int Base_V21_Theme_AppCompat_Light=0x7f070052; - public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f070053; - public static final int Base_V22_Theme_AppCompat=0x7f070074; - public static final int Base_V22_Theme_AppCompat_Light=0x7f070075; - public static final int Base_V23_Theme_AppCompat=0x7f070077; - public static final int Base_V23_Theme_AppCompat_Light=0x7f070078; - public static final int Base_V7_Theme_AppCompat=0x7f070094; - public static final int Base_V7_Theme_AppCompat_Dialog=0x7f070095; - public static final int Base_V7_Theme_AppCompat_Light=0x7f070096; - public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f070097; - public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f070098; - public static final int Base_V7_Widget_AppCompat_EditText=0x7f070099; - public static final int Base_Widget_AppCompat_ActionBar=0x7f07009a; - public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f07009b; - public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f07009c; - public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f070054; - public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f070055; - public static final int Base_Widget_AppCompat_ActionButton=0x7f070056; - public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f070057; - public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f070058; - public static final int Base_Widget_AppCompat_ActionMode=0x7f07009d; - public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f07009e; - public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070016; - public static final int Base_Widget_AppCompat_Button=0x7f070059; - public static final int Base_Widget_AppCompat_Button_Borderless=0x7f07005a; - public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f07005b; - public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f07009f; - public static final int Base_Widget_AppCompat_Button_Colored=0x7f070079; - public static final int Base_Widget_AppCompat_Button_Small=0x7f07005c; - public static final int Base_Widget_AppCompat_ButtonBar=0x7f07005d; - public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700a0; - public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f07005e; - public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f07005f; - public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700a1; - public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070000; - public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700a2; - public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f070060; - public static final int Base_Widget_AppCompat_EditText=0x7f070017; - public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0700a3; - public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700a4; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700a5; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f070061; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f070062; - public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070063; - public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f070064; - public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070065; - public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f070066; - public static final int Base_Widget_AppCompat_ListView=0x7f070067; - public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f070068; - public static final int Base_Widget_AppCompat_ListView_Menu=0x7f070069; - public static final int Base_Widget_AppCompat_PopupMenu=0x7f07006a; - public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f07006b; - public static final int Base_Widget_AppCompat_PopupWindow=0x7f0700a6; - public static final int Base_Widget_AppCompat_ProgressBar=0x7f07000d; - public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07000e; - public static final int Base_Widget_AppCompat_RatingBar=0x7f07006c; - public static final int Base_Widget_AppCompat_SearchView=0x7f0700a7; - public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700a8; - public static final int Base_Widget_AppCompat_Spinner=0x7f07006d; - public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f07006e; - public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f07006f; - public static final int Base_Widget_AppCompat_Toolbar=0x7f0700a9; - public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f070070; - public static final int Platform_AppCompat=0x7f07000f; - public static final int Platform_AppCompat_Light=0x7f070010; - public static final int Platform_ThemeOverlay_AppCompat=0x7f070071; - public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f070072; - public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f070073; - public static final int Platform_V11_AppCompat=0x7f070011; - public static final int Platform_V11_AppCompat_Light=0x7f070012; - public static final int Platform_V14_AppCompat=0x7f070019; - public static final int Platform_V14_AppCompat_Light=0x7f07001a; - public static final int Platform_Widget_AppCompat_Spinner=0x7f070013; - public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f070020; - public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f070021; - public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f070022; - public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f070023; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f070024; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070025; - public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070026; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070027; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070028; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f070029; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f07002a; - public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f07002b; - public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f07002c; - public static final int TextAppearance_AppCompat=0x7f0700aa; - public static final int TextAppearance_AppCompat_Body1=0x7f0700ab; - public static final int TextAppearance_AppCompat_Body2=0x7f0700ac; - public static final int TextAppearance_AppCompat_Button=0x7f0700ad; - public static final int TextAppearance_AppCompat_Caption=0x7f0700ae; - public static final int TextAppearance_AppCompat_Display1=0x7f0700af; - public static final int TextAppearance_AppCompat_Display2=0x7f0700b0; - public static final int TextAppearance_AppCompat_Display3=0x7f0700b1; - public static final int TextAppearance_AppCompat_Display4=0x7f0700b2; - public static final int TextAppearance_AppCompat_Headline=0x7f0700b3; - public static final int TextAppearance_AppCompat_Inverse=0x7f0700b4; - public static final int TextAppearance_AppCompat_Large=0x7f0700b5; - public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0700b6; - public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700b7; - public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700b8; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700b9; - public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700ba; - public static final int TextAppearance_AppCompat_Medium=0x7f0700bb; - public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0700bc; - public static final int TextAppearance_AppCompat_Menu=0x7f0700bd; - public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700be; - public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0700bf; - public static final int TextAppearance_AppCompat_Small=0x7f0700c0; - public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0700c1; - public static final int TextAppearance_AppCompat_Subhead=0x7f0700c2; - public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700c3; - public static final int TextAppearance_AppCompat_Title=0x7f0700c4; - public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0700c5; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700c6; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700c7; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700c8; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700c9; - public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700ca; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700cb; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700cc; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700cd; - public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700ce; - public static final int TextAppearance_AppCompat_Widget_Button=0x7f0700cf; - public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700d0; - public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700d1; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700d2; - public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700d3; - public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0700d4; - public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700d5; - public static final int TextAppearance_StatusBar_EventContent=0x7f07001b; - public static final int TextAppearance_StatusBar_EventContent_Info=0x7f07001c; - public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f07001d; - public static final int TextAppearance_StatusBar_EventContent_Time=0x7f07001e; - public static final int TextAppearance_StatusBar_EventContent_Title=0x7f07001f; - public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700d6; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0700d7; - public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0700d8; - public static final int Theme_AppCompat=0x7f0700d9; - public static final int Theme_AppCompat_CompactMenu=0x7f0700da; - public static final int Theme_AppCompat_Dialog=0x7f0700db; - public static final int Theme_AppCompat_Dialog_Alert=0x7f0700dc; - public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0700dd; - public static final int Theme_AppCompat_DialogWhenLarge=0x7f0700de; - public static final int Theme_AppCompat_Light=0x7f0700df; - public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0700e0; - public static final int Theme_AppCompat_Light_Dialog=0x7f0700e1; - public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0700e2; - public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0700e3; - public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0700e4; - public static final int Theme_AppCompat_Light_NoActionBar=0x7f0700e5; - public static final int Theme_AppCompat_NoActionBar=0x7f0700e6; - public static final int ThemeOverlay_AppCompat=0x7f0700e7; - public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0700e8; - public static final int ThemeOverlay_AppCompat_Dark=0x7f0700e9; - public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700ea; - public static final int ThemeOverlay_AppCompat_Light=0x7f0700eb; - public static final int Universal_Widget_ProgressBar=0x7f07012f; - public static final int Widget_AppCompat_ActionBar=0x7f0700ec; - public static final int Widget_AppCompat_ActionBar_Solid=0x7f0700ed; - public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0700ee; - public static final int Widget_AppCompat_ActionBar_TabText=0x7f0700ef; - public static final int Widget_AppCompat_ActionBar_TabView=0x7f0700f0; - public static final int Widget_AppCompat_ActionButton=0x7f0700f1; - public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0700f2; - public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0700f3; - public static final int Widget_AppCompat_ActionMode=0x7f0700f4; - public static final int Widget_AppCompat_ActivityChooserView=0x7f0700f5; - public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0700f6; - public static final int Widget_AppCompat_Button=0x7f0700f7; - public static final int Widget_AppCompat_Button_Borderless=0x7f0700f8; - public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0700f9; - public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700fa; - public static final int Widget_AppCompat_Button_Colored=0x7f0700fb; - public static final int Widget_AppCompat_Button_Small=0x7f0700fc; - public static final int Widget_AppCompat_ButtonBar=0x7f0700fd; - public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700fe; - public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0700ff; - public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f070100; - public static final int Widget_AppCompat_CompoundButton_Switch=0x7f070101; - public static final int Widget_AppCompat_DrawerArrowToggle=0x7f070102; - public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f070103; - public static final int Widget_AppCompat_EditText=0x7f070104; - public static final int Widget_AppCompat_Light_ActionBar=0x7f070105; - public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f070106; - public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070107; - public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f070108; - public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f070109; - public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f07010a; - public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07010b; - public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f07010c; - public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f07010d; - public static final int Widget_AppCompat_Light_ActionButton=0x7f07010e; - public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f07010f; - public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f070110; - public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f070111; - public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f070112; - public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f070113; - public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070114; - public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f070115; - public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f070116; - public static final int Widget_AppCompat_Light_PopupMenu=0x7f070117; - public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070118; - public static final int Widget_AppCompat_Light_SearchView=0x7f070119; - public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f07011a; - public static final int Widget_AppCompat_ListPopupWindow=0x7f07011b; - public static final int Widget_AppCompat_ListView=0x7f07011c; - public static final int Widget_AppCompat_ListView_DropDown=0x7f07011d; - public static final int Widget_AppCompat_ListView_Menu=0x7f07011e; - public static final int Widget_AppCompat_PopupMenu=0x7f07011f; - public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f070120; - public static final int Widget_AppCompat_PopupWindow=0x7f070121; - public static final int Widget_AppCompat_ProgressBar=0x7f070122; - public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f070123; - public static final int Widget_AppCompat_RatingBar=0x7f070124; - public static final int Widget_AppCompat_SearchView=0x7f070125; - public static final int Widget_AppCompat_SearchView_ActionBar=0x7f070126; - public static final int Widget_AppCompat_Spinner=0x7f070127; - public static final int Widget_AppCompat_Spinner_DropDown=0x7f070128; - public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f070129; - public static final int Widget_AppCompat_Spinner_Underlined=0x7f07012a; - public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f07012b; - public static final int Widget_AppCompat_Toolbar=0x7f07012c; - public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f07012d; + public static final int AppTheme=0x7f080000; + public static final int Base_AlertDialog_AppCompat=0x7f080080; + public static final int Base_AlertDialog_AppCompat_Light=0x7f080081; + public static final int Base_Animation_AppCompat_Dialog=0x7f080082; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f080083; + public static final int Base_DialogWindowTitle_AppCompat=0x7f080084; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f080085; + public static final int Base_TextAppearance_AppCompat=0x7f08002f; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f080030; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f080031; + public static final int Base_TextAppearance_AppCompat_Button=0x7f08001a; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f080032; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f080033; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f080034; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f080035; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f080036; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f080037; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f080005; + public static final int Base_TextAppearance_AppCompat_Large=0x7f080038; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f080006; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f080039; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f08003a; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f08003b; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f080007; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f08003c; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f080086; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f08003d; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f08003e; + public static final int Base_TextAppearance_AppCompat_Small=0x7f08003f; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f080008; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f080040; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f080009; + public static final int Base_TextAppearance_AppCompat_Title=0x7f080041; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f08000a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f080042; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f080043; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f080044; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f080045; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f080046; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f080047; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f080048; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f080049; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f080078; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f080087; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f08004a; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f08004b; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f08004c; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f08004d; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f080088; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f08004e; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f08004f; + public static final int Base_Theme_AppCompat=0x7f080050; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f080089; + public static final int Base_Theme_AppCompat_Dialog=0x7f08000b; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f08008a; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f08008b; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f08008c; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f080003; + public static final int Base_Theme_AppCompat_Light=0x7f080051; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f08008d; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f08000c; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f08008e; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f08008f; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f080090; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f080004; + public static final int Base_ThemeOverlay_AppCompat=0x7f080091; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f080092; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f080093; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f080094; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f080095; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f08000d; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f08000e; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f080016; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f080017; + public static final int Base_V21_Theme_AppCompat=0x7f080052; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f080053; + public static final int Base_V21_Theme_AppCompat_Light=0x7f080054; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f080055; + public static final int Base_V22_Theme_AppCompat=0x7f080076; + public static final int Base_V22_Theme_AppCompat_Light=0x7f080077; + public static final int Base_V23_Theme_AppCompat=0x7f080079; + public static final int Base_V23_Theme_AppCompat_Light=0x7f08007a; + public static final int Base_V7_Theme_AppCompat=0x7f080096; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f080097; + public static final int Base_V7_Theme_AppCompat_Light=0x7f080098; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f080099; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f08009a; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f08009b; + public static final int Base_Widget_AppCompat_ActionBar=0x7f08009c; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f08009d; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f08009e; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f080056; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f080057; + public static final int Base_Widget_AppCompat_ActionButton=0x7f080058; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f080059; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f08005a; + public static final int Base_Widget_AppCompat_ActionMode=0x7f08009f; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0800a0; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f080018; + public static final int Base_Widget_AppCompat_Button=0x7f08005b; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f08005c; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f08005d; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800a1; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f08007b; + public static final int Base_Widget_AppCompat_Button_Small=0x7f08005e; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f08005f; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0800a2; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f080060; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f080061; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0800a3; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f080002; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0800a4; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f080062; + public static final int Base_Widget_AppCompat_EditText=0x7f080019; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0800a5; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0800a6; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0800a7; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f080063; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f080064; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f080065; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f080066; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f080067; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f080068; + public static final int Base_Widget_AppCompat_ListView=0x7f080069; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f08006a; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f08006b; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f08006c; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f08006d; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0800a8; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f08000f; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f080010; + public static final int Base_Widget_AppCompat_RatingBar=0x7f08006e; + public static final int Base_Widget_AppCompat_SearchView=0x7f0800a9; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0800aa; + public static final int Base_Widget_AppCompat_Spinner=0x7f08006f; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f080070; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f080071; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0800ab; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f080072; + public static final int Platform_AppCompat=0x7f080011; + public static final int Platform_AppCompat_Light=0x7f080012; + public static final int Platform_ThemeOverlay_AppCompat=0x7f080073; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f080074; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f080075; + public static final int Platform_V11_AppCompat=0x7f080013; + public static final int Platform_V11_AppCompat_Light=0x7f080014; + public static final int Platform_V14_AppCompat=0x7f08001b; + public static final int Platform_V14_AppCompat_Light=0x7f08001c; + public static final int Platform_Widget_AppCompat_Spinner=0x7f080015; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f080022; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f080023; + public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f080024; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f080025; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f080026; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f080027; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f080028; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f080029; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f08002a; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f08002b; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f08002c; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f08002d; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f08002e; + public static final int TextAppearance_AppCompat=0x7f0800ac; + public static final int TextAppearance_AppCompat_Body1=0x7f0800ad; + public static final int TextAppearance_AppCompat_Body2=0x7f0800ae; + public static final int TextAppearance_AppCompat_Button=0x7f0800af; + public static final int TextAppearance_AppCompat_Caption=0x7f0800b0; + public static final int TextAppearance_AppCompat_Display1=0x7f0800b1; + public static final int TextAppearance_AppCompat_Display2=0x7f0800b2; + public static final int TextAppearance_AppCompat_Display3=0x7f0800b3; + public static final int TextAppearance_AppCompat_Display4=0x7f0800b4; + public static final int TextAppearance_AppCompat_Headline=0x7f0800b5; + public static final int TextAppearance_AppCompat_Inverse=0x7f0800b6; + public static final int TextAppearance_AppCompat_Large=0x7f0800b7; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0800b8; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0800b9; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0800ba; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0800bb; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0800bc; + public static final int TextAppearance_AppCompat_Medium=0x7f0800bd; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0800be; + public static final int TextAppearance_AppCompat_Menu=0x7f0800bf; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0800c0; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0800c1; + public static final int TextAppearance_AppCompat_Small=0x7f0800c2; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0800c3; + public static final int TextAppearance_AppCompat_Subhead=0x7f0800c4; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0800c5; + public static final int TextAppearance_AppCompat_Title=0x7f0800c6; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0800c7; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0800c8; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0800c9; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0800ca; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0800cb; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0800cc; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0800cd; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0800ce; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0800cf; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0800d0; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f0800d1; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0800d2; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0800d3; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0800d4; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0800d5; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0800d6; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0800d7; + public static final int TextAppearance_StatusBar_EventContent=0x7f08001d; + public static final int TextAppearance_StatusBar_EventContent_Info=0x7f08001e; + public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f08001f; + public static final int TextAppearance_StatusBar_EventContent_Time=0x7f080020; + public static final int TextAppearance_StatusBar_EventContent_Title=0x7f080021; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0800d8; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0800d9; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0800da; + public static final int Theme_AppCompat=0x7f0800db; + public static final int Theme_AppCompat_CompactMenu=0x7f0800dc; + public static final int Theme_AppCompat_Dialog=0x7f0800dd; + public static final int Theme_AppCompat_Dialog_Alert=0x7f0800de; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0800df; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f0800e0; + public static final int Theme_AppCompat_Light=0x7f0800e1; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0800e2; + public static final int Theme_AppCompat_Light_Dialog=0x7f0800e3; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0800e4; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0800e5; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0800e6; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f0800e7; + public static final int Theme_AppCompat_NoActionBar=0x7f0800e8; + public static final int ThemeOverlay_AppCompat=0x7f0800e9; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0800ea; + public static final int ThemeOverlay_AppCompat_Dark=0x7f0800eb; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0800ec; + public static final int ThemeOverlay_AppCompat_Light=0x7f0800ed; + public static final int Universal_Widget_ProgressBar=0x7f080001; + public static final int Widget_AppCompat_ActionBar=0x7f0800ee; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f0800ef; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0800f0; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f0800f1; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f0800f2; + public static final int Widget_AppCompat_ActionButton=0x7f0800f3; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0800f4; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0800f5; + public static final int Widget_AppCompat_ActionMode=0x7f0800f6; + public static final int Widget_AppCompat_ActivityChooserView=0x7f0800f7; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0800f8; + public static final int Widget_AppCompat_Button=0x7f0800f9; + public static final int Widget_AppCompat_Button_Borderless=0x7f0800fa; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0800fb; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0800fc; + public static final int Widget_AppCompat_Button_Colored=0x7f0800fd; + public static final int Widget_AppCompat_Button_Small=0x7f0800fe; + public static final int Widget_AppCompat_ButtonBar=0x7f0800ff; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f080100; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f080101; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f080102; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f080103; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f080104; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f080105; + public static final int Widget_AppCompat_EditText=0x7f080106; + public static final int Widget_AppCompat_Light_ActionBar=0x7f080107; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f080108; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f080109; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f08010a; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f08010b; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f08010c; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f08010d; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f08010e; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f08010f; + public static final int Widget_AppCompat_Light_ActionButton=0x7f080110; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f080111; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f080112; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f080113; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f080114; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f080115; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f080116; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f080117; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f080118; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f080119; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f08011a; + public static final int Widget_AppCompat_Light_SearchView=0x7f08011b; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f08011c; + public static final int Widget_AppCompat_ListPopupWindow=0x7f08011d; + public static final int Widget_AppCompat_ListView=0x7f08011e; + public static final int Widget_AppCompat_ListView_DropDown=0x7f08011f; + public static final int Widget_AppCompat_ListView_Menu=0x7f080120; + public static final int Widget_AppCompat_PopupMenu=0x7f080121; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f080122; + public static final int Widget_AppCompat_PopupWindow=0x7f080123; + public static final int Widget_AppCompat_ProgressBar=0x7f080124; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f080125; + public static final int Widget_AppCompat_RatingBar=0x7f080126; + public static final int Widget_AppCompat_SearchView=0x7f080127; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f080128; + public static final int Widget_AppCompat_Spinner=0x7f080129; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f08012a; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f08012b; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f08012c; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f08012d; + public static final int Widget_AppCompat_Toolbar=0x7f08012e; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f08012f; } public static final class styleable { /** Attributes that can be used with a ActionBar. @@ -2163,13 +2163,13 @@ public static final class styleable { @see #ActionBar_titleTextStyle */ public static final int[] ActionBar = { - 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, - 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, - 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, - 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, - 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, - 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, - 0x7f01001a, 0x7f01001b, 0x7f01007b + 0x7f010004, 0x7f010006, 0x7f010007, 0x7f010008, + 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, + 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, + 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01007e }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#background} @@ -2589,8 +2589,8 @@ theme attribute (in the form @see #ActionMode_titleTextStyle */ public static final int[] ActionMode = { - 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, - 0x7f01000e, 0x7f01001c + 0x7f010004, 0x7f01000a, 0x7f01000b, 0x7f01000f, + 0x7f010011, 0x7f01001f }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#background} @@ -2673,7 +2673,7 @@ theme attribute (in the form @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { - 0x7f01001d, 0x7f01001e + 0x7f010020, 0x7f010021 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#expandActivityOverflowButtonDrawable} @@ -2720,8 +2720,8 @@ theme attribute (in the form @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog = { - 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, - 0x7f010022, 0x7f010023 + 0x010100f2, 0x7f010022, 0x7f010023, 0x7f010024, + 0x7f010025, 0x7f010026 }; /**

This symbol is the offset where the {@link android.R.attr#layout} @@ -2792,7 +2792,7 @@ theme attribute (in the form @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { - 0x01010034, 0x7f010024 + 0x01010034, 0x7f010027 }; /**

This symbol is the offset where the {@link android.R.attr#textAppearance} @@ -2826,7 +2826,7 @@ theme attribute (in the form @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { - 0x01010107, 0x7f010025, 0x7f010026 + 0x01010107, 0x7f010028, 0x7f010029 }; /**

This symbol is the offset where the {@link android.R.attr#button} @@ -2894,8 +2894,8 @@ theme attribute (in the form @see #DrawerArrowToggle_thickness */ public static final int[] DrawerArrowToggle = { - 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, - 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e + 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, + 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#arrowHeadLength} @@ -3050,8 +3050,8 @@ theme attribute (in the form */ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, - 0x01010128, 0x7f01000b, 0x7f01002f, 0x7f010030, - 0x7f010031 + 0x01010128, 0x7f01000e, 0x7f010032, 0x7f010033, + 0x7f010034 }; /**

This symbol is the offset where the {@link android.R.attr#baselineAligned} @@ -3318,8 +3318,8 @@

Must be one or more (separated by '|') of the following constant values.

0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, - 0x0101026f, 0x7f010032, 0x7f010033, 0x7f010034, - 0x7f010035 + 0x0101026f, 0x7f010035, 0x7f010036, 0x7f010037, + 0x7f010038 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionLayout} @@ -3483,7 +3483,7 @@

Must be one or more (separated by '|') of the following constant values.

*/ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, - 0x0101012f, 0x01010130, 0x01010131, 0x7f010036 + 0x0101012f, 0x01010130, 0x01010131, 0x7f010039 }; /**

This symbol is the offset where the {@link android.R.attr#headerBackground} @@ -3554,7 +3554,7 @@ theme attribute (in the form @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { - 0x01010176, 0x7f010037 + 0x01010176, 0x7f01003a }; /**

This symbol is the offset where the {@link android.R.attr#popupBackground} @@ -3587,7 +3587,7 @@ theme attribute (in the form @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { - 0x7f010038 + 0x7f01003b }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#state_above_anchor} @@ -3647,10 +3647,10 @@ theme attribute (in the form */ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, - 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, - 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, - 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, - 0x7f010045 + 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, + 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, + 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, + 0x7f010048 }; /**

This symbol is the offset where the {@link android.R.attr#focusable} @@ -3835,7 +3835,7 @@ theme attribute (in the form @see #Spinner_popupTheme */ public static final int[] Spinner = { - 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b + 0x01010176, 0x0101017b, 0x01010262, 0x7f01001e }; /**

This symbol is the offset where the {@link android.R.attr#dropDownWidth} @@ -3894,9 +3894,9 @@ theme attribute (in the form @see #SwitchCompat_track */ public static final int[] SwitchCompat = { - 0x01010124, 0x01010125, 0x01010142, 0x7f010046, - 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, - 0x7f01004b, 0x7f01004c + 0x01010124, 0x01010125, 0x01010142, 0x7f010049, + 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, + 0x7f01004e, 0x7f01004f }; /**

This symbol is the offset where the {@link android.R.attr#textOff} @@ -4032,7 +4032,7 @@ theme attribute (in the form */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, - 0x7f010024 + 0x7f010027 }; /**

This symbol is the offset where the {@link android.R.attr#textColor} @@ -4294,33 +4294,33 @@ theme attribute (in the form @see #Theme_windowNoTitle */ public static final int[] Theme = { - 0x01010057, 0x010100ae, 0x7f01004d, 0x7f01004e, - 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, - 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, - 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, - 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, - 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, - 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, - 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, - 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, - 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, - 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, - 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, - 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, - 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, - 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, - 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, - 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, - 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, - 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, - 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, - 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, - 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, - 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, - 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, - 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, - 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, - 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6 + 0x01010057, 0x010100ae, 0x7f010050, 0x7f010051, + 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, + 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, + 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, + 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, + 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, + 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, + 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, + 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, + 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, + 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, + 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, + 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, + 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, + 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, + 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, + 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, + 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, + 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, + 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, + 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, + 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, + 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, + 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, + 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, + 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, + 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#actionBarDivider} @@ -5637,13 +5637,13 @@ theme attribute (in the form @see #Toolbar_titleTextColor */ public static final int[] Toolbar = { - 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, - 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, - 0x7f010019, 0x7f01001b, 0x7f0100b7, 0x7f0100b8, - 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, - 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, - 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, - 0x7f0100c5 + 0x010100af, 0x01010140, 0x7f010006, 0x7f010009, + 0x7f01000d, 0x7f010019, 0x7f01001a, 0x7f01001b, + 0x7f01001c, 0x7f01001e, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, + 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, + 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, + 0x7f0100c8 }; /**

This symbol is the offset where the {@link android.R.attr#gravity} @@ -5988,7 +5988,7 @@ theme attribute (in the form @see #UniversalMediaController_uvv_scalable */ public static final int[] UniversalMediaController = { - 0x7f0100cb + 0x7f010000 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#uvv_scalable} @@ -6017,7 +6017,7 @@ theme attribute (in the form @see #UniversalVideoView_uvv_fitXY */ public static final int[] UniversalVideoView = { - 0x7f0100cc, 0x7f0100cd + 0x7f010001, 0x7f010002 }; /**

This symbol is the offset where the {@link com.naveed.ytextractor.R.attr#uvv_autoRotation} @@ -6066,8 +6066,8 @@ theme attribute (in the form @see #View_theme */ public static final int[] View = { - 0x01010000, 0x010100da, 0x7f0100c6, 0x7f0100c7, - 0x7f0100c8 + 0x01010000, 0x010100da, 0x7f0100c9, 0x7f0100ca, + 0x7f0100cb }; /**

This symbol is the offset where the {@link android.R.attr#focusable} @@ -6138,7 +6138,7 @@ theme attribute (in the form @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { - 0x010100d4, 0x7f0100c9, 0x7f0100ca + 0x010100d4, 0x7f0100cc, 0x7f0100cd }; /**

This symbol is the offset where the {@link android.R.attr#background} diff --git a/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/MainActivity.java b/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/MainActivity.java index dea8a5a..22a82a2 100644 --- a/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/MainActivity.java +++ b/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/MainActivity.java @@ -6,24 +6,23 @@ import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; +import android.widget.AdapterView; +import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.EditText; +import android.widget.ListView; import android.widget.TextView; import android.widget.Toast; import com.naveed.ytextractor.model.YTMedia; +import com.naveed.ytextractor.model.YTSubtitles; import com.naveed.ytextractor.model.YoutubeMeta; import com.naveed.ytextractor.utils.ContextUtils; import com.naveed.ytextractor.utils.LogUtils; +import com.naveed.ytextractor.utils.Utils; import com.universalvideoview.UniversalMediaController; import com.universalvideoview.UniversalVideoView; -import java.util.List; -import android.widget.ListAdapter; import java.util.ArrayList; -import android.widget.ArrayAdapter; -import android.widget.ListView; -import android.widget.AdapterView; -import android.widget.Adapter; -import com.naveed.ytextractor.utils.Utils; +import java.util.List; public class MainActivity extends Activity { @@ -67,6 +66,7 @@ protected void onCreate(Bundle savedInstanceState) { mMediaController = (UniversalMediaController) findViewById(R.id.media_controller); mVideoView.setMediaController(mMediaController); mVideoView.setAutoRotation(false); + mVideoView.setVideoViewCallback(new UniversalVideoView.VideoViewCallback() { //private boolean isFullscreen; @@ -99,8 +99,9 @@ public void onBufferingEnd(MediaPlayer mediaPlayer) {// steam end loading }); edit = (EditText)findViewById(R.id.mainEditText1); btn = (Button)findViewById(R.id.mainButton1); - edit.setText("https://youtu.be/4GuqB1BQVr4"); + edit.setText("https://youtu.be/zjMtaw2mrrc"); edit.setHint("id or url"); + btn.setOnClickListener((new OnClickListener(){ @Override @@ -110,15 +111,22 @@ public void onClick(View p1) { new YoutubeStreamExtractor(new YoutubeStreamExtractor.ExtractorListner(){ @Override - public void onExtractionDone(List adativeStream, final List muxedStream, YoutubeMeta meta) { + public void onExtractionDone(List adativeStream, final List muxedStream,List subtitles, YoutubeMeta meta) { + //url to get subtitle + //String subUrl=subtitles.get(0).getBaseUrl(); + + + urls_li.clear(); for (YTMedia c:muxedStream) { + urls_li.add(c.getUrl()); adapter.notifyDataSetChanged(); } - for (YTMedia c:adativeStream) { - urls_li.add(c.getUrl()); + for (YTMedia media:adativeStream) { + + urls_li.add(media.getUrl()); adapter.notifyDataSetChanged(); } //Toast.makeText(getApplicationContext(), meta.getTitle(), Toast.LENGTH_LONG).show(); diff --git a/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/YoutubeStreamExtractor.java b/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/YoutubeStreamExtractor.java index ce8affb..2706210 100644 --- a/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/YoutubeStreamExtractor.java +++ b/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/YoutubeStreamExtractor.java @@ -20,6 +20,7 @@ import java.util.HashMap; import java.util.List; import java.util.Map; +import com.naveed.ytextractor.model.YTSubtitles; public class YoutubeStreamExtractor extends AsyncTask { @@ -27,6 +28,7 @@ public class YoutubeStreamExtractor extends AsyncTask { Map Headers=new HashMap<>(); List adaptiveMedia=new ArrayList<>(); List muxedMedia=new ArrayList<>(); + List subtitle=new ArrayList<>(); String regexUrl=("(?<=url=).*"); String regexYtshortLink="(http|https)://(www\\.|)youtu.be/.*"; String regexPageLink = ("(http|https)://(www\\.|m.|)youtube\\.com/watch\\?v=(.+?)( |\\z|&)"); @@ -74,7 +76,7 @@ protected void onPostExecute(Void result) { if (Ex != null) { listener.onExtractionGoesWrong(Ex); } else { - listener.onExtractionDone(adaptiveMedia, muxedMedia, ytmeta); + listener.onExtractionDone(adaptiveMedia, muxedMedia,subtitle, ytmeta); } } @@ -106,6 +108,7 @@ protected Void doInBackground(String[] ids) { PlayerResponse playerResponse=parseJson(jsonBody); ytmeta = playerResponse.getVideoDetails(); + subtitle=playerResponse.getCaptions().getPlayerCaptionsTracklistRenderer().getCaptionTracks(); //Utils.copyToBoard(jsonBody); if (playerResponse.getVideoDetails().getisLive()) { parseLiveUrls(playerResponse.getStreamingData()); @@ -246,8 +249,7 @@ private void parseLiveUrls(StreamingData streamData) throws Exception { public interface ExtractorListner { void onExtractionGoesWrong(ExtractorException e) - void onExtractionDone(List adativeStream, List muxedStream, YoutubeMeta meta) - + void onExtractionDone(List adativeStream, List muxedStream,List subList, YoutubeMeta meta) } } diff --git a/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/model/PlayerResponse.java b/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/model/PlayerResponse.java index f591d3a..bf67dbe 100644 --- a/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/model/PlayerResponse.java +++ b/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/model/PlayerResponse.java @@ -1,10 +1,19 @@ package com.naveed.ytextractor.model; +import java.util.List; public class PlayerResponse { private PlayabilityStatus playabilityStatus; private StreamingData streamingData; private YoutubeMeta videoDetails; + private Captions captions; + public void setCaptions(Captions captions) { + this.captions = captions; + } + + public Captions getCaptions() { + return captions; + } public void setPlayabilityStatus(PlayabilityStatus playabilityStatus) { this.playabilityStatus = playabilityStatus; } @@ -33,8 +42,36 @@ public YoutubeMeta getVideoDetails() { + public class Captions{ + private PlayerCaptionsTracklistRenderer playerCaptionsTracklistRenderer; + + public void setPlayerCaptionsTracklistRenderer(PlayerCaptionsTracklistRenderer playerCaptionsTracklistRenderer) { + this.playerCaptionsTracklistRenderer = playerCaptionsTracklistRenderer; + } + + public PlayerCaptionsTracklistRenderer getPlayerCaptionsTracklistRenderer() { + return playerCaptionsTracklistRenderer; + } + + + + public class PlayerCaptionsTracklistRenderer{ + private List captionTracks; + + + public void setCaptionTracks(List captionTracks) { + this.captionTracks = captionTracks; + } + public List getCaptionTracks() { + return captionTracks; + } + } + } + + + public class PlayabilityStatus{ private String status; private boolean playableInEmbed; diff --git a/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/model/YTMedia.java b/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/model/YTMedia.java index 46b71d7..cfe470f 100644 --- a/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/model/YTMedia.java +++ b/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/model/YTMedia.java @@ -20,7 +20,13 @@ public class YTMedia String audioQuality; String url; int fps; + boolean isVideo; + + public boolean isVideo() { + return getMimeType().contains("video"); + } + public void setFps(int fps) { this.fps = fps; } diff --git a/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/model/YTSubtitles.java b/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/model/YTSubtitles.java new file mode 100644 index 0000000..ff227a2 --- /dev/null +++ b/YoutubeExtractor/app/src/main/java/com/naveed/ytextractor/model/YTSubtitles.java @@ -0,0 +1,50 @@ +package com.naveed.ytextractor.model; + +public class YTSubtitles{ + String baseUrl; + SubtitleName name; + String languageCode; + boolean isTranslatable; + + public void setBaseUrl(String baseUrl) { + this.baseUrl = baseUrl; + } + + public String getBaseUrl() { + return baseUrl; + } + + public void setName(SubtitleName name) { + this.name = name; + } + + public SubtitleName getName() { + return name; + } + + public void setLanguageCode(String languageCode) { + this.languageCode = languageCode; + } + + public String getLanguageCode() { + return languageCode; + } + + public void setIsTranslatable(boolean isTranslatable) { + this.isTranslatable = isTranslatable; + } + + public boolean isTranslatable() { + return isTranslatable; + } + public class SubtitleName{ + String simpleText; + public void setSimpleText(String simpleText) { + this.simpleText = simpleText; + } + + public String getSimpleText() { + return simpleText; + } + } +}