├── Nices20 ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── android.keystore ├── ant.properties ├── assets │ ├── ShareSDK.xml │ ├── fonts │ │ ├── huayun │ │ │ └── Huayun.TTF │ │ └── katong │ │ │ └── Katong.ttf │ ├── litepal.xml │ └── www │ │ ├── img_replace.js │ │ ├── large-font.js │ │ ├── news_detail_header_def.jpg │ │ ├── news_header.css │ │ ├── news_qa.auto.css │ │ ├── news_qa.min.css │ │ ├── night.js │ │ ├── show_bottom_link.js │ │ ├── template.html │ │ ├── video.js │ │ └── zepto.min.js ├── bin │ ├── AndroidManifest.xml │ ├── Nices18.apk │ ├── Nices19.apk │ ├── Nices20.apk │ ├── R.txt │ ├── classes.dex │ ├── classes │ │ ├── android │ │ │ └── support │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ ├── R$anim.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$bool.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$integer.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$styleable.class │ │ │ │ └── R.class │ │ ├── cn │ │ │ └── sharesdk │ │ │ │ └── onekeyshare │ │ │ │ ├── CustomerLogo.class │ │ │ │ ├── EditPage$1.class │ │ │ │ ├── EditPage$2.class │ │ │ │ ├── EditPage$3.class │ │ │ │ ├── EditPage.class │ │ │ │ ├── FollowList$FollowAdapter.class │ │ │ │ ├── FollowList$FollowListItem.class │ │ │ │ ├── FollowList$Following.class │ │ │ │ ├── FollowList$PRTHeader.class │ │ │ │ ├── FollowList$RotateImageView.class │ │ │ │ ├── FollowList.class │ │ │ │ ├── OnekeyShare$1.class │ │ │ │ ├── OnekeyShare$2.class │ │ │ │ ├── OnekeyShare.class │ │ │ │ ├── PicViewer.class │ │ │ │ ├── PlatformGridView$1.class │ │ │ │ ├── PlatformGridView$GridView.class │ │ │ │ ├── PlatformGridView$PlatformAdapter.class │ │ │ │ ├── PlatformGridView.class │ │ │ │ ├── ShareContentCustomizeCallback.class │ │ │ │ └── ShareCore.class │ │ └── com │ │ │ ├── android │ │ │ └── volley │ │ │ │ ├── R$string.class │ │ │ │ └── R.class │ │ │ └── cjj │ │ │ └── nices │ │ │ ├── activity │ │ │ ├── BuildConfig.class │ │ │ ├── MainActivity$1.class │ │ │ ├── MainActivity.class │ │ │ ├── NewsDetailActivity$1.class │ │ │ ├── NewsDetailActivity.class │ │ │ ├── R$anim.class │ │ │ ├── R$array.class │ │ │ ├── R$attr.class │ │ │ ├── R$bool.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$integer.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$styleable.class │ │ │ ├── R.class │ │ │ ├── wxapi │ │ │ │ └── WXEntryActivity.class │ │ │ └── yxapi │ │ │ │ └── YXEntryActivity.class │ │ │ ├── adapter │ │ │ ├── NavigationDrawerAdapter$1.class │ │ │ ├── NavigationDrawerAdapter$2.class │ │ │ ├── NavigationDrawerAdapter$ViewHolder.class │ │ │ ├── NavigationDrawerAdapter.class │ │ │ ├── NewsListAdapter$1.class │ │ │ ├── NewsListAdapter$AnimateFirstDisplayListener.class │ │ │ ├── NewsListAdapter.class │ │ │ ├── NewsListSwipeMenuListViewAdapter$ViewHolder.class │ │ │ ├── NewsListSwipeMenuListViewAdapter.class │ │ │ ├── SimpleBaseAdapter$ViewHolder.class │ │ │ └── SimpleBaseAdapter.class │ │ │ ├── callback │ │ │ └── NavigationDrawerCallbacks.class │ │ │ ├── constant │ │ │ └── Constants.class │ │ │ ├── dao │ │ │ ├── UserDao$1.class │ │ │ ├── UserDao$2.class │ │ │ ├── UserDao$3.class │ │ │ ├── UserDao$4.class │ │ │ ├── UserDao$5.class │ │ │ └── UserDao.class │ │ │ ├── db │ │ │ ├── FavoriteTableModel.class │ │ │ ├── NewsListModel.class │ │ │ └── NicesDBHelper.class │ │ │ ├── fragment │ │ │ ├── DetailFragment$1.class │ │ │ ├── DetailFragment$2.class │ │ │ ├── DetailFragment$3.class │ │ │ ├── DetailFragment$JavaScriptObject.class │ │ │ ├── DetailFragment.class │ │ │ ├── FavoriteFragment$1.class │ │ │ ├── FavoriteFragment$2.class │ │ │ ├── FavoriteFragment$FavoriteDataAsyncTask.class │ │ │ ├── FavoriteFragment.class │ │ │ ├── HomeFragment$1.class │ │ │ ├── HomeFragment$2.class │ │ │ ├── HomeFragment$LocalNewsListAsyncTask.class │ │ │ ├── HomeFragment$OldNewListAsyncTask.class │ │ │ ├── HomeFragment.class │ │ │ ├── MessageFragment.class │ │ │ ├── NavigationDrawerFragment$1.class │ │ │ ├── NavigationDrawerFragment$2.class │ │ │ ├── NavigationDrawerFragment.class │ │ │ ├── PictureFragment.class │ │ │ ├── SupportFragment.class │ │ │ └── VideoFragment.class │ │ │ ├── model │ │ │ ├── NavigationItem.class │ │ │ ├── NicesApplication.class │ │ │ ├── NicesDetailModel.class │ │ │ ├── NicesNewsListEntity$NewsListEntity.class │ │ │ └── NicesNewsListEntity.class │ │ │ └── util │ │ │ ├── ArrayUtils.class │ │ │ ├── AssetsUtils.class │ │ │ ├── FileService.class │ │ │ ├── ImageConfigBuilder.class │ │ │ ├── ListUtils.class │ │ │ ├── ObjectUtils.class │ │ │ └── UrlUtils.class │ ├── dexedLibs │ │ ├── ShareSDK-Core-2.3.7 涓嬪崍2.58.45-0d2f59da77f132519993b8088ff053ad.jar │ │ ├── ShareSDK-Core-2.3.7 涓嬪崍2.58.45-638e9c7f514a3d8887bba39805bdae20.jar │ │ ├── ShareSDK-Core-2.5.4-61786db1ae112bd1c5f39a6ba2a8aa88.jar │ │ ├── ShareSDK-Core-2.5.4-d17cf767929980ea34bd4e73ff79845b.jar │ │ ├── ShareSDK-Douban-2.3.7 涓嬪崍2.58.45-e4276d46b7fcddc8874698e9981b92c6.jar │ │ ├── ShareSDK-Douban-2.3.7 涓嬪崍2.58.45-f158abd4dab21c79561a3f5a44d19f32.jar │ │ ├── ShareSDK-Dropbox-2.3.7 涓嬪崍2.58.45-63d7fe9c3ee538b0bca2ad4697eb56e9.jar │ │ ├── ShareSDK-Dropbox-2.3.7 涓嬪崍2.58.45-c5f0181ee96db9bb2035e4655c92c379.jar │ │ ├── ShareSDK-Email-2.3.7 涓嬪崍2.58.45-b3838bfabf10a5af7ff9d3e2fd709c32.jar │ │ ├── ShareSDK-Email-2.3.7 涓嬪崍2.58.45-c4818f7f184770238f13e5bf5d59adc3.jar │ │ ├── ShareSDK-Email-2.5.4-380fab5f1801fc6715bf4cdd1ac231cc.jar │ │ ├── ShareSDK-Email-2.5.4-f280cdcb624f4d20563151acd5c90009.jar │ │ ├── ShareSDK-Evernote-2.3.7 涓嬪崍2.58.45-4e549adaab23e0aeec0f059860395a41.jar │ │ ├── ShareSDK-Evernote-2.3.7 涓嬪崍2.58.45-eec0df703cd93d857cdbf687546832d7.jar │ │ ├── ShareSDK-Facebook-2.3.7 涓嬪崍2.58.45-230af5b4753fe87bc9bd6fd89eb66c00.jar │ │ ├── ShareSDK-Facebook-2.3.7 涓嬪崍2.58.45-ef5859e7810d383b9604d6688566f21c.jar │ │ ├── ShareSDK-Facebook-2.5.4-c2977140a08bbf1f6599f27ed1d980b4.jar │ │ ├── ShareSDK-Facebook-2.5.4-c81baa69fbabdaf674e6e66254797d36.jar │ │ ├── ShareSDK-Flickr-2.3.7 涓嬪崍2.58.45-de9a6ff604223365ac6e499bd03e1450.jar │ │ ├── ShareSDK-Flickr-2.3.7 涓嬪崍2.58.45-f8b42d669da129c5c8a2216bf7510c3b.jar │ │ ├── ShareSDK-Foursquare-2.3.7 涓嬪崍2.58.45-6f9aeb24a1a653f813beb46911e5de9d.jar │ │ ├── ShareSDK-Foursquare-2.3.7 涓嬪崍2.58.45-dc512dda76a1670a102ff7525575103a.jar │ │ ├── ShareSDK-GooglePlus-2.3.7 涓嬪崍2.58.45-cc5a0e75d0513b4ee536ea87d8b5642b.jar │ │ ├── ShareSDK-GooglePlus-2.3.7 涓嬪崍2.58.45-dcded7fde780acffd4998afff8192730.jar │ │ ├── ShareSDK-GooglePlus-2.5.4-4bad9edc269d152c94c5191bcf3f3954.jar │ │ ├── ShareSDK-GooglePlus-2.5.4-dc3ae40be5379cb1cd5c50509b1256c5.jar │ │ ├── ShareSDK-Instagram-2.3.7 涓嬪崍2.58.45-63c985dbeec4692531e020b912d33168.jar │ │ ├── ShareSDK-Instagram-2.3.7 涓嬪崍2.58.45-c23a3e13210639853b6c7d678caec62d.jar │ │ ├── ShareSDK-KaiXin-2.3.7 涓嬪崍2.58.45-078aec5126e7f5a3bfdf8dbaaad81e66.jar │ │ ├── ShareSDK-KaiXin-2.3.7 涓嬪崍2.58.45-5f1a1406c27117e1ece1169d2d8b6cd4.jar │ │ ├── ShareSDK-Linkedin-2.3.7 涓嬪崍2.58.45-66dfe5954297294895f1c0423b54efd7.jar │ │ ├── ShareSDK-Linkedin-2.3.7 涓嬪崍2.58.45-e7201a4683e08a147d30fd396dca597f.jar │ │ ├── ShareSDK-Mingdao-2.3.7 涓嬪崍2.58.45-2c908e82b40d0afd67fbc23251a23d24.jar │ │ ├── ShareSDK-Mingdao-2.3.7 涓嬪崍2.58.45-59d0aeb4ca9e994bfb3496035e1911c8.jar │ │ ├── ShareSDK-NetEaseMicroBlog-2.3.7 涓嬪崍2.58.44-7fbd21c3639bade9b1ef706f84be978e.jar │ │ ├── ShareSDK-NetEaseMicroBlog-2.3.7 涓嬪崍2.58.44-dfd63852fa330009ae05559bd5cf3cbd.jar │ │ ├── ShareSDK-Pinterest-2.3.7 涓嬪崍2.58.44-1b177a1cdd302cf90e6ce67d2492601c.jar │ │ ├── ShareSDK-Pinterest-2.3.7 涓嬪崍2.58.44-fa1f1b846ce0dda36885bd8a5bd1b8c2.jar │ │ ├── ShareSDK-QQ-2.3.7 涓嬪崍2.58.44-06c7737065aaa326109f47deb762c9a5.jar │ │ ├── ShareSDK-QQ-2.3.7 涓嬪崍2.58.44-1d6e3ef506bf2345c5df2105f6e434b5.jar │ │ ├── ShareSDK-QQ-2.5.4-90bcf76cbbeb593f909ef8ff43f88341.jar │ │ ├── ShareSDK-QQ-2.5.4-f84ef0d8e0fc1ac833885821c67618ba.jar │ │ ├── ShareSDK-QZone-2.3.7 涓嬪崍2.58.44-9bef4fd6b0378beb93730301963c4531.jar │ │ ├── ShareSDK-QZone-2.3.7 涓嬪崍2.58.44-b96bf4d3346559c7a15fcfbdb938fce7.jar │ │ ├── ShareSDK-QZone-2.5.4-9dfd09fe6779515b788732e131a01234.jar │ │ ├── ShareSDK-QZone-2.5.4-e3659d05794dc335c0ca31a23b7e9b26.jar │ │ ├── ShareSDK-Renren-2.3.7 涓嬪崍2.58.44-100bdbf66a7044f3a23da6548bfe5965.jar │ │ ├── ShareSDK-Renren-2.3.7 涓嬪崍2.58.44-ce8305bfacbdc2684e323e8a5cf3cf4b.jar │ │ ├── ShareSDK-ShortMessage-2.3.7 涓嬪崍2.58.44-829c0a84598f45eaaa1cc6181dc484ee.jar │ │ ├── ShareSDK-ShortMessage-2.3.7 涓嬪崍2.58.44-8e38533d7146288fd45fb60b5a8d7657.jar │ │ ├── ShareSDK-ShortMessage-2.5.4-3fa60126f9d3b0ff2b49825cebbb3c49.jar │ │ ├── ShareSDK-ShortMessage-2.5.4-c256cd4f65746a85f02b232e03a3ffc0.jar │ │ ├── ShareSDK-SinaWeibo-2.3.7 涓嬪崍2.58.44-32718710e0ab71792f404d230b929a46.jar │ │ ├── ShareSDK-SinaWeibo-2.3.7 涓嬪崍2.58.44-5d70d5a09456a5e55b6c7c8e7a6ea8a7.jar │ │ ├── ShareSDK-SinaWeibo-2.5.4-9d2ad82bf90ec02af5644d8cb8fde52d.jar │ │ ├── ShareSDK-SinaWeibo-2.5.4-d77f6b0521fc923f4d813b1988e2bf29.jar │ │ ├── ShareSDK-SohuSuishenkan-2.3.7 涓嬪崍2.58.44-bc045e56ff48e1412ce02bbb247cd843.jar │ │ ├── ShareSDK-SohuSuishenkan-2.3.7 涓嬪崍2.58.44-d50f3fbd328ce2f7efc15919d26fc3e1.jar │ │ ├── ShareSDK-SouhuMicroBlog-2.3.7 涓嬪崍2.58.44-0ca44b94e585b2edfe71825a43f95153.jar │ │ ├── ShareSDK-SouhuMicroBlog-2.3.7 涓嬪崍2.58.44-6f0c06ce06dc382b6bfe8281cb2f51cf.jar │ │ ├── ShareSDK-TencentWeibo-2.3.7 涓嬪崍2.58.44-3b6e517f7ec5cc784a2355d6e6c1289c.jar │ │ ├── ShareSDK-TencentWeibo-2.3.7 涓嬪崍2.58.44-449a706e71c8154d262b2eb877d29c53.jar │ │ ├── ShareSDK-TencentWeibo-2.5.4-8436a31e7a3483860b51851948ef5707.jar │ │ ├── ShareSDK-TencentWeibo-2.5.4-fcfca5e95b813d73b282d81bf180f280.jar │ │ ├── ShareSDK-Tumblr-2.3.7 涓嬪崍2.58.44-1d113b7d7ed299785347ebcee0aff0ce.jar │ │ ├── ShareSDK-Tumblr-2.3.7 涓嬪崍2.58.44-1dca2b1051e4e4db9cb5eaed4a6ddc69.jar │ │ ├── ShareSDK-Twitter-2.3.7 涓嬪崍2.58.44-1b3b294b7e64548a228461a70ec05e4e.jar │ │ ├── ShareSDK-Twitter-2.3.7 涓嬪崍2.58.44-c8cb6b718deef9bd1383e81358408193.jar │ │ ├── ShareSDK-Twitter-2.5.4-75228599dceda7c4dd98c36b4bfc344f.jar │ │ ├── ShareSDK-Twitter-2.5.4-a01cd851b6ab209e22a3836080a418bb.jar │ │ ├── ShareSDK-VKontakte-2.3.7 涓嬪崍2.58.44-a98f3e8ca38da7a1163d9f8d6882a5d8.jar │ │ ├── ShareSDK-VKontakte-2.3.7 涓嬪崍2.58.44-c827a55b453962d29853084f916cf949.jar │ │ ├── ShareSDK-Wechat-2.3.7 涓嬪崍2.58.44-085c2e3d20ca295698b122a7c3434460.jar │ │ ├── ShareSDK-Wechat-2.3.7 涓嬪崍2.58.44-8d08ae706deec02d84491d8a020c5eb0.jar │ │ ├── ShareSDK-Wechat-2.5.4-054e8af9bd993b960cecde199b14e46d.jar │ │ ├── ShareSDK-Wechat-2.5.4-d5318220fa83f5ec3fa3f2a070fe3cbb.jar │ │ ├── ShareSDK-Wechat-Core-2.3.7 涓嬪崍2.58.44-836082bfd415134b313e64d97fc3a852.jar │ │ ├── ShareSDK-Wechat-Core-2.3.7 涓嬪崍2.58.44-e004213f5564b47a936a1852acd7979e.jar │ │ ├── ShareSDK-Wechat-Core-2.5.4-315453e56a1b6f9aec3b6be97a246c1b.jar │ │ ├── ShareSDK-Wechat-Core-2.5.4-e1babbd21694309a44aa0ca100ebe1e4.jar │ │ ├── ShareSDK-Wechat-Favorite-2.3.7 涓嬪崍2.58.44-6f8f1a2181bcaa6f467a750d6b0e0342.jar │ │ ├── ShareSDK-Wechat-Favorite-2.3.7 涓嬪崍2.58.44-e4eec7ba9ac9f36bcd66105791d5c277.jar │ │ ├── ShareSDK-Wechat-Favorite-2.5.4-0d7a27e6440e65c07d936897fcce6e53.jar │ │ ├── ShareSDK-Wechat-Favorite-2.5.4-94b5eeeef4baa88a5dd6d5e7a8015397.jar │ │ ├── ShareSDK-Wechat-Moments-2.3.7 涓嬪崍2.58.44-15ca34f5db43e310213360e9ec52d554.jar │ │ ├── ShareSDK-Wechat-Moments-2.3.7 涓嬪崍2.58.44-8d3b02d6c98d25e0e409faaa535935f2.jar │ │ ├── ShareSDK-Wechat-Moments-2.5.4-49c851f227b88a2379ac3a788e4302b0.jar │ │ ├── ShareSDK-Wechat-Moments-2.5.4-a12893f93455e3b07d9dffb3484f58e9.jar │ │ ├── ShareSDK-Yixin-2.3.7 涓嬪崍2.58.44-aa5de2376e4f9ea104eae221c469e9b3.jar │ │ ├── ShareSDK-Yixin-2.3.7 涓嬪崍2.58.44-fb1a2f6e60a5e1419c392411ff22b73a.jar │ │ ├── ShareSDK-Yixin-2.5.4-3157e766566e2fefed221d2471a31ded.jar │ │ ├── ShareSDK-Yixin-2.5.4-ca5b432b37a757f0bdd6d1b3f43340ee.jar │ │ ├── ShareSDK-Yixin-Core-2.3.7 涓嬪崍2.58.44-158c26032d618aa0d1a2224a668d7de9.jar │ │ ├── ShareSDK-Yixin-Core-2.3.7 涓嬪崍2.58.44-1bfac5c96a85deca9140eb57fd2a183e.jar │ │ ├── ShareSDK-Yixin-Core-2.5.4-8bb561a05930f3649a87d1608f2e1821.jar │ │ ├── ShareSDK-Yixin-Core-2.5.4-d32111009a15a142cc6c3860040a0e22.jar │ │ ├── ShareSDK-Yixin-Moments-2.3.7 涓嬪崍2.58.44-b198c0bea17b3ae2e26bdbb3be4dfcee.jar │ │ ├── ShareSDK-Yixin-Moments-2.3.7 涓嬪崍2.58.44-ed3e62984d148866b7d8b10a1a97d96d.jar │ │ ├── ShareSDK-Yixin-Moments-2.5.4-43d3ef60bcb309a6f2eeedcca0040280.jar │ │ ├── ShareSDK-Yixin-Moments-2.5.4-8ffd5f162528078a775cbf0d36e5b41e.jar │ │ ├── ShareSDK-YouDao-2.3.7 涓嬪崍2.58.44-483197f37617c762bbe5fe9ff99919bc.jar │ │ ├── ShareSDK-YouDao-2.3.7 涓嬪崍2.58.44-4859380be901effc16edfa5644cc201e.jar │ │ ├── YoumiSdk_v4.10_2014-11-24-1d82f15e7d3216b792d5da857074f030.jar │ │ ├── YoumiSdk_v4.10_2014-11-24-81cac1e9108220cab87902e663f8dc76.jar │ │ ├── YoumiSdk_v4.10_2014-11-24-9bb04f033eaf86203183e43d674ad890.jar │ │ ├── YoumiSdk_v4.10_2014-11-24-bbed5669a7e135a016c053826e64c7c0.jar │ │ ├── android-support-v4-08cf1b88ebde978a2b0e8d3ee8025e34.jar │ │ ├── android-support-v4-ccf141ae491eca13d1230e834769f3e0.jar │ │ ├── android-support-v7-appcompat-4df1ec4884d60b016e976cdbea88034b.jar │ │ ├── android-support-v7-appcompat-6dd2aa606c77ccec2e1fec7bca10c0bc.jar │ │ ├── cjj-recylerview-217d0e5d01e4bd0691318ac0869fc66a.jar │ │ ├── cjj-recylerview-b78bacb3e79c41c751a8f7ad7944d53c.jar │ │ ├── gson-2.2.4-80932f45d0ff016bfb3031f332efb308.jar │ │ ├── gson-2.2.4-8d8716dacb6aa665def2b68a357e9c25.jar │ │ ├── jsoup-1.8.1-72b05624d22e586cc4a32dc7955f83a2.jar │ │ ├── jsoup-1.8.1-9ace40b7c3966538237260429f4c8a71.jar │ │ ├── jsoup-1.8.1-aee2c6e7505cae9f6ffbc90cce55bcdb.jar │ │ ├── jsoup-1.8.1-b28de467957cd9d2359731ac465aa399.jar │ │ ├── litepal-1.1.1-511b8cc23334236b899b5df649451cb0.jar │ │ ├── litepal-1.1.1-68319849024f56d71bc1a04920a0a113.jar │ │ ├── litepal-1.1.1-6c2cc5ab73ab2437df958e4175295006.jar │ │ ├── litepal-1.1.1-da2bd6536ce347b2260c0a12c5ba04d9.jar │ │ ├── mframework-13b7c90f0557d4a242f4cb60cc74e744.jar │ │ ├── mframework-2efd8651cf23e9685ee69410c0a7c7a5.jar │ │ ├── mframework-749d4fb0ddd273ef3247f7cee6445672.jar │ │ ├── mframework-f034b2ab89f521816ba6547c8c7b9e2e.jar │ │ ├── niceslibrary-2d579d53f7414149731811b149c59415.jar │ │ ├── niceslibrary-fba18acdbdc6a3d48cafd8aaa0345865.jar │ │ ├── umeng-analytics-v5.2.4-3e8460a657fa8f0b5ed0509697262677.jar │ │ ├── umeng-analytics-v5.2.4-50d8a6164f208e25aa38ff969c36f7c7.jar │ │ ├── umeng-analytics-v5.2.4-699619f3b716a3212c61bc6b728b0e26.jar │ │ ├── umeng-analytics-v5.2.4-e6b7afe98101dc29d5a41c2e08ce3381.jar │ │ ├── universal-image-loader-1.9.3-641632a9dcb48a9cc5af6be0f69d2990.jar │ │ ├── universal-image-loader-1.9.3-6929fdfd1f46ce063e39d5231c817e2a.jar │ │ ├── universal-image-loader-1.9.3-aff017e9570f125a46b927d31ad5772b.jar │ │ ├── universal-image-loader-1.9.3-ceac1fab860bbdf81b02066ba9e6ea78.jar │ │ ├── volleylibrary-1f0f9ffde457bde2971a7c0a768410cf.jar │ │ └── volleylibrary-890cb1296cc195f25befa8b89edd88b0.jar │ ├── jarlist.cache │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ ├── app_icon.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_menu_check.png │ │ │ └── ssdk_oks_ptr_ptr.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_menu_check.png │ │ │ ├── drawable-xhdpi │ │ │ ├── actionbar_bottom.9.png │ │ │ ├── auth_follow_cb_chd.png │ │ │ ├── auth_follow_cb_unc.png │ │ │ ├── auth_title_back.png │ │ │ ├── btn_back_nor.9.png │ │ │ ├── btn_cancel_back.9.png │ │ │ ├── drawer_shadow.9.png │ │ │ ├── edittext_back.9.png │ │ │ ├── gray_point.png │ │ │ ├── ic_action_about.png │ │ │ ├── ic_action_download.png │ │ │ ├── ic_action_favorite.png │ │ │ ├── ic_action_favorite_red.png │ │ │ ├── ic_action_refresh.png │ │ │ ├── ic_action_search.png │ │ │ ├── ic_action_share.png │ │ │ ├── ic_action_star.png │ │ │ ├── ic_beer.png │ │ │ ├── ic_drawer.png │ │ │ ├── ic_github.png │ │ │ ├── ic_home_color_20.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_refresh.png │ │ │ ├── ic_undo.png │ │ │ ├── img_cancel.png │ │ │ ├── logo_douban.png │ │ │ ├── logo_dropbox.png │ │ │ ├── logo_email.png │ │ │ ├── logo_evernote.png │ │ │ ├── logo_facebook.png │ │ │ ├── logo_flickr.png │ │ │ ├── logo_foursquare.png │ │ │ ├── logo_googleplus.png │ │ │ ├── logo_instagram.png │ │ │ ├── logo_kaixin.png │ │ │ ├── logo_linkedin.png │ │ │ ├── logo_mingdao.png │ │ │ ├── logo_neteasemicroblog.png │ │ │ ├── logo_pinterest.png │ │ │ ├── logo_qq.png │ │ │ ├── logo_qzone.png │ │ │ ├── logo_renren.png │ │ │ ├── logo_shortmessage.png │ │ │ ├── logo_sinaweibo.png │ │ │ ├── logo_sohumicroblog.png │ │ │ ├── logo_sohusuishenkan.png │ │ │ ├── logo_tencentweibo.png │ │ │ ├── logo_tumblr.png │ │ │ ├── logo_twitter.png │ │ │ ├── logo_vkontakte.png │ │ │ ├── logo_wechat.png │ │ │ ├── logo_wechatfavorite.png │ │ │ ├── logo_wechatmoments.png │ │ │ ├── logo_yixin.png │ │ │ ├── logo_yixinmoments.png │ │ │ ├── logo_youdao.png │ │ │ ├── pin.png │ │ │ ├── share_tb_back.9.png │ │ │ ├── share_vp_back.9.png │ │ │ ├── ssdk_auth_title_back.png │ │ │ ├── ssdk_back_arr.png │ │ │ ├── ssdk_logo.png │ │ │ ├── ssdk_title_div.png │ │ │ ├── tabs_pattern.png │ │ │ ├── tabs_pattern_diagonal.png │ │ │ ├── title_back.png │ │ │ ├── title_shadow.png │ │ │ └── white_point.png │ │ │ └── drawable-xxhdpi │ │ │ ├── app_icon.png │ │ │ ├── biz_navigation_tab_news.png │ │ │ ├── biz_navigation_tab_pics.png │ │ │ ├── biz_navigation_tab_ties.png │ │ │ ├── biz_navigation_tab_video.png │ │ │ ├── biz_navigation_tab_voted.png │ │ │ ├── delete_icon.png │ │ │ ├── empty_photo.png │ │ │ ├── empty_photo_by_width.png │ │ │ ├── favorite_nor.png │ │ │ ├── favorite_press.png │ │ │ ├── ic_action_important.png │ │ │ ├── ic_action_share.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_menu_check.png │ │ │ ├── night_biz_navigation_tab_news.png │ │ │ ├── night_biz_navigation_tab_pics.png │ │ │ ├── night_biz_navigation_tab_ties.png │ │ │ ├── night_biz_navigation_tab_video.png │ │ │ ├── share_pre.png │ │ │ └── x.png │ └── resources.ap_ ├── build.xml ├── gen │ ├── android │ │ └── support │ │ │ └── v7 │ │ │ └── appcompat │ │ │ └── R.java │ └── com │ │ ├── android │ │ └── volley │ │ │ └── R.java │ │ └── cjj │ │ └── nices │ │ └── activity │ │ ├── BuildConfig.java │ │ └── R.java ├── libs │ ├── ShareSDK-Core-2.3.7 涓嬪崍2.58.45.jar │ ├── ShareSDK-Douban-2.3.7 涓嬪崍2.58.45.jar │ ├── ShareSDK-Dropbox-2.3.7 涓嬪崍2.58.45.jar │ ├── ShareSDK-Email-2.3.7 涓嬪崍2.58.45.jar │ ├── ShareSDK-Evernote-2.3.7 涓嬪崍2.58.45.jar │ ├── ShareSDK-Facebook-2.3.7 涓嬪崍2.58.45.jar │ ├── ShareSDK-Flickr-2.3.7 涓嬪崍2.58.45.jar │ ├── ShareSDK-Foursquare-2.3.7 涓嬪崍2.58.45.jar │ ├── ShareSDK-GooglePlus-2.3.7 涓嬪崍2.58.45.jar │ ├── ShareSDK-Instagram-2.3.7 涓嬪崍2.58.45.jar │ ├── ShareSDK-KaiXin-2.3.7 涓嬪崍2.58.45.jar │ ├── ShareSDK-Linkedin-2.3.7 涓嬪崍2.58.45.jar │ ├── ShareSDK-Mingdao-2.3.7 涓嬪崍2.58.45.jar │ ├── ShareSDK-NetEaseMicroBlog-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-Pinterest-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-QQ-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-QZone-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-Renren-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-ShortMessage-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-SinaWeibo-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-SohuSuishenkan-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-SouhuMicroBlog-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-TencentWeibo-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-Tumblr-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-Twitter-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-VKontakte-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-Wechat-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-Wechat-Core-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-Wechat-Favorite-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-Wechat-Moments-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-Yixin-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-Yixin-Core-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-Yixin-Moments-2.3.7 涓嬪崍2.58.44.jar │ ├── ShareSDK-YouDao-2.3.7 涓嬪崍2.58.44.jar │ ├── YoumiSdk_v4.10_2014-11-24.jar │ ├── jsoup-1.8.1.jar │ ├── litepal-1.1.1.jar │ ├── mframework.jar │ ├── umeng-analytics-v5.2.4.jar │ └── universal-image-loader-1.9.3.jar ├── local.properties ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── app_icon.png │ │ ├── ic_launcher.png │ │ ├── ic_menu_check.png │ │ └── ssdk_oks_ptr_ptr.png │ ├── drawable-mdpi │ │ ├── ic_launcher.png │ │ └── ic_menu_check.png │ ├── drawable-xhdpi │ │ ├── actionbar_bottom.9.png │ │ ├── auth_follow_cb_chd.png │ │ ├── auth_follow_cb_unc.png │ │ ├── auth_title_back.png │ │ ├── btn_back_nor.9.png │ │ ├── btn_cancel_back.9.png │ │ ├── drawer_shadow.9.png │ │ ├── edittext_back.9.png │ │ ├── gray_point.png │ │ ├── ic_action_about.png │ │ ├── ic_action_download.png │ │ ├── ic_action_favorite.png │ │ ├── ic_action_favorite_red.png │ │ ├── ic_action_refresh.png │ │ ├── ic_action_search.png │ │ ├── ic_action_share.png │ │ ├── ic_action_star.png │ │ ├── ic_beer.png │ │ ├── ic_drawer.png │ │ ├── ic_github.png │ │ ├── ic_home_color_20.png │ │ ├── ic_launcher.png │ │ ├── ic_refresh.png │ │ ├── ic_undo.png │ │ ├── img_cancel.png │ │ ├── logo_douban.png │ │ ├── logo_dropbox.png │ │ ├── logo_email.png │ │ ├── logo_evernote.png │ │ ├── logo_facebook.png │ │ ├── logo_flickr.png │ │ ├── logo_foursquare.png │ │ ├── logo_googleplus.png │ │ ├── logo_instagram.png │ │ ├── logo_kaixin.png │ │ ├── logo_linkedin.png │ │ ├── logo_mingdao.png │ │ ├── logo_neteasemicroblog.png │ │ ├── logo_pinterest.png │ │ ├── logo_qq.png │ │ ├── logo_qzone.png │ │ ├── logo_renren.png │ │ ├── logo_shortmessage.png │ │ ├── logo_sinaweibo.png │ │ ├── logo_sohumicroblog.png │ │ ├── logo_sohusuishenkan.png │ │ ├── logo_tencentweibo.png │ │ ├── logo_tumblr.png │ │ ├── logo_twitter.png │ │ ├── logo_vkontakte.png │ │ ├── logo_wechat.png │ │ ├── logo_wechatfavorite.png │ │ ├── logo_wechatmoments.png │ │ ├── logo_yixin.png │ │ ├── logo_yixinmoments.png │ │ ├── logo_youdao.png │ │ ├── pin.png │ │ ├── share_tb_back.9.png │ │ ├── share_vp_back.9.png │ │ ├── ssdk_auth_title_back.png │ │ ├── ssdk_back_arr.png │ │ ├── ssdk_logo.png │ │ ├── ssdk_title_div.png │ │ ├── tabs_pattern.png │ │ ├── tabs_pattern_diagonal.png │ │ ├── title_back.png │ │ ├── title_shadow.png │ │ └── white_point.png │ ├── drawable-xxhdpi │ │ ├── app_icon.png │ │ ├── biz_navigation_tab_news.png │ │ ├── biz_navigation_tab_pics.png │ │ ├── biz_navigation_tab_ties.png │ │ ├── biz_navigation_tab_video.png │ │ ├── biz_navigation_tab_voted.png │ │ ├── delete_icon.png │ │ ├── empty_photo.png │ │ ├── empty_photo_by_width.png │ │ ├── favorite_nor.png │ │ ├── favorite_press.png │ │ ├── ic_action_important.png │ │ ├── ic_action_share.png │ │ ├── ic_launcher.png │ │ ├── ic_menu_check.png │ │ ├── night_biz_navigation_tab_news.png │ │ ├── night_biz_navigation_tab_pics.png │ │ ├── night_biz_navigation_tab_ties.png │ │ ├── night_biz_navigation_tab_video.png │ │ ├── share_pre.png │ │ └── x.png │ ├── drawable │ │ ├── actionbar_bg.xml │ │ ├── button_selector.xml │ │ ├── skyblue_platform_list_item.xml │ │ ├── skyblue_platform_list_item_selected.xml │ │ └── skyblue_platform_list_selector.xml │ ├── layout │ │ ├── activity_detail.xml │ │ ├── activity_main.xml │ │ ├── drawer_row.xml │ │ ├── fragment_detail.xml │ │ ├── fragment_favorite.xml │ │ ├── fragment_home.xml │ │ ├── fragment_message.xml │ │ ├── fragment_navigation_drawer.xml │ │ ├── fragment_support.xml │ │ ├── item_favorite.xml │ │ ├── item_image.xml │ │ ├── item_new_list.xml │ │ ├── item_news_list.xml │ │ ├── skyblue_editpage.xml │ │ ├── skyblue_editpage_at_layout.xml │ │ ├── skyblue_editpage_inc_image_layout.xml │ │ ├── skyblue_share_actionbar.xml │ │ ├── skyblue_share_platform_list.xml │ │ ├── skyblue_share_platform_list_item.xml │ │ ├── toolbar_default.xml │ │ └── view_load_more.xml │ ├── menu │ │ ├── delete_favorite.xml │ │ ├── favorite.xml │ │ └── main.xml │ ├── values-v21 │ │ └── styles.xml │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── instapaper_strings.xml │ │ ├── oks_strings.xml │ │ ├── ssdk_strings.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ ├── cn │ └── sharesdk │ │ └── onekeyshare │ │ ├── CustomerLogo.java │ │ ├── EditPage.java │ │ ├── FollowList.java │ │ ├── OnekeyShare.java │ │ ├── PicViewer.java │ │ ├── PlatformGridView.java │ │ ├── ShareContentCustomizeCallback.java │ │ └── ShareCore.java │ └── com │ └── cjj │ └── nices │ ├── activity │ ├── MainActivity.java │ ├── NewsDetailActivity.java │ ├── wxapi │ │ └── WXEntryActivity.java │ └── yxapi │ │ └── YXEntryActivity.java │ ├── adapter │ ├── NavigationDrawerAdapter.java │ ├── NewsListAdapter.java │ ├── NewsListSwipeMenuListViewAdapter.java │ └── SimpleBaseAdapter.java │ ├── callback │ └── NavigationDrawerCallbacks.java │ ├── constant │ └── Constants.java │ ├── dao │ └── UserDao.java │ ├── db │ ├── FavoriteTableModel.java │ ├── NewsListModel.java │ └── NicesDBHelper.java │ ├── fragment │ ├── DetailFragment.java │ ├── FavoriteFragment.java │ ├── HomeFragment.java │ ├── MessageFragment.java │ ├── NavigationDrawerFragment.java │ ├── PictureFragment.java │ ├── SupportFragment.java │ └── VideoFragment.java │ ├── model │ ├── NavigationItem.java │ ├── NicesApplication.java │ ├── NicesDetailModel.java │ └── NicesNewsListEntity.java │ └── util │ ├── ArrayUtils.java │ ├── AssetsUtils.java │ ├── FileService.java │ ├── ImageConfigBuilder.java │ ├── ListUtils.java │ ├── ObjectUtils.java │ └── UrlUtils.java ├── NicesLibrary ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.txt ├── bin │ ├── AndroidManifest.xml │ ├── R.txt │ ├── classes │ │ ├── .readme │ │ ├── android │ │ │ └── support │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── R$anim.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$bool.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$integer.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$styleable.class │ │ │ │ └── R.class │ │ ├── com │ │ │ ├── balysv │ │ │ │ └── materialripple │ │ │ │ │ ├── MaterialRippleLayout$1.class │ │ │ │ │ ├── MaterialRippleLayout$2.class │ │ │ │ │ ├── MaterialRippleLayout$3.class │ │ │ │ │ ├── MaterialRippleLayout$4.class │ │ │ │ │ ├── MaterialRippleLayout$5.class │ │ │ │ │ ├── MaterialRippleLayout$PerformClickEvent.class │ │ │ │ │ ├── MaterialRippleLayout$PressedEvent.class │ │ │ │ │ ├── MaterialRippleLayout$RippleBuilder.class │ │ │ │ │ └── MaterialRippleLayout.class │ │ │ ├── baoyz │ │ │ │ └── swipemenulistview │ │ │ │ │ ├── SwipeMenu.class │ │ │ │ │ ├── SwipeMenuAdapter.class │ │ │ │ │ ├── SwipeMenuCreator.class │ │ │ │ │ ├── SwipeMenuItem.class │ │ │ │ │ ├── SwipeMenuLayout$1.class │ │ │ │ │ ├── SwipeMenuLayout.class │ │ │ │ │ ├── SwipeMenuListView$1.class │ │ │ │ │ ├── SwipeMenuListView$OnMenuItemClickListener.class │ │ │ │ │ ├── SwipeMenuListView$OnSwipeListener.class │ │ │ │ │ ├── SwipeMenuListView.class │ │ │ │ │ ├── SwipeMenuView$OnSwipeItemClickListener.class │ │ │ │ │ └── SwipeMenuView.class │ │ │ ├── cjj │ │ │ │ ├── callback │ │ │ │ │ └── ReLoadCallbackListener.class │ │ │ │ ├── custom │ │ │ │ │ ├── CustomPopWindow$1.class │ │ │ │ │ ├── CustomPopWindow$2.class │ │ │ │ │ ├── CustomPopWindow$ItemSelectListener.class │ │ │ │ │ └── CustomPopWindow.class │ │ │ │ ├── loading │ │ │ │ │ ├── CircularProgress$1.class │ │ │ │ │ ├── CircularProgress$2.class │ │ │ │ │ ├── CircularProgress$3.class │ │ │ │ │ ├── CircularProgress.class │ │ │ │ │ └── LoadingCjjLayout.class │ │ │ │ └── utils │ │ │ │ │ └── NetUtils.class │ │ │ ├── norbsoft │ │ │ │ └── typefacehelper │ │ │ │ │ ├── ActionBarHelper.class │ │ │ │ │ ├── TypefaceCollection$Builder.class │ │ │ │ │ ├── TypefaceCollection.class │ │ │ │ │ ├── TypefaceHelper$TypefaceSpan.class │ │ │ │ │ └── TypefaceHelper.class │ │ │ └── viewpagerindicator │ │ │ │ ├── CirclePageIndicator$SavedState$1.class │ │ │ │ ├── CirclePageIndicator$SavedState.class │ │ │ │ ├── CirclePageIndicator.class │ │ │ │ ├── IconPageIndicator$1.class │ │ │ │ ├── IconPageIndicator.class │ │ │ │ ├── IconPagerAdapter.class │ │ │ │ ├── IcsLinearLayout.class │ │ │ │ ├── LinePageIndicator$SavedState$1.class │ │ │ │ ├── LinePageIndicator$SavedState.class │ │ │ │ ├── LinePageIndicator.class │ │ │ │ ├── PageIndicator.class │ │ │ │ ├── TabPageIndicator$1.class │ │ │ │ ├── TabPageIndicator$2.class │ │ │ │ ├── TabPageIndicator$OnTabReselectedListener.class │ │ │ │ ├── TabPageIndicator$TabView.class │ │ │ │ ├── TabPageIndicator.class │ │ │ │ ├── TitlePageIndicator$IndicatorStyle.class │ │ │ │ ├── TitlePageIndicator$LinePosition.class │ │ │ │ ├── TitlePageIndicator$OnCenterItemClickListener.class │ │ │ │ ├── TitlePageIndicator$SavedState$1.class │ │ │ │ ├── TitlePageIndicator$SavedState.class │ │ │ │ ├── TitlePageIndicator.class │ │ │ │ ├── UnderlinePageIndicator$1.class │ │ │ │ ├── UnderlinePageIndicator$2.class │ │ │ │ ├── UnderlinePageIndicator$SavedState$1.class │ │ │ │ ├── UnderlinePageIndicator$SavedState.class │ │ │ │ └── UnderlinePageIndicator.class │ │ ├── de │ │ │ └── keyboardsurfer │ │ │ │ └── android │ │ │ │ └── widget │ │ │ │ └── crouton │ │ │ │ ├── Configuration$Builder.class │ │ │ │ ├── Configuration.class │ │ │ │ ├── Crouton.class │ │ │ │ ├── DefaultAnimationsBuilder.class │ │ │ │ ├── LifecycleCallback.class │ │ │ │ ├── Manager$1.class │ │ │ │ ├── Manager$Messages.class │ │ │ │ ├── Manager.class │ │ │ │ ├── Style$Builder.class │ │ │ │ ├── Style.class │ │ │ │ └── TypefaceSpan.class │ │ ├── in │ │ │ └── srain │ │ │ │ └── cube │ │ │ │ └── views │ │ │ │ ├── GridViewWithHeaderAndFooter$FixedViewInfo.class │ │ │ │ ├── GridViewWithHeaderAndFooter$FullWidthFixedViewLayout.class │ │ │ │ ├── GridViewWithHeaderAndFooter$HeaderViewGridAdapter.class │ │ │ │ └── GridViewWithHeaderAndFooter.class │ │ └── uk │ │ │ └── me │ │ │ └── lewisdeane │ │ │ └── ldialogs │ │ │ ├── BaseDialog$Alignment.class │ │ │ ├── BaseDialog$DarkColours.class │ │ │ ├── BaseDialog$LightColours.class │ │ │ ├── BaseDialog$Theme.class │ │ │ ├── BaseDialog.class │ │ │ ├── CustomDialog$1.class │ │ │ ├── CustomDialog$2.class │ │ │ ├── CustomDialog$Builder.class │ │ │ ├── CustomDialog$ClickListener.class │ │ │ ├── CustomDialog.class │ │ │ ├── CustomListAdapter.class │ │ │ ├── CustomListDialog$1.class │ │ │ ├── CustomListDialog$Builder.class │ │ │ ├── CustomListDialog$ListClickListener.class │ │ │ └── CustomListDialog.class │ ├── jarlist.cache │ ├── niceslibrary.jar │ └── res │ │ └── crunch │ │ ├── drawable-hdpi │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ ├── bg_pull_to_refresh.png │ │ ├── vpi__tab_selected_focused_holo.9.png │ │ ├── vpi__tab_selected_holo.9.png │ │ ├── vpi__tab_selected_pressed_holo.9.png │ │ ├── vpi__tab_unselected_focused_holo.9.png │ │ ├── vpi__tab_unselected_holo.9.png │ │ └── vpi__tab_unselected_pressed_holo.9.png │ │ ├── drawable-ldrtl-hdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ ├── drawable-ldrtl-mdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ ├── drawable-ldrtl-xhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ ├── drawable-ldrtl-xxhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ ├── drawable-ldrtl-xxxhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ ├── drawable-mdpi │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ ├── drawable-xhdpi │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ ├── drawable-xxhdpi │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ └── drawable-xxxhdpi │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ └── abc_tab_indicator_mtrl_alpha.9.png ├── build.xml ├── gen │ └── android │ │ └── support │ │ └── v7 │ │ └── appcompat │ │ ├── BuildConfig.java │ │ └── R.java ├── libs │ ├── android-support-v4.jar │ ├── android-support-v7-appcompat.jar │ └── cjj-recylerview.jar ├── local.properties ├── proguard-project.txt ├── project.properties ├── res │ ├── anim │ │ ├── abc_fade_in.xml │ │ ├── abc_fade_out.xml │ │ ├── abc_slide_in_bottom.xml │ │ ├── abc_slide_in_top.xml │ │ ├── abc_slide_out_bottom.xml │ │ ├── abc_slide_out_top.xml │ │ ├── fade_in.xml │ │ └── fade_out.xml │ ├── color │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ ├── abc_background_cache_hint_selector_material_light.xml │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ ├── abc_primary_text_material_dark.xml │ │ ├── abc_primary_text_material_light.xml │ │ ├── abc_search_url_text.xml │ │ ├── abc_secondary_text_material_dark.xml │ │ ├── abc_secondary_text_material_light.xml │ │ ├── vpi__dark_theme.xml │ │ └── vpi__light_theme.xml │ ├── drawable-hdpi │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ ├── bg_pull_to_refresh.png │ │ ├── reload.jpg │ │ ├── vpi__tab_selected_focused_holo.9.png │ │ ├── vpi__tab_selected_holo.9.png │ │ ├── vpi__tab_selected_pressed_holo.9.png │ │ ├── vpi__tab_unselected_focused_holo.9.png │ │ ├── vpi__tab_unselected_holo.9.png │ │ └── vpi__tab_unselected_pressed_holo.9.png │ ├── drawable-ldrtl-hdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-mdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-xhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-xxhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-ldrtl-xxxhdpi │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ └── abc_spinner_mtrl_am_alpha.9.png │ ├── drawable-mdpi │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ ├── drawable-xhdpi │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ ├── drawable-xxhdpi │ │ ├── abc_ab_share_pack_holo_dark.9.png │ │ ├── abc_ab_share_pack_holo_light.9.png │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ ├── abc_list_focused_holo.9.png │ │ ├── abc_list_longpressed_holo.9.png │ │ ├── abc_list_pressed_holo_dark.9.png │ │ ├── abc_list_pressed_holo_light.9.png │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ ├── drawable-xxxhdpi │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ └── abc_tab_indicator_mtrl_alpha.9.png │ ├── drawable │ │ ├── abc_btn_check_material.xml │ │ ├── abc_btn_radio_material.xml │ │ ├── abc_cab_background_internal_bg.xml │ │ ├── abc_cab_background_top_material.xml │ │ ├── abc_edit_text_material.xml │ │ ├── abc_item_background_holo_dark.xml │ │ ├── abc_item_background_holo_light.xml │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ ├── abc_list_selector_holo_dark.xml │ │ ├── abc_list_selector_holo_light.xml │ │ ├── abc_switch_thumb_material.xml │ │ ├── abc_tab_indicator_material.xml │ │ ├── abc_textfield_search_material.xml │ │ ├── button_selector.xml │ │ └── vpi__tab_indicator.xml │ ├── layout-v11 │ │ └── abc_screen_content_include.xml │ ├── layout │ │ ├── abc_action_bar_title_item.xml │ │ ├── abc_action_bar_up_container.xml │ │ ├── abc_action_bar_view_list_nav_layout.xml │ │ ├── abc_action_menu_item_layout.xml │ │ ├── abc_action_menu_layout.xml │ │ ├── abc_action_mode_bar.xml │ │ ├── abc_action_mode_close_item_material.xml │ │ ├── abc_activity_chooser_view.xml │ │ ├── abc_activity_chooser_view_include.xml │ │ ├── abc_activity_chooser_view_list_item.xml │ │ ├── abc_expanded_menu_layout.xml │ │ ├── abc_list_menu_item_checkbox.xml │ │ ├── abc_list_menu_item_icon.xml │ │ ├── abc_list_menu_item_layout.xml │ │ ├── abc_list_menu_item_radio.xml │ │ ├── abc_popup_menu_item_layout.xml │ │ ├── abc_screen_content_include.xml │ │ ├── abc_screen_simple.xml │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ ├── abc_screen_toolbar.xml │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ ├── abc_search_view.xml │ │ ├── abc_simple_dropdown_hint.xml │ │ ├── dialog_custom.xml │ │ ├── dialog_list_custom.xml │ │ ├── item_dialog_list.xml │ │ ├── support_simple_spinner_dropdown_item.xml │ │ ├── view_empty.xml │ │ ├── view_fail.xml │ │ ├── view_loading.xml │ │ └── view_pop_window.xml │ ├── values-af │ │ └── strings.xml │ ├── values-am │ │ └── strings.xml │ ├── values-ar │ │ └── strings.xml │ ├── values-bg │ │ └── strings.xml │ ├── values-bn-rBD │ │ └── strings.xml │ ├── values-ca │ │ └── strings.xml │ ├── values-cs │ │ └── strings.xml │ ├── values-da │ │ └── strings.xml │ ├── values-de │ │ └── strings.xml │ ├── values-el │ │ └── strings.xml │ ├── values-en-rGB │ │ └── strings.xml │ ├── values-en-rIN │ │ └── strings.xml │ ├── values-es-rUS │ │ └── strings.xml │ ├── values-es │ │ └── strings.xml │ ├── values-et-rEE │ │ └── strings.xml │ ├── values-eu-rES │ │ └── strings.xml │ ├── values-fa │ │ └── strings.xml │ ├── values-fi │ │ └── strings.xml │ ├── values-fr-rCA │ │ └── strings.xml │ ├── values-fr │ │ └── strings.xml │ ├── values-gl-rES │ │ └── strings.xml │ ├── values-hi │ │ └── strings.xml │ ├── values-hr │ │ └── strings.xml │ ├── values-hu │ │ └── strings.xml │ ├── values-hy-rAM │ │ └── strings.xml │ ├── values-in │ │ └── strings.xml │ ├── values-is-rIS │ │ └── strings.xml │ ├── values-it │ │ └── strings.xml │ ├── values-iw │ │ └── strings.xml │ ├── values-ja │ │ └── strings.xml │ ├── values-ka-rGE │ │ └── strings.xml │ ├── values-kk-rKZ │ │ └── strings.xml │ ├── values-km-rKH │ │ └── strings.xml │ ├── values-kn-rIN │ │ └── strings.xml │ ├── values-ko │ │ └── strings.xml │ ├── values-ky-rKG │ │ └── strings.xml │ ├── values-land │ │ ├── bools.xml │ │ ├── config.xml │ │ ├── dimens.xml │ │ └── dimens_material.xml │ ├── values-large │ │ ├── bools.xml │ │ ├── config.xml │ │ ├── dimens.xml │ │ └── themes_base.xml │ ├── values-lo-rLA │ │ └── strings.xml │ ├── values-lt │ │ └── strings.xml │ ├── values-lv │ │ └── strings.xml │ ├── values-mk-rMK │ │ └── strings.xml │ ├── values-ml-rIN │ │ └── strings.xml │ ├── values-mn-rMN │ │ └── strings.xml │ ├── values-mr-rIN │ │ └── strings.xml │ ├── values-ms-rMY │ │ └── strings.xml │ ├── values-my-rMM │ │ └── strings.xml │ ├── values-nb │ │ └── strings.xml │ ├── values-ne-rNP │ │ └── strings.xml │ ├── values-nl │ │ └── strings.xml │ ├── values-pl │ │ └── strings.xml │ ├── values-port │ │ └── bools.xml │ ├── values-pt-rPT │ │ └── strings.xml │ ├── values-pt │ │ └── strings.xml │ ├── values-ro │ │ └── strings.xml │ ├── values-ru │ │ └── strings.xml │ ├── values-si-rLK │ │ └── strings.xml │ ├── values-sk │ │ └── strings.xml │ ├── values-sl │ │ └── strings.xml │ ├── values-sr │ │ └── strings.xml │ ├── values-sv │ │ └── strings.xml │ ├── values-sw │ │ └── strings.xml │ ├── values-sw600dp │ │ ├── config.xml │ │ └── dimens.xml │ ├── values-ta-rIN │ │ └── strings.xml │ ├── values-te-rIN │ │ └── strings.xml │ ├── values-th │ │ └── strings.xml │ ├── values-tl │ │ └── strings.xml │ ├── values-tr │ │ └── strings.xml │ ├── values-uk │ │ └── strings.xml │ ├── values-ur-rPK │ │ └── strings.xml │ ├── values-uz-rUZ │ │ └── strings.xml │ ├── values-v11 │ │ ├── styles_base.xml │ │ ├── styles_base_text.xml │ │ └── themes_base.xml │ ├── values-v14 │ │ ├── styles.xml │ │ └── themes_base.xml │ ├── values-v17 │ │ └── styles_rtl.xml │ ├── values-v21 │ │ ├── styles_base.xml │ │ ├── styles_base_text.xml │ │ └── themes_base.xml │ ├── values-vi │ │ └── strings.xml │ ├── values-w360dp │ │ └── dimens.xml │ ├── values-w480dp │ │ ├── bools.xml │ │ └── config.xml │ ├── values-w500dp │ │ └── dimens.xml │ ├── values-w600dp │ │ └── dimens.xml │ ├── values-w720dp │ │ └── bools.xml │ ├── values-xlarge-land │ │ └── dimens.xml │ ├── values-xlarge │ │ ├── bools.xml │ │ └── dimens.xml │ ├── values-zh-rCN │ │ └── strings.xml │ ├── values-zh-rHK │ │ └── strings.xml │ ├── values-zh-rTW │ │ └── strings.xml │ ├── values-zu │ │ └── strings.xml │ └── values │ │ ├── attributes.xml │ │ ├── attrs.xml │ │ ├── attrs_my.xml │ │ ├── bools.xml │ │ ├── colors.xml │ │ ├── colors_material.xml │ │ ├── colors_my.xml │ │ ├── config.xml │ │ ├── dimens.xml │ │ ├── dimens_material.xml │ │ ├── ids.xml │ │ ├── strings.xml │ │ ├── strings_my.xml │ │ ├── styles.xml │ │ ├── styles_base.xml │ │ ├── styles_base_text.xml │ │ ├── styles_rtl.xml │ │ ├── themes.xml │ │ ├── themes_base.xml │ │ ├── vpi__attrs.xml │ │ ├── vpi__colors.xml │ │ ├── vpi__defaults.xml │ │ └── vpi__styles.xml └── src │ ├── .readme │ ├── com │ ├── balysv │ │ └── materialripple │ │ │ └── MaterialRippleLayout.java │ ├── baoyz │ │ └── swipemenulistview │ │ │ ├── SwipeMenu.java │ │ │ ├── SwipeMenuAdapter.java │ │ │ ├── SwipeMenuCreator.java │ │ │ ├── SwipeMenuItem.java │ │ │ ├── SwipeMenuLayout.java │ │ │ ├── SwipeMenuListView.java │ │ │ └── SwipeMenuView.java │ ├── cjj │ │ ├── callback │ │ │ └── ReLoadCallbackListener.java │ │ ├── custom │ │ │ └── CustomPopWindow.java │ │ ├── loading │ │ │ ├── CircularProgress.java │ │ │ └── LoadingCjjLayout.java │ │ └── utils │ │ │ └── NetUtils.java │ ├── norbsoft │ │ └── typefacehelper │ │ │ ├── ActionBarHelper.java │ │ │ ├── TypefaceCollection.java │ │ │ └── TypefaceHelper.java │ └── viewpagerindicator │ │ ├── CirclePageIndicator.java │ │ ├── IconPageIndicator.java │ │ ├── IconPagerAdapter.java │ │ ├── IcsLinearLayout.java │ │ ├── LinePageIndicator.java │ │ ├── PageIndicator.java │ │ ├── TabPageIndicator.java │ │ ├── TitlePageIndicator.java │ │ └── UnderlinePageIndicator.java │ ├── de │ └── keyboardsurfer │ │ └── android │ │ └── widget │ │ └── crouton │ │ ├── Configuration.java │ │ ├── Crouton.java │ │ ├── DefaultAnimationsBuilder.java │ │ ├── LifecycleCallback.java │ │ ├── Manager.java │ │ ├── Style.java │ │ └── TypefaceSpan.java │ ├── in │ └── srain │ │ └── cube │ │ └── views │ │ └── GridViewWithHeaderAndFooter.java │ └── uk │ └── me │ └── lewisdeane │ └── ldialogs │ ├── BaseDialog.java │ ├── CustomDialog.java │ ├── CustomListAdapter.java │ └── CustomListDialog.java ├── README.md └── VolleyLibrary ├── .classpath ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.jdt.core.prefs ├── Android.mk ├── AndroidManifest.xml ├── bin ├── AndroidManifest.xml ├── R.txt ├── classes │ └── com │ │ ├── android │ │ └── volley │ │ │ ├── BuildConfig.class │ │ │ ├── R$attr.class │ │ │ ├── R$string.class │ │ │ └── R.class │ │ └── cjj │ │ └── volley │ │ ├── AuthFailureError.class │ │ ├── Cache$Entry.class │ │ ├── Cache.class │ │ ├── CacheDispatcher$1.class │ │ ├── CacheDispatcher.class │ │ ├── DefaultRetryPolicy.class │ │ ├── ExecutorDelivery$1.class │ │ ├── ExecutorDelivery$ResponseDeliveryRunnable.class │ │ ├── ExecutorDelivery.class │ │ ├── Network.class │ │ ├── NetworkDispatcher.class │ │ ├── NetworkError.class │ │ ├── NetworkResponse.class │ │ ├── NoConnectionError.class │ │ ├── ParseError.class │ │ ├── Request$1.class │ │ ├── Request$Method.class │ │ ├── Request$Priority.class │ │ ├── Request.class │ │ ├── RequestQueue$1.class │ │ ├── RequestQueue$RequestFilter.class │ │ ├── RequestQueue.class │ │ ├── Response$ErrorListener.class │ │ ├── Response$Listener.class │ │ ├── Response.class │ │ ├── ResponseDelivery.class │ │ ├── RetryPolicy.class │ │ ├── ServerError.class │ │ ├── TimeoutError.class │ │ ├── VolleyError.class │ │ ├── VolleyLog$MarkerLog$Marker.class │ │ ├── VolleyLog$MarkerLog.class │ │ ├── VolleyLog.class │ │ ├── cache │ │ ├── BitmapCache$1.class │ │ └── BitmapCache.class │ │ ├── callback │ │ ├── CallBackDataListener.class │ │ └── CallBackStringDataListener.class │ │ ├── custom │ │ └── request │ │ │ ├── GsonRequest.class │ │ │ └── XMLRequest.class │ │ ├── me │ │ └── CjjVolley.class │ │ ├── toolbox │ │ ├── AndroidAuthenticator.class │ │ ├── Authenticator.class │ │ ├── BasicNetwork.class │ │ ├── ByteArrayPool$1.class │ │ ├── ByteArrayPool.class │ │ ├── ClearCacheRequest.class │ │ ├── DiskBasedCache$CacheHeader.class │ │ ├── DiskBasedCache$CountingInputStream.class │ │ ├── DiskBasedCache.class │ │ ├── HttpClientStack$HttpPatch.class │ │ ├── HttpClientStack.class │ │ ├── HttpHeaderParser.class │ │ ├── HttpStack.class │ │ ├── HurlStack$UrlRewriter.class │ │ ├── HurlStack.class │ │ ├── ImageLoader$1.class │ │ ├── ImageLoader$2.class │ │ ├── ImageLoader$3.class │ │ ├── ImageLoader$4.class │ │ ├── ImageLoader$BatchedImageRequest.class │ │ ├── ImageLoader$ImageCache.class │ │ ├── ImageLoader$ImageContainer.class │ │ ├── ImageLoader$ImageListener.class │ │ ├── ImageLoader.class │ │ ├── ImageRequest.class │ │ ├── JsonArrayRequest.class │ │ ├── JsonObjectRequest.class │ │ ├── JsonRequest.class │ │ ├── NetworkImageView$1$1.class │ │ ├── NetworkImageView$1.class │ │ ├── NetworkImageView.class │ │ ├── NoCache.class │ │ ├── PoolingByteArrayOutputStream.class │ │ ├── RequestFuture.class │ │ ├── StringRequest.class │ │ └── Volley.class │ │ └── utils │ │ ├── LogUtil.class │ │ ├── VolleyErrorHelper$1.class │ │ └── VolleyErrorHelper.class ├── jarlist.cache └── volleylibrary.jar ├── build.gradle ├── build.xml ├── custom_rules.xml ├── gen └── com │ └── android │ └── volley │ ├── BuildConfig.java │ └── R.java ├── libs ├── android-support-v4.jar └── gson-2.2.4.jar ├── local.properties ├── proguard-project.txt ├── proguard.cfg ├── project.properties ├── res └── values │ └── strings.xml ├── src └── com │ └── cjj │ └── volley │ ├── AuthFailureError.java │ ├── Cache.java │ ├── CacheDispatcher.java │ ├── DefaultRetryPolicy.java │ ├── ExecutorDelivery.java │ ├── Network.java │ ├── NetworkDispatcher.java │ ├── NetworkError.java │ ├── NetworkResponse.java │ ├── NoConnectionError.java │ ├── ParseError.java │ ├── Request.java │ ├── RequestQueue.java │ ├── Response.java │ ├── ResponseDelivery.java │ ├── RetryPolicy.java │ ├── ServerError.java │ ├── TimeoutError.java │ ├── VolleyError.java │ ├── VolleyLog.java │ ├── cache │ └── BitmapCache.java │ ├── callback │ ├── CallBackDataListener.java │ └── CallBackStringDataListener.java │ ├── custom │ └── request │ │ ├── GsonRequest.java │ │ └── XMLRequest.java │ ├── me │ └── CjjVolley.java │ ├── toolbox │ ├── AndroidAuthenticator.java │ ├── Authenticator.java │ ├── BasicNetwork.java │ ├── ByteArrayPool.java │ ├── ClearCacheRequest.java │ ├── DiskBasedCache.java │ ├── HttpClientStack.java │ ├── HttpHeaderParser.java │ ├── HttpStack.java │ ├── HurlStack.java │ ├── ImageLoader.java │ ├── ImageRequest.java │ ├── JsonArrayRequest.java │ ├── JsonObjectRequest.java │ ├── JsonRequest.java │ ├── NetworkImageView.java │ ├── NoCache.java │ ├── PoolingByteArrayOutputStream.java │ ├── RequestFuture.java │ ├── StringRequest.java │ └── Volley.java │ └── utils │ ├── LogUtil.java │ └── VolleyErrorHelper.java └── tests ├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── Android.mk ├── AndroidManifest.xml ├── bin ├── AndroidManifest.xml ├── classes │ └── com │ │ └── android │ │ └── volley │ │ ├── CacheDispatcherTest.class │ │ ├── NetworkDispatcherTest.class │ │ ├── RequestQueueTest$1.class │ │ ├── RequestQueueTest$DelayedRequest.class │ │ ├── RequestQueueTest$OrderCheckingNetwork.class │ │ ├── RequestQueueTest.class │ │ ├── RequestTest$TestRequest.class │ │ ├── RequestTest.class │ │ ├── ResponseDeliveryTest.class │ │ ├── mock │ │ ├── MockCache.class │ │ ├── MockHttpClient.class │ │ ├── MockHttpStack.class │ │ ├── MockHttpURLConnection.class │ │ ├── MockNetwork.class │ │ ├── MockRequest.class │ │ ├── MockResponseDelivery.class │ │ ├── TestRequest$Base.class │ │ ├── TestRequest$Delete.class │ │ ├── TestRequest$DeprecatedGet.class │ │ ├── TestRequest$DeprecatedPost.class │ │ ├── TestRequest$Get.class │ │ ├── TestRequest$Head.class │ │ ├── TestRequest$Options.class │ │ ├── TestRequest$Patch.class │ │ ├── TestRequest$PatchWithBody.class │ │ ├── TestRequest$Post.class │ │ ├── TestRequest$PostWithBody.class │ │ ├── TestRequest$Put.class │ │ ├── TestRequest$PutWithBody.class │ │ ├── TestRequest$Trace.class │ │ ├── TestRequest.class │ │ ├── WaitableQueue$MagicStopRequest.class │ │ └── WaitableQueue.class │ │ ├── tests │ │ ├── BuildConfig.class │ │ ├── R$attr.class │ │ ├── R$raw.class │ │ └── R.class │ │ ├── toolbox │ │ ├── BasicNetworkTest$1.class │ │ ├── BasicNetworkTest.class │ │ ├── ByteArrayPoolTest.class │ │ ├── DiskBasedCacheTest.class │ │ ├── HttpClientStackTest.class │ │ ├── HttpHeaderParserTest.class │ │ ├── HurlStackTest.class │ │ ├── ImageRequestTest.class │ │ ├── NetworkImageViewTest$MockImageLoader.class │ │ ├── NetworkImageViewTest.class │ │ └── PoolingByteArrayOutputStreamTest.class │ │ └── utils │ │ ├── CacheTestUtils.class │ │ ├── ImmediateResponseDelivery$1.class │ │ └── ImmediateResponseDelivery.class └── jarlist.cache ├── gen └── com │ └── android │ └── volley │ └── tests │ ├── BuildConfig.java │ └── R.java ├── libs └── android-support-v4.jar ├── project.properties ├── res └── raw │ └── large_jpeg_1024_500.jpg └── src └── com └── android └── volley ├── CacheDispatcherTest.java ├── NetworkDispatcherTest.java ├── RequestQueueTest.java ├── RequestTest.java ├── ResponseDeliveryTest.java ├── mock ├── MockCache.java ├── MockHttpClient.java ├── MockHttpStack.java ├── MockHttpURLConnection.java ├── MockNetwork.java ├── MockRequest.java ├── MockResponseDelivery.java ├── TestRequest.java └── WaitableQueue.java ├── toolbox ├── BasicNetworkTest.java ├── ByteArrayPoolTest.java ├── DiskBasedCacheTest.java ├── HttpClientStackTest.java ├── HttpHeaderParserTest.java ├── HurlStackTest.java ├── ImageRequestTest.java ├── NetworkImageViewTest.java └── PoolingByteArrayOutputStreamTest.java └── utils ├── CacheTestUtils.java └── ImmediateResponseDelivery.java /Nices20/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /Nices20/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /Nices20/android.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/android.keystore -------------------------------------------------------------------------------- /Nices20/ant.properties: -------------------------------------------------------------------------------- 1 | key.store=android.keystore 2 | key.alias=cjj 3 | key.store.password=123123q 4 | key.alias.password=123123q 5 | market_channels=Wandoujia,360,91,baidu,wy 6 | app_name=NiceS 7 | app_version=1.0 -------------------------------------------------------------------------------- /Nices20/assets/fonts/huayun/Huayun.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/assets/fonts/huayun/Huayun.TTF -------------------------------------------------------------------------------- /Nices20/assets/fonts/katong/Katong.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/assets/fonts/katong/Katong.ttf -------------------------------------------------------------------------------- /Nices20/assets/www/news_detail_header_def.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/assets/www/news_detail_header_def.jpg -------------------------------------------------------------------------------- /Nices20/assets/www/night.js: -------------------------------------------------------------------------------- 1 | 2 | function set_night_mode(mode) { 3 | document.body.className += mode ? 'night ' : ' '; 4 | document.body.style.visibility = 'visible'; 5 | } -------------------------------------------------------------------------------- /Nices20/bin/Nices18.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/Nices18.apk -------------------------------------------------------------------------------- /Nices20/bin/Nices19.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/Nices19.apk -------------------------------------------------------------------------------- /Nices20/bin/Nices20.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/Nices20.apk -------------------------------------------------------------------------------- /Nices20/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes.dex -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/CustomerLogo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/CustomerLogo.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/EditPage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/EditPage$1.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/EditPage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/EditPage$2.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/EditPage$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/EditPage$3.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/EditPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/EditPage.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/FollowList$Following.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/FollowList$Following.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/FollowList$PRTHeader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/FollowList$PRTHeader.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/FollowList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/FollowList.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/OnekeyShare$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/OnekeyShare$1.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/OnekeyShare$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/OnekeyShare$2.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/OnekeyShare.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/OnekeyShare.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/PicViewer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/PicViewer.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/PlatformGridView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/PlatformGridView$1.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/PlatformGridView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/PlatformGridView.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/ShareCore.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/cn/sharesdk/onekeyshare/ShareCore.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/android/volley/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/android/volley/R$string.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/android/volley/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/android/volley/R.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/BuildConfig.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/MainActivity$1.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/MainActivity.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/NewsDetailActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/NewsDetailActivity$1.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/NewsDetailActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/NewsDetailActivity.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R$anim.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$array.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R$array.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R$attr.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R$bool.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R$color.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R$dimen.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R$drawable.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R$id.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R$integer.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R$layout.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R$menu.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R$string.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R$style.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R$styleable.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/R.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/wxapi/WXEntryActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/wxapi/WXEntryActivity.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/yxapi/YXEntryActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/activity/yxapi/YXEntryActivity.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/adapter/NavigationDrawerAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/adapter/NavigationDrawerAdapter.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/adapter/NewsListAdapter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/adapter/NewsListAdapter$1.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/adapter/NewsListAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/adapter/NewsListAdapter.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/adapter/SimpleBaseAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/adapter/SimpleBaseAdapter.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/constant/Constants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/constant/Constants.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/dao/UserDao$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/dao/UserDao$1.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/dao/UserDao$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/dao/UserDao$2.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/dao/UserDao$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/dao/UserDao$3.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/dao/UserDao$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/dao/UserDao$4.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/dao/UserDao$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/dao/UserDao$5.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/dao/UserDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/dao/UserDao.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/db/FavoriteTableModel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/db/FavoriteTableModel.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/db/NewsListModel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/db/NewsListModel.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/db/NicesDBHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/db/NicesDBHelper.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/DetailFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/fragment/DetailFragment$1.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/DetailFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/fragment/DetailFragment$2.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/DetailFragment$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/fragment/DetailFragment$3.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/DetailFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/fragment/DetailFragment.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/FavoriteFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/fragment/FavoriteFragment$1.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/FavoriteFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/fragment/FavoriteFragment$2.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/FavoriteFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/fragment/FavoriteFragment.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/HomeFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/fragment/HomeFragment$1.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/HomeFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/fragment/HomeFragment$2.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/HomeFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/fragment/HomeFragment.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/MessageFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/fragment/MessageFragment.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/PictureFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/fragment/PictureFragment.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/SupportFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/fragment/SupportFragment.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/VideoFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/fragment/VideoFragment.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/model/NavigationItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/model/NavigationItem.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/model/NicesApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/model/NicesApplication.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/model/NicesDetailModel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/model/NicesDetailModel.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/model/NicesNewsListEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/model/NicesNewsListEntity.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/util/ArrayUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/util/ArrayUtils.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/util/AssetsUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/util/AssetsUtils.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/util/FileService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/util/FileService.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/util/ImageConfigBuilder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/util/ImageConfigBuilder.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/util/ListUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/util/ListUtils.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/util/ObjectUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/util/ObjectUtils.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/util/UrlUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/classes/com/cjj/nices/util/UrlUtils.class -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/gson-2.2.4-80932f45d0ff016bfb3031f332efb308.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/gson-2.2.4-80932f45d0ff016bfb3031f332efb308.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/gson-2.2.4-8d8716dacb6aa665def2b68a357e9c25.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/gson-2.2.4-8d8716dacb6aa665def2b68a357e9c25.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/jsoup-1.8.1-72b05624d22e586cc4a32dc7955f83a2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/jsoup-1.8.1-72b05624d22e586cc4a32dc7955f83a2.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/jsoup-1.8.1-9ace40b7c3966538237260429f4c8a71.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/jsoup-1.8.1-9ace40b7c3966538237260429f4c8a71.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/jsoup-1.8.1-aee2c6e7505cae9f6ffbc90cce55bcdb.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/jsoup-1.8.1-aee2c6e7505cae9f6ffbc90cce55bcdb.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/jsoup-1.8.1-b28de467957cd9d2359731ac465aa399.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/jsoup-1.8.1-b28de467957cd9d2359731ac465aa399.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/litepal-1.1.1-511b8cc23334236b899b5df649451cb0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/litepal-1.1.1-511b8cc23334236b899b5df649451cb0.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/litepal-1.1.1-68319849024f56d71bc1a04920a0a113.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/litepal-1.1.1-68319849024f56d71bc1a04920a0a113.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/litepal-1.1.1-6c2cc5ab73ab2437df958e4175295006.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/litepal-1.1.1-6c2cc5ab73ab2437df958e4175295006.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/litepal-1.1.1-da2bd6536ce347b2260c0a12c5ba04d9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/litepal-1.1.1-da2bd6536ce347b2260c0a12c5ba04d9.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/mframework-13b7c90f0557d4a242f4cb60cc74e744.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/mframework-13b7c90f0557d4a242f4cb60cc74e744.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/mframework-2efd8651cf23e9685ee69410c0a7c7a5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/mframework-2efd8651cf23e9685ee69410c0a7c7a5.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/mframework-749d4fb0ddd273ef3247f7cee6445672.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/mframework-749d4fb0ddd273ef3247f7cee6445672.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/mframework-f034b2ab89f521816ba6547c8c7b9e2e.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/mframework-f034b2ab89f521816ba6547c8c7b9e2e.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/niceslibrary-2d579d53f7414149731811b149c59415.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/niceslibrary-2d579d53f7414149731811b149c59415.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/niceslibrary-fba18acdbdc6a3d48cafd8aaa0345865.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/niceslibrary-fba18acdbdc6a3d48cafd8aaa0345865.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/volleylibrary-1f0f9ffde457bde2971a7c0a768410cf.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/volleylibrary-1f0f9ffde457bde2971a7c0a768410cf.jar -------------------------------------------------------------------------------- /Nices20/bin/dexedLibs/volleylibrary-890cb1296cc195f25befa8b89edd88b0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/dexedLibs/volleylibrary-890cb1296cc195f25befa8b89edd88b0.jar -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-hdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-hdpi/app_icon.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-hdpi/ic_menu_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-hdpi/ic_menu_check.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-hdpi/ssdk_oks_ptr_ptr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-hdpi/ssdk_oks_ptr_ptr.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-mdpi/ic_menu_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-mdpi/ic_menu_check.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/actionbar_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/actionbar_bottom.9.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/auth_follow_cb_chd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/auth_follow_cb_chd.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/auth_follow_cb_unc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/auth_follow_cb_unc.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/auth_title_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/auth_title_back.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/btn_back_nor.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/btn_back_nor.9.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/btn_cancel_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/btn_cancel_back.9.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/edittext_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/edittext_back.9.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/gray_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/gray_point.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_action_about.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_action_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_action_download.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_action_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_action_favorite.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_action_favorite_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_action_favorite_red.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_action_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_action_share.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_action_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_action_star.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_beer.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_drawer.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_github.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_home_color_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_home_color_20.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_refresh.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ic_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ic_undo.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/img_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/img_cancel.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_douban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_douban.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_dropbox.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_email.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_evernote.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_facebook.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_flickr.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_foursquare.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_googleplus.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_instagram.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_kaixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_kaixin.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_linkedin.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_mingdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_mingdao.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_neteasemicroblog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_neteasemicroblog.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_pinterest.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_qq.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_qzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_qzone.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_renren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_renren.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_shortmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_shortmessage.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_sinaweibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_sinaweibo.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_sohumicroblog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_sohumicroblog.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_sohusuishenkan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_sohusuishenkan.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_tencentweibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_tencentweibo.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_tumblr.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_twitter.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_vkontakte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_vkontakte.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_wechat.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_wechatfavorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_wechatfavorite.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_wechatmoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_wechatmoments.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_yixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_yixin.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_yixinmoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_yixinmoments.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/logo_youdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/logo_youdao.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/pin.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/share_tb_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/share_tb_back.9.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/share_vp_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/share_vp_back.9.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ssdk_auth_title_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ssdk_auth_title_back.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ssdk_back_arr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ssdk_back_arr.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ssdk_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ssdk_logo.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/ssdk_title_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/ssdk_title_div.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/tabs_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/tabs_pattern.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/tabs_pattern_diagonal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/tabs_pattern_diagonal.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/title_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/title_back.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/title_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/title_shadow.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/white_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xhdpi/white_point.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/app_icon.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/biz_navigation_tab_news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/biz_navigation_tab_news.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/biz_navigation_tab_pics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/biz_navigation_tab_pics.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/biz_navigation_tab_ties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/biz_navigation_tab_ties.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/biz_navigation_tab_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/biz_navigation_tab_video.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/biz_navigation_tab_voted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/biz_navigation_tab_voted.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/delete_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/delete_icon.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/empty_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/empty_photo.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/empty_photo_by_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/empty_photo_by_width.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/favorite_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/favorite_nor.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/favorite_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/favorite_press.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/ic_action_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/ic_action_important.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/ic_action_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/ic_action_share.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/ic_menu_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/ic_menu_check.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/night_biz_navigation_tab_news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/night_biz_navigation_tab_news.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/night_biz_navigation_tab_pics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/night_biz_navigation_tab_pics.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/night_biz_navigation_tab_ties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/night_biz_navigation_tab_ties.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/share_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/share_pre.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/res/crunch/drawable-xxhdpi/x.png -------------------------------------------------------------------------------- /Nices20/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/bin/resources.ap_ -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Core-2.3.7 涓嬪崍2.58.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Core-2.3.7 涓嬪崍2.58.45.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Douban-2.3.7 涓嬪崍2.58.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Douban-2.3.7 涓嬪崍2.58.45.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Dropbox-2.3.7 涓嬪崍2.58.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Dropbox-2.3.7 涓嬪崍2.58.45.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Email-2.3.7 涓嬪崍2.58.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Email-2.3.7 涓嬪崍2.58.45.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Evernote-2.3.7 涓嬪崍2.58.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Evernote-2.3.7 涓嬪崍2.58.45.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Facebook-2.3.7 涓嬪崍2.58.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Facebook-2.3.7 涓嬪崍2.58.45.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Flickr-2.3.7 涓嬪崍2.58.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Flickr-2.3.7 涓嬪崍2.58.45.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Foursquare-2.3.7 涓嬪崍2.58.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Foursquare-2.3.7 涓嬪崍2.58.45.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-GooglePlus-2.3.7 涓嬪崍2.58.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-GooglePlus-2.3.7 涓嬪崍2.58.45.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Instagram-2.3.7 涓嬪崍2.58.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Instagram-2.3.7 涓嬪崍2.58.45.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-KaiXin-2.3.7 涓嬪崍2.58.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-KaiXin-2.3.7 涓嬪崍2.58.45.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Linkedin-2.3.7 涓嬪崍2.58.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Linkedin-2.3.7 涓嬪崍2.58.45.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Mingdao-2.3.7 涓嬪崍2.58.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Mingdao-2.3.7 涓嬪崍2.58.45.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-NetEaseMicroBlog-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-NetEaseMicroBlog-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Pinterest-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Pinterest-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-QQ-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-QQ-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-QZone-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-QZone-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Renren-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Renren-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-ShortMessage-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-ShortMessage-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-SinaWeibo-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-SinaWeibo-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-SohuSuishenkan-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-SohuSuishenkan-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-SouhuMicroBlog-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-SouhuMicroBlog-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-TencentWeibo-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-TencentWeibo-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Tumblr-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Tumblr-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Twitter-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Twitter-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-VKontakte-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-VKontakte-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Wechat-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Wechat-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Wechat-Core-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Wechat-Core-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Wechat-Favorite-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Wechat-Favorite-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Wechat-Moments-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Wechat-Moments-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Yixin-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Yixin-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Yixin-Core-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Yixin-Core-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Yixin-Moments-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-Yixin-Moments-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-YouDao-2.3.7 涓嬪崍2.58.44.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/ShareSDK-YouDao-2.3.7 涓嬪崍2.58.44.jar -------------------------------------------------------------------------------- /Nices20/libs/YoumiSdk_v4.10_2014-11-24.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/YoumiSdk_v4.10_2014-11-24.jar -------------------------------------------------------------------------------- /Nices20/libs/jsoup-1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/jsoup-1.8.1.jar -------------------------------------------------------------------------------- /Nices20/libs/litepal-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/litepal-1.1.1.jar -------------------------------------------------------------------------------- /Nices20/libs/mframework.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/mframework.jar -------------------------------------------------------------------------------- /Nices20/libs/umeng-analytics-v5.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/umeng-analytics-v5.2.4.jar -------------------------------------------------------------------------------- /Nices20/libs/universal-image-loader-1.9.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/libs/universal-image-loader-1.9.3.jar -------------------------------------------------------------------------------- /Nices20/res/drawable-hdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-hdpi/app_icon.png -------------------------------------------------------------------------------- /Nices20/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Nices20/res/drawable-hdpi/ic_menu_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-hdpi/ic_menu_check.png -------------------------------------------------------------------------------- /Nices20/res/drawable-hdpi/ssdk_oks_ptr_ptr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-hdpi/ssdk_oks_ptr_ptr.png -------------------------------------------------------------------------------- /Nices20/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Nices20/res/drawable-mdpi/ic_menu_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-mdpi/ic_menu_check.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/actionbar_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/actionbar_bottom.9.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/auth_follow_cb_chd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/auth_follow_cb_chd.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/auth_follow_cb_unc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/auth_follow_cb_unc.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/auth_title_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/auth_title_back.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/btn_back_nor.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/btn_back_nor.9.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/btn_cancel_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/btn_cancel_back.9.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/edittext_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/edittext_back.9.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/gray_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/gray_point.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_action_about.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_action_download.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_action_favorite.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_favorite_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_action_favorite_red.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_action_share.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_action_star.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_beer.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_drawer.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_github.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_home_color_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_home_color_20.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_refresh.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ic_undo.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/img_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/img_cancel.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_douban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_douban.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_dropbox.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_email.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_evernote.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_facebook.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_flickr.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_foursquare.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_googleplus.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_instagram.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_kaixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_kaixin.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_linkedin.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_mingdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_mingdao.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_neteasemicroblog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_neteasemicroblog.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_pinterest.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_qq.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_qzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_qzone.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_renren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_renren.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_shortmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_shortmessage.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_sinaweibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_sinaweibo.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_sohumicroblog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_sohumicroblog.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_sohusuishenkan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_sohusuishenkan.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_tencentweibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_tencentweibo.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_tumblr.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_twitter.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_vkontakte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_vkontakte.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_wechat.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_wechatfavorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_wechatfavorite.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_wechatmoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_wechatmoments.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_yixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_yixin.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_yixinmoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_yixinmoments.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_youdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/logo_youdao.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/pin.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/share_tb_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/share_tb_back.9.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/share_vp_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/share_vp_back.9.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ssdk_auth_title_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ssdk_auth_title_back.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ssdk_back_arr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ssdk_back_arr.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ssdk_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ssdk_logo.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ssdk_title_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/ssdk_title_div.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/tabs_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/tabs_pattern.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/tabs_pattern_diagonal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/tabs_pattern_diagonal.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/title_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/title_back.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/title_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/title_shadow.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/white_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xhdpi/white_point.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/app_icon.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/biz_navigation_tab_news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/biz_navigation_tab_news.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/biz_navigation_tab_pics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/biz_navigation_tab_pics.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/biz_navigation_tab_ties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/biz_navigation_tab_ties.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/biz_navigation_tab_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/biz_navigation_tab_video.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/biz_navigation_tab_voted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/biz_navigation_tab_voted.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/delete_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/delete_icon.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/empty_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/empty_photo.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/empty_photo_by_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/empty_photo_by_width.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/favorite_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/favorite_nor.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/favorite_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/favorite_press.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/ic_action_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/ic_action_important.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/ic_action_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/ic_action_share.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/ic_menu_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/ic_menu_check.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/night_biz_navigation_tab_news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/night_biz_navigation_tab_news.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/night_biz_navigation_tab_pics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/night_biz_navigation_tab_pics.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/night_biz_navigation_tab_ties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/night_biz_navigation_tab_ties.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/night_biz_navigation_tab_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/night_biz_navigation_tab_video.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/share_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/share_pre.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/Nices20/res/drawable-xxhdpi/x.png -------------------------------------------------------------------------------- /Nices20/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/callback/NavigationDrawerCallbacks.java: -------------------------------------------------------------------------------- 1 | package com.cjj.nices.callback; 2 | 3 | public interface NavigationDrawerCallbacks { 4 | void onNavigationDrawerItemSelected(int position); 5 | } 6 | -------------------------------------------------------------------------------- /NicesLibrary/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/.readme: -------------------------------------------------------------------------------- 1 | This hidden file is there to ensure there is an src folder. 2 | Once we support binary library this will go away. -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/android/support/v7/appcompat/BuildConfig.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/baoyz/swipemenulistview/SwipeMenu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/baoyz/swipemenulistview/SwipeMenu.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/baoyz/swipemenulistview/SwipeMenuItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/baoyz/swipemenulistview/SwipeMenuItem.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/baoyz/swipemenulistview/SwipeMenuView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/baoyz/swipemenulistview/SwipeMenuView.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/callback/ReLoadCallbackListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/cjj/callback/ReLoadCallbackListener.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/custom/CustomPopWindow$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/cjj/custom/CustomPopWindow$1.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/custom/CustomPopWindow$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/cjj/custom/CustomPopWindow$2.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/custom/CustomPopWindow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/cjj/custom/CustomPopWindow.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/loading/CircularProgress$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/cjj/loading/CircularProgress$1.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/loading/CircularProgress$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/cjj/loading/CircularProgress$2.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/loading/CircularProgress$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/cjj/loading/CircularProgress$3.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/loading/CircularProgress.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/cjj/loading/CircularProgress.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/loading/LoadingCjjLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/cjj/loading/LoadingCjjLayout.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/utils/NetUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/cjj/utils/NetUtils.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/viewpagerindicator/IconPageIndicator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/viewpagerindicator/IconPageIndicator.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/viewpagerindicator/IconPagerAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/viewpagerindicator/IconPagerAdapter.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/viewpagerindicator/IcsLinearLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/viewpagerindicator/IcsLinearLayout.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/viewpagerindicator/LinePageIndicator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/viewpagerindicator/LinePageIndicator.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/viewpagerindicator/PageIndicator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/viewpagerindicator/PageIndicator.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/viewpagerindicator/TabPageIndicator$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/viewpagerindicator/TabPageIndicator$1.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/viewpagerindicator/TabPageIndicator$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/viewpagerindicator/TabPageIndicator$2.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/viewpagerindicator/TabPageIndicator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/viewpagerindicator/TabPageIndicator.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/viewpagerindicator/TitlePageIndicator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/com/viewpagerindicator/TitlePageIndicator.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/uk/me/lewisdeane/ldialogs/BaseDialog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/uk/me/lewisdeane/ldialogs/BaseDialog.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/uk/me/lewisdeane/ldialogs/CustomDialog$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/uk/me/lewisdeane/ldialogs/CustomDialog$1.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/uk/me/lewisdeane/ldialogs/CustomDialog$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/uk/me/lewisdeane/ldialogs/CustomDialog$2.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/uk/me/lewisdeane/ldialogs/CustomDialog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/classes/uk/me/lewisdeane/ldialogs/CustomDialog.class -------------------------------------------------------------------------------- /NicesLibrary/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /NicesLibrary/bin/niceslibrary.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/niceslibrary.jar -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-hdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/res/crunch/drawable-hdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/res/crunch/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-hdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/res/crunch/drawable-hdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-hdpi/bg_pull_to_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/res/crunch/drawable-hdpi/bg_pull_to_refresh.png -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-hdpi/vpi__tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/res/crunch/drawable-hdpi/vpi__tab_selected_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-hdpi/vpi__tab_unselected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/res/crunch/drawable-hdpi/vpi__tab_unselected_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-mdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/res/crunch/drawable-mdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/res/crunch/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-mdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/res/crunch/drawable-mdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/res/crunch/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-xhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/res/crunch/drawable-xhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/res/crunch/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-xxhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/res/crunch/drawable-xxhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/bin/res/crunch/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/libs/android-support-v4.jar -------------------------------------------------------------------------------- /NicesLibrary/libs/android-support-v7-appcompat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/libs/android-support-v7-appcompat.jar -------------------------------------------------------------------------------- /NicesLibrary/libs/cjj-recylerview.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/libs/cjj-recylerview.jar -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/bg_pull_to_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/bg_pull_to_refresh.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/reload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/reload.jpg -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/vpi__tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/vpi__tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/vpi__tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/vpi__tab_selected_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/vpi__tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/vpi__tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/vpi__tab_unselected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/vpi__tab_unselected_focused_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/vpi__tab_unselected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/vpi__tab_unselected_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/vpi__tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-hdpi/vpi__tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/NicesLibrary/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/src/.readme: -------------------------------------------------------------------------------- 1 | This hidden file is there to ensure there is an src folder. 2 | Once we support binary library this will go away. -------------------------------------------------------------------------------- /VolleyLibrary/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /VolleyLibrary/bin/R.txt: -------------------------------------------------------------------------------- 1 | int string generic_error 0x7f020001 2 | int string generic_server_down 0x7f020000 3 | int string no_internet 0x7f020002 4 | -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/android/volley/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/android/volley/BuildConfig.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/android/volley/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/android/volley/R$attr.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/android/volley/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/android/volley/R$string.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/android/volley/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/android/volley/R.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/AuthFailureError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/AuthFailureError.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Cache$Entry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/Cache$Entry.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Cache.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/Cache.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/CacheDispatcher$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/CacheDispatcher$1.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/CacheDispatcher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/CacheDispatcher.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/DefaultRetryPolicy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/DefaultRetryPolicy.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/ExecutorDelivery$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/ExecutorDelivery$1.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/ExecutorDelivery.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/ExecutorDelivery.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Network.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/Network.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/NetworkDispatcher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/NetworkDispatcher.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/NetworkError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/NetworkError.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/NetworkResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/NetworkResponse.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/NoConnectionError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/NoConnectionError.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/ParseError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/ParseError.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Request$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/Request$1.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Request$Method.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/Request$Method.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Request$Priority.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/Request$Priority.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/Request.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/RequestQueue$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/RequestQueue$1.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/RequestQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/RequestQueue.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Response$ErrorListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/Response$ErrorListener.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Response$Listener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/Response$Listener.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Response.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/Response.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/ResponseDelivery.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/ResponseDelivery.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/RetryPolicy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/RetryPolicy.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/ServerError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/ServerError.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/TimeoutError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/TimeoutError.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/VolleyError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/VolleyError.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/VolleyLog$MarkerLog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/VolleyLog$MarkerLog.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/VolleyLog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/VolleyLog.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/cache/BitmapCache$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/cache/BitmapCache$1.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/cache/BitmapCache.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/cache/BitmapCache.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/me/CjjVolley.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/me/CjjVolley.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/Authenticator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/Authenticator.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/BasicNetwork.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/BasicNetwork.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/ByteArrayPool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/ByteArrayPool.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/DiskBasedCache.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/DiskBasedCache.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/HttpStack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/HttpStack.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/HurlStack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/HurlStack.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/ImageLoader$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/ImageLoader$1.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/ImageLoader$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/ImageLoader$2.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/ImageLoader$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/ImageLoader$3.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/ImageLoader$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/ImageLoader$4.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/ImageLoader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/ImageLoader.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/ImageRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/ImageRequest.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/JsonRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/JsonRequest.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/NoCache.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/NoCache.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/RequestFuture.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/RequestFuture.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/StringRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/StringRequest.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/Volley.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/Volley.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/utils/LogUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/classes/com/cjj/volley/utils/LogUtil.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /VolleyLibrary/bin/volleylibrary.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/bin/volleylibrary.jar -------------------------------------------------------------------------------- /VolleyLibrary/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/libs/android-support-v4.jar -------------------------------------------------------------------------------- /VolleyLibrary/libs/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/libs/gson-2.2.4.jar -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/callback/CallBackStringDataListener.java: -------------------------------------------------------------------------------- 1 | package com.cjj.volley.callback; 2 | 3 | public interface CallBackStringDataListener { 4 | public void callbackStringData(String result); 5 | } 6 | -------------------------------------------------------------------------------- /VolleyLibrary/tests/bin/classes/com/android/volley/RequestTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/tests/bin/classes/com/android/volley/RequestTest.class -------------------------------------------------------------------------------- /VolleyLibrary/tests/bin/classes/com/android/volley/tests/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/tests/bin/classes/com/android/volley/tests/R$attr.class -------------------------------------------------------------------------------- /VolleyLibrary/tests/bin/classes/com/android/volley/tests/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/tests/bin/classes/com/android/volley/tests/R$raw.class -------------------------------------------------------------------------------- /VolleyLibrary/tests/bin/classes/com/android/volley/tests/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/tests/bin/classes/com/android/volley/tests/R.class -------------------------------------------------------------------------------- /VolleyLibrary/tests/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /VolleyLibrary/tests/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/tests/libs/android-support-v4.jar -------------------------------------------------------------------------------- /VolleyLibrary/tests/res/raw/large_jpeg_1024_500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/033eb992afaf421e97f5255b2f0a062e7cde290b/VolleyLibrary/tests/res/raw/large_jpeg_1024_500.jpg --------------------------------------------------------------------------------