├── 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/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/.classpath -------------------------------------------------------------------------------- /Nices20/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/.project -------------------------------------------------------------------------------- /Nices20/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /Nices20/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /Nices20/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/AndroidManifest.xml -------------------------------------------------------------------------------- /Nices20/android.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/android.keystore -------------------------------------------------------------------------------- /Nices20/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/ant.properties -------------------------------------------------------------------------------- /Nices20/assets/ShareSDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/ShareSDK.xml -------------------------------------------------------------------------------- /Nices20/assets/fonts/huayun/Huayun.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/fonts/huayun/Huayun.TTF -------------------------------------------------------------------------------- /Nices20/assets/fonts/katong/Katong.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/fonts/katong/Katong.ttf -------------------------------------------------------------------------------- /Nices20/assets/litepal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/litepal.xml -------------------------------------------------------------------------------- /Nices20/assets/www/img_replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/www/img_replace.js -------------------------------------------------------------------------------- /Nices20/assets/www/large-font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/www/large-font.js -------------------------------------------------------------------------------- /Nices20/assets/www/news_detail_header_def.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/www/news_detail_header_def.jpg -------------------------------------------------------------------------------- /Nices20/assets/www/news_header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/www/news_header.css -------------------------------------------------------------------------------- /Nices20/assets/www/news_qa.auto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/www/news_qa.auto.css -------------------------------------------------------------------------------- /Nices20/assets/www/news_qa.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/www/news_qa.min.css -------------------------------------------------------------------------------- /Nices20/assets/www/night.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/www/night.js -------------------------------------------------------------------------------- /Nices20/assets/www/show_bottom_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/www/show_bottom_link.js -------------------------------------------------------------------------------- /Nices20/assets/www/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/www/template.html -------------------------------------------------------------------------------- /Nices20/assets/www/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/www/video.js -------------------------------------------------------------------------------- /Nices20/assets/www/zepto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/assets/www/zepto.min.js -------------------------------------------------------------------------------- /Nices20/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /Nices20/bin/Nices18.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/Nices18.apk -------------------------------------------------------------------------------- /Nices20/bin/Nices19.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/Nices19.apk -------------------------------------------------------------------------------- /Nices20/bin/Nices20.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/Nices20.apk -------------------------------------------------------------------------------- /Nices20/bin/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/R.txt -------------------------------------------------------------------------------- /Nices20/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/classes.dex -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Nices20/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /Nices20/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/CustomerLogo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/classes/cn/sharesdk/onekeyshare/CustomerLogo.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/EditPage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/Nices20/bin/classes/cn/sharesdk/onekeyshare/EditPage$3.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/EditPage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/classes/cn/sharesdk/onekeyshare/EditPage.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/FollowList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/classes/cn/sharesdk/onekeyshare/FollowList.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/OnekeyShare$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/Nices20/bin/classes/cn/sharesdk/onekeyshare/OnekeyShare$2.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/OnekeyShare.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/classes/cn/sharesdk/onekeyshare/OnekeyShare.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/PicViewer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/classes/cn/sharesdk/onekeyshare/PicViewer.class -------------------------------------------------------------------------------- /Nices20/bin/classes/cn/sharesdk/onekeyshare/ShareCore.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/classes/cn/sharesdk/onekeyshare/ShareCore.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/android/volley/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/classes/com/android/volley/R$string.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/android/volley/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/classes/com/android/volley/R.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/Nices20/bin/classes/com/cjj/nices/activity/MainActivity.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/activity/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Nices20/bin/classes/com/cjj/nices/activity/R.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/adapter/NewsListAdapter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Nices20/bin/classes/com/cjj/nices/fragment/DetailFragment.class -------------------------------------------------------------------------------- /Nices20/bin/classes/com/cjj/nices/fragment/FavoriteFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Nices20/bin/classes/com/cjj/nices/util/UrlUtils.class -------------------------------------------------------------------------------- /Nices20/bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/jarlist.cache -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-hdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Nices20/bin/res/crunch/drawable-xhdpi/logo_youdao.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xhdpi/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Nices20/bin/res/crunch/drawable-xxhdpi/app_icon.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/delete_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Nices20/bin/res/crunch/drawable-xxhdpi/ic_menu_check.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/share_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/res/crunch/drawable-xxhdpi/share_pre.png -------------------------------------------------------------------------------- /Nices20/bin/res/crunch/drawable-xxhdpi/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/res/crunch/drawable-xxhdpi/x.png -------------------------------------------------------------------------------- /Nices20/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/bin/resources.ap_ -------------------------------------------------------------------------------- /Nices20/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/build.xml -------------------------------------------------------------------------------- /Nices20/gen/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/gen/android/support/v7/appcompat/R.java -------------------------------------------------------------------------------- /Nices20/gen/com/android/volley/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/gen/com/android/volley/R.java -------------------------------------------------------------------------------- /Nices20/gen/com/cjj/nices/activity/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/gen/com/cjj/nices/activity/BuildConfig.java -------------------------------------------------------------------------------- /Nices20/gen/com/cjj/nices/activity/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/gen/com/cjj/nices/activity/R.java -------------------------------------------------------------------------------- /Nices20/libs/ShareSDK-Core-2.3.7 涓嬪崍2.58.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Nices20/libs/YoumiSdk_v4.10_2014-11-24.jar -------------------------------------------------------------------------------- /Nices20/libs/jsoup-1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/libs/jsoup-1.8.1.jar -------------------------------------------------------------------------------- /Nices20/libs/litepal-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/libs/litepal-1.1.1.jar -------------------------------------------------------------------------------- /Nices20/libs/mframework.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/libs/mframework.jar -------------------------------------------------------------------------------- /Nices20/libs/umeng-analytics-v5.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/libs/umeng-analytics-v5.2.4.jar -------------------------------------------------------------------------------- /Nices20/libs/universal-image-loader-1.9.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/libs/universal-image-loader-1.9.3.jar -------------------------------------------------------------------------------- /Nices20/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/local.properties -------------------------------------------------------------------------------- /Nices20/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/proguard-project.txt -------------------------------------------------------------------------------- /Nices20/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/project.properties -------------------------------------------------------------------------------- /Nices20/res/drawable-hdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-hdpi/app_icon.png -------------------------------------------------------------------------------- /Nices20/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Nices20/res/drawable-hdpi/ic_menu_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-hdpi/ic_menu_check.png -------------------------------------------------------------------------------- /Nices20/res/drawable-hdpi/ssdk_oks_ptr_ptr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-hdpi/ssdk_oks_ptr_ptr.png -------------------------------------------------------------------------------- /Nices20/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Nices20/res/drawable-mdpi/ic_menu_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-mdpi/ic_menu_check.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/actionbar_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/actionbar_bottom.9.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/auth_follow_cb_chd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/Nices20/res/drawable-xhdpi/auth_follow_cb_unc.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/auth_title_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/auth_title_back.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/btn_back_nor.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/Nices20/res/drawable-xhdpi/btn_cancel_back.9.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/edittext_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/edittext_back.9.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/gray_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/gray_point.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_action_about.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_action_download.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_action_favorite.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_favorite_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_action_favorite_red.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_action_share.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_action_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_action_star.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_beer.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_drawer.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_github.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_home_color_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_home_color_20.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_refresh.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ic_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ic_undo.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/img_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/img_cancel.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_douban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_douban.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_dropbox.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_email.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_evernote.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_facebook.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_flickr.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_foursquare.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_googleplus.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_instagram.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_kaixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_kaixin.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_linkedin.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_mingdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_mingdao.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_neteasemicroblog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_neteasemicroblog.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_pinterest.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_qq.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_qzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_qzone.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_renren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_renren.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_shortmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_shortmessage.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_sinaweibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_sinaweibo.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_sohumicroblog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_sohumicroblog.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_sohusuishenkan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_sohusuishenkan.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_tencentweibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_tencentweibo.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_tumblr.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_twitter.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_vkontakte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_vkontakte.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_wechat.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_wechatfavorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_wechatfavorite.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_wechatmoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_wechatmoments.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_yixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_yixin.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_yixinmoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_yixinmoments.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/logo_youdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/logo_youdao.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/pin.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/share_tb_back.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/Nices20/res/drawable-xhdpi/ssdk_auth_title_back.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ssdk_back_arr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ssdk_back_arr.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ssdk_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ssdk_logo.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/ssdk_title_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/ssdk_title_div.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/tabs_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/tabs_pattern.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/tabs_pattern_diagonal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/tabs_pattern_diagonal.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/title_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/title_back.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/title_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/title_shadow.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xhdpi/white_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xhdpi/white_point.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xxhdpi/app_icon.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/biz_navigation_tab_news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Nices20/res/drawable-xxhdpi/biz_navigation_tab_voted.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/delete_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xxhdpi/delete_icon.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/empty_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xxhdpi/empty_photo.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/empty_photo_by_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xxhdpi/empty_photo_by_width.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/favorite_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xxhdpi/favorite_nor.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/favorite_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xxhdpi/favorite_press.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/ic_action_important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xxhdpi/ic_action_important.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/ic_action_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xxhdpi/ic_action_share.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/ic_menu_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Nices20/res/drawable-xxhdpi/night_biz_navigation_tab_video.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/share_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xxhdpi/share_pre.png -------------------------------------------------------------------------------- /Nices20/res/drawable-xxhdpi/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable-xxhdpi/x.png -------------------------------------------------------------------------------- /Nices20/res/drawable/actionbar_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable/actionbar_bg.xml -------------------------------------------------------------------------------- /Nices20/res/drawable/button_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable/button_selector.xml -------------------------------------------------------------------------------- /Nices20/res/drawable/skyblue_platform_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable/skyblue_platform_list_item.xml -------------------------------------------------------------------------------- /Nices20/res/drawable/skyblue_platform_list_item_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable/skyblue_platform_list_item_selected.xml -------------------------------------------------------------------------------- /Nices20/res/drawable/skyblue_platform_list_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/drawable/skyblue_platform_list_selector.xml -------------------------------------------------------------------------------- /Nices20/res/layout/activity_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/activity_detail.xml -------------------------------------------------------------------------------- /Nices20/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Nices20/res/layout/drawer_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/drawer_row.xml -------------------------------------------------------------------------------- /Nices20/res/layout/fragment_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/fragment_detail.xml -------------------------------------------------------------------------------- /Nices20/res/layout/fragment_favorite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/fragment_favorite.xml -------------------------------------------------------------------------------- /Nices20/res/layout/fragment_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/fragment_home.xml -------------------------------------------------------------------------------- /Nices20/res/layout/fragment_message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/fragment_message.xml -------------------------------------------------------------------------------- /Nices20/res/layout/fragment_navigation_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/fragment_navigation_drawer.xml -------------------------------------------------------------------------------- /Nices20/res/layout/fragment_support.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/fragment_support.xml -------------------------------------------------------------------------------- /Nices20/res/layout/item_favorite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/item_favorite.xml -------------------------------------------------------------------------------- /Nices20/res/layout/item_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/item_image.xml -------------------------------------------------------------------------------- /Nices20/res/layout/item_new_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/item_new_list.xml -------------------------------------------------------------------------------- /Nices20/res/layout/item_news_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/item_news_list.xml -------------------------------------------------------------------------------- /Nices20/res/layout/skyblue_editpage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/skyblue_editpage.xml -------------------------------------------------------------------------------- /Nices20/res/layout/skyblue_editpage_at_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/skyblue_editpage_at_layout.xml -------------------------------------------------------------------------------- /Nices20/res/layout/skyblue_editpage_inc_image_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/skyblue_editpage_inc_image_layout.xml -------------------------------------------------------------------------------- /Nices20/res/layout/skyblue_share_actionbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/skyblue_share_actionbar.xml -------------------------------------------------------------------------------- /Nices20/res/layout/skyblue_share_platform_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/skyblue_share_platform_list.xml -------------------------------------------------------------------------------- /Nices20/res/layout/skyblue_share_platform_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/skyblue_share_platform_list_item.xml -------------------------------------------------------------------------------- /Nices20/res/layout/toolbar_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/toolbar_default.xml -------------------------------------------------------------------------------- /Nices20/res/layout/view_load_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/layout/view_load_more.xml -------------------------------------------------------------------------------- /Nices20/res/menu/delete_favorite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/menu/delete_favorite.xml -------------------------------------------------------------------------------- /Nices20/res/menu/favorite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/menu/favorite.xml -------------------------------------------------------------------------------- /Nices20/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/menu/main.xml -------------------------------------------------------------------------------- /Nices20/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/values-v21/styles.xml -------------------------------------------------------------------------------- /Nices20/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/values/attrs.xml -------------------------------------------------------------------------------- /Nices20/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/values/colors.xml -------------------------------------------------------------------------------- /Nices20/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/values/dimens.xml -------------------------------------------------------------------------------- /Nices20/res/values/instapaper_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/values/instapaper_strings.xml -------------------------------------------------------------------------------- /Nices20/res/values/oks_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/values/oks_strings.xml -------------------------------------------------------------------------------- /Nices20/res/values/ssdk_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/values/ssdk_strings.xml -------------------------------------------------------------------------------- /Nices20/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/values/strings.xml -------------------------------------------------------------------------------- /Nices20/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/res/values/styles.xml -------------------------------------------------------------------------------- /Nices20/src/cn/sharesdk/onekeyshare/CustomerLogo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/cn/sharesdk/onekeyshare/CustomerLogo.java -------------------------------------------------------------------------------- /Nices20/src/cn/sharesdk/onekeyshare/EditPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/cn/sharesdk/onekeyshare/EditPage.java -------------------------------------------------------------------------------- /Nices20/src/cn/sharesdk/onekeyshare/FollowList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/cn/sharesdk/onekeyshare/FollowList.java -------------------------------------------------------------------------------- /Nices20/src/cn/sharesdk/onekeyshare/OnekeyShare.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/cn/sharesdk/onekeyshare/OnekeyShare.java -------------------------------------------------------------------------------- /Nices20/src/cn/sharesdk/onekeyshare/PicViewer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/cn/sharesdk/onekeyshare/PicViewer.java -------------------------------------------------------------------------------- /Nices20/src/cn/sharesdk/onekeyshare/PlatformGridView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/cn/sharesdk/onekeyshare/PlatformGridView.java -------------------------------------------------------------------------------- /Nices20/src/cn/sharesdk/onekeyshare/ShareCore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/cn/sharesdk/onekeyshare/ShareCore.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/activity/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/activity/MainActivity.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/activity/NewsDetailActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/activity/NewsDetailActivity.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/activity/wxapi/WXEntryActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/activity/wxapi/WXEntryActivity.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/activity/yxapi/YXEntryActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/activity/yxapi/YXEntryActivity.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/adapter/NavigationDrawerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/adapter/NavigationDrawerAdapter.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/adapter/NewsListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/adapter/NewsListAdapter.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/adapter/SimpleBaseAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/adapter/SimpleBaseAdapter.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/callback/NavigationDrawerCallbacks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/callback/NavigationDrawerCallbacks.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/constant/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/constant/Constants.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/dao/UserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/dao/UserDao.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/db/FavoriteTableModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/db/FavoriteTableModel.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/db/NewsListModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/db/NewsListModel.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/db/NicesDBHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/db/NicesDBHelper.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/fragment/DetailFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/fragment/DetailFragment.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/fragment/FavoriteFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/fragment/FavoriteFragment.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/fragment/HomeFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/fragment/HomeFragment.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/fragment/MessageFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/fragment/MessageFragment.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/fragment/NavigationDrawerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/fragment/NavigationDrawerFragment.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/fragment/PictureFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/fragment/PictureFragment.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/fragment/SupportFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/fragment/SupportFragment.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/fragment/VideoFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/fragment/VideoFragment.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/model/NavigationItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/model/NavigationItem.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/model/NicesApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/model/NicesApplication.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/model/NicesDetailModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/model/NicesDetailModel.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/model/NicesNewsListEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/model/NicesNewsListEntity.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/util/ArrayUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/util/ArrayUtils.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/util/AssetsUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/util/AssetsUtils.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/util/FileService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/util/FileService.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/util/ImageConfigBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/util/ImageConfigBuilder.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/util/ListUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/util/ListUtils.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/util/ObjectUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/util/ObjectUtils.java -------------------------------------------------------------------------------- /Nices20/src/com/cjj/nices/util/UrlUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/Nices20/src/com/cjj/nices/util/UrlUtils.java -------------------------------------------------------------------------------- /NicesLibrary/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/.classpath -------------------------------------------------------------------------------- /NicesLibrary/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/.project -------------------------------------------------------------------------------- /NicesLibrary/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /NicesLibrary/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /NicesLibrary/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/AndroidManifest.xml -------------------------------------------------------------------------------- /NicesLibrary/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/README.txt -------------------------------------------------------------------------------- /NicesLibrary/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /NicesLibrary/bin/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/bin/R.txt -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/bin/classes/.readme -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/custom/CustomPopWindow$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/NicesLibrary/bin/classes/com/cjj/custom/CustomPopWindow$2.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/custom/CustomPopWindow.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/bin/classes/com/cjj/custom/CustomPopWindow.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/loading/CircularProgress$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/NicesLibrary/bin/classes/com/cjj/loading/CircularProgress$3.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/loading/CircularProgress.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/bin/classes/com/cjj/loading/CircularProgress.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/loading/LoadingCjjLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/bin/classes/com/cjj/loading/LoadingCjjLayout.class -------------------------------------------------------------------------------- /NicesLibrary/bin/classes/com/cjj/utils/NetUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/bin/classes/com/cjj/utils/NetUtils.class -------------------------------------------------------------------------------- /NicesLibrary/bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/bin/jarlist.cache -------------------------------------------------------------------------------- /NicesLibrary/bin/niceslibrary.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/bin/niceslibrary.jar -------------------------------------------------------------------------------- /NicesLibrary/bin/res/crunch/drawable-hdpi/bg_pull_to_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/bin/res/crunch/drawable-hdpi/bg_pull_to_refresh.png -------------------------------------------------------------------------------- /NicesLibrary/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/build.xml -------------------------------------------------------------------------------- /NicesLibrary/gen/android/support/v7/appcompat/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/gen/android/support/v7/appcompat/BuildConfig.java -------------------------------------------------------------------------------- /NicesLibrary/gen/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/gen/android/support/v7/appcompat/R.java -------------------------------------------------------------------------------- /NicesLibrary/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/libs/android-support-v4.jar -------------------------------------------------------------------------------- /NicesLibrary/libs/android-support-v7-appcompat.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/libs/android-support-v7-appcompat.jar -------------------------------------------------------------------------------- /NicesLibrary/libs/cjj-recylerview.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/libs/cjj-recylerview.jar -------------------------------------------------------------------------------- /NicesLibrary/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/local.properties -------------------------------------------------------------------------------- /NicesLibrary/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/proguard-project.txt -------------------------------------------------------------------------------- /NicesLibrary/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/project.properties -------------------------------------------------------------------------------- /NicesLibrary/res/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/anim/abc_fade_in.xml -------------------------------------------------------------------------------- /NicesLibrary/res/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/anim/abc_fade_out.xml -------------------------------------------------------------------------------- /NicesLibrary/res/anim/abc_slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/anim/abc_slide_in_bottom.xml -------------------------------------------------------------------------------- /NicesLibrary/res/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/anim/abc_slide_in_top.xml -------------------------------------------------------------------------------- /NicesLibrary/res/anim/abc_slide_out_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/anim/abc_slide_out_bottom.xml -------------------------------------------------------------------------------- /NicesLibrary/res/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/anim/abc_slide_out_top.xml -------------------------------------------------------------------------------- /NicesLibrary/res/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/anim/fade_in.xml -------------------------------------------------------------------------------- /NicesLibrary/res/anim/fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/anim/fade_out.xml -------------------------------------------------------------------------------- /NicesLibrary/res/color/abc_primary_text_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/color/abc_primary_text_material_dark.xml -------------------------------------------------------------------------------- /NicesLibrary/res/color/abc_primary_text_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/color/abc_primary_text_material_light.xml -------------------------------------------------------------------------------- /NicesLibrary/res/color/abc_search_url_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/color/abc_search_url_text.xml -------------------------------------------------------------------------------- /NicesLibrary/res/color/abc_secondary_text_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/color/abc_secondary_text_material_dark.xml -------------------------------------------------------------------------------- /NicesLibrary/res/color/abc_secondary_text_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/color/abc_secondary_text_material_light.xml -------------------------------------------------------------------------------- /NicesLibrary/res/color/vpi__dark_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/color/vpi__dark_theme.xml -------------------------------------------------------------------------------- /NicesLibrary/res/color/vpi__light_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/color/vpi__light_theme.xml -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/NicesLibrary/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/NicesLibrary/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/NicesLibrary/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/NicesLibrary/res/drawable-hdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/bg_pull_to_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-hdpi/bg_pull_to_refresh.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/reload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-hdpi/reload.jpg -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/vpi__tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-hdpi/vpi__tab_selected_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-hdpi/vpi__tab_unselected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-hdpi/vpi__tab_unselected_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/NicesLibrary/res/drawable-mdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-xhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-xxhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /NicesLibrary/res/drawable/abc_btn_check_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable/abc_btn_check_material.xml -------------------------------------------------------------------------------- /NicesLibrary/res/drawable/abc_btn_radio_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable/abc_btn_radio_material.xml -------------------------------------------------------------------------------- /NicesLibrary/res/drawable/abc_cab_background_internal_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable/abc_cab_background_internal_bg.xml -------------------------------------------------------------------------------- /NicesLibrary/res/drawable/abc_cab_background_top_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable/abc_cab_background_top_material.xml -------------------------------------------------------------------------------- /NicesLibrary/res/drawable/abc_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable/abc_edit_text_material.xml -------------------------------------------------------------------------------- /NicesLibrary/res/drawable/abc_item_background_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable/abc_item_background_holo_dark.xml -------------------------------------------------------------------------------- /NicesLibrary/res/drawable/abc_item_background_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable/abc_item_background_holo_light.xml -------------------------------------------------------------------------------- /NicesLibrary/res/drawable/abc_list_selector_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable/abc_list_selector_holo_dark.xml -------------------------------------------------------------------------------- /NicesLibrary/res/drawable/abc_list_selector_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable/abc_list_selector_holo_light.xml -------------------------------------------------------------------------------- /NicesLibrary/res/drawable/abc_switch_thumb_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable/abc_switch_thumb_material.xml -------------------------------------------------------------------------------- /NicesLibrary/res/drawable/abc_tab_indicator_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable/abc_tab_indicator_material.xml -------------------------------------------------------------------------------- /NicesLibrary/res/drawable/abc_textfield_search_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable/abc_textfield_search_material.xml -------------------------------------------------------------------------------- /NicesLibrary/res/drawable/button_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable/button_selector.xml -------------------------------------------------------------------------------- /NicesLibrary/res/drawable/vpi__tab_indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/drawable/vpi__tab_indicator.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout-v11/abc_screen_content_include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout-v11/abc_screen_content_include.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_action_bar_title_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_action_bar_title_item.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_action_bar_up_container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_action_bar_up_container.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_action_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_action_menu_item_layout.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_action_menu_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_action_menu_layout.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_action_mode_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_action_mode_bar.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_activity_chooser_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_activity_chooser_view.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_activity_chooser_view_include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_activity_chooser_view_include.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_expanded_menu_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_expanded_menu_layout.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_list_menu_item_checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_list_menu_item_checkbox.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_list_menu_item_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_list_menu_item_icon.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_list_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_list_menu_item_layout.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_list_menu_item_radio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_list_menu_item_radio.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_popup_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_popup_menu_item_layout.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_screen_content_include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_screen_content_include.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_screen_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_screen_simple.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_screen_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_screen_toolbar.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_search_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_search_view.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/abc_simple_dropdown_hint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/abc_simple_dropdown_hint.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/dialog_custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/dialog_custom.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/dialog_list_custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/dialog_list_custom.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/item_dialog_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/item_dialog_list.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/view_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/view_empty.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/view_fail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/view_fail.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/view_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/view_loading.xml -------------------------------------------------------------------------------- /NicesLibrary/res/layout/view_pop_window.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/layout/view_pop_window.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-af/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-am/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-am/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-ar/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-bg/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-bn-rBD/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-bn-rBD/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-ca/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-cs/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-da/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-de/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-el/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-en-rGB/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-en-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-en-rIN/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-es-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-es-rUS/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-es/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-et-rEE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-et-rEE/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-eu-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-eu-rES/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-fa/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-fi/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-fr-rCA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-fr-rCA/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-fr/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-gl-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-gl-rES/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-hi/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-hr/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-hu/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-hy-rAM/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-hy-rAM/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-in/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-is-rIS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-is-rIS/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-it/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-iw/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-ja/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-ka-rGE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-ka-rGE/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-kk-rKZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-kk-rKZ/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-km-rKH/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-km-rKH/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-kn-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-kn-rIN/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-ko/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-ky-rKG/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-ky-rKG/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-land/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-land/bools.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-land/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-land/config.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-land/dimens.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-land/dimens_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-land/dimens_material.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-large/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-large/bools.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-large/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-large/config.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-large/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-large/dimens.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-large/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-large/themes_base.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-lo-rLA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-lo-rLA/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-lt/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-lv/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-mk-rMK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-mk-rMK/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-ml-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-ml-rIN/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-mn-rMN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-mn-rMN/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-mr-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-mr-rIN/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-ms-rMY/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-ms-rMY/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-my-rMM/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-my-rMM/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-nb/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-ne-rNP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-ne-rNP/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-nl/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-pl/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-port/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-port/bools.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-pt/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-ro/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-ru/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-si-rLK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-si-rLK/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-sk/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-sl/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-sr/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-sv/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-sw/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-sw600dp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-sw600dp/config.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-ta-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-ta-rIN/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-te-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-te-rIN/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-th/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-tl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-tl/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-tr/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-uk/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-ur-rPK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-ur-rPK/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-uz-rUZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-uz-rUZ/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-v11/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-v11/styles_base.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-v11/styles_base_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-v11/styles_base_text.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-v11/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-v11/themes_base.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-v14/styles.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-v14/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-v14/themes_base.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-v17/styles_rtl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-v17/styles_rtl.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-v21/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-v21/styles_base.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-v21/styles_base_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-v21/styles_base_text.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-v21/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-v21/themes_base.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-vi/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-w360dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-w360dp/dimens.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-w480dp/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-w480dp/bools.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-w480dp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-w480dp/config.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-w500dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-w500dp/dimens.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-w600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-w600dp/dimens.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-w720dp/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-w720dp/bools.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-xlarge-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-xlarge-land/dimens.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-xlarge/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-xlarge/bools.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-xlarge/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-xlarge/dimens.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values-zu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values-zu/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/attributes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/attributes.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/attrs.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/attrs_my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/attrs_my.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/bools.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/colors.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/colors_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/colors_material.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/colors_my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/colors_my.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/config.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/dimens.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/dimens_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/dimens_material.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/ids.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/strings.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/strings_my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/strings_my.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/styles.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/styles_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/styles_base.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/styles_base_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/styles_base_text.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/styles_rtl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/styles_rtl.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/themes.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/themes_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/themes_base.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/vpi__attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/vpi__attrs.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/vpi__colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/vpi__colors.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/vpi__defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/vpi__defaults.xml -------------------------------------------------------------------------------- /NicesLibrary/res/values/vpi__styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/res/values/vpi__styles.xml -------------------------------------------------------------------------------- /NicesLibrary/src/.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/.readme -------------------------------------------------------------------------------- /NicesLibrary/src/com/baoyz/swipemenulistview/SwipeMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/com/baoyz/swipemenulistview/SwipeMenu.java -------------------------------------------------------------------------------- /NicesLibrary/src/com/cjj/callback/ReLoadCallbackListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/com/cjj/callback/ReLoadCallbackListener.java -------------------------------------------------------------------------------- /NicesLibrary/src/com/cjj/custom/CustomPopWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/com/cjj/custom/CustomPopWindow.java -------------------------------------------------------------------------------- /NicesLibrary/src/com/cjj/loading/CircularProgress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/com/cjj/loading/CircularProgress.java -------------------------------------------------------------------------------- /NicesLibrary/src/com/cjj/loading/LoadingCjjLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/com/cjj/loading/LoadingCjjLayout.java -------------------------------------------------------------------------------- /NicesLibrary/src/com/cjj/utils/NetUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/com/cjj/utils/NetUtils.java -------------------------------------------------------------------------------- /NicesLibrary/src/com/viewpagerindicator/IconPageIndicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/com/viewpagerindicator/IconPageIndicator.java -------------------------------------------------------------------------------- /NicesLibrary/src/com/viewpagerindicator/IconPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/com/viewpagerindicator/IconPagerAdapter.java -------------------------------------------------------------------------------- /NicesLibrary/src/com/viewpagerindicator/IcsLinearLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/com/viewpagerindicator/IcsLinearLayout.java -------------------------------------------------------------------------------- /NicesLibrary/src/com/viewpagerindicator/LinePageIndicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/com/viewpagerindicator/LinePageIndicator.java -------------------------------------------------------------------------------- /NicesLibrary/src/com/viewpagerindicator/PageIndicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/com/viewpagerindicator/PageIndicator.java -------------------------------------------------------------------------------- /NicesLibrary/src/com/viewpagerindicator/TabPageIndicator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/com/viewpagerindicator/TabPageIndicator.java -------------------------------------------------------------------------------- /NicesLibrary/src/uk/me/lewisdeane/ldialogs/BaseDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/uk/me/lewisdeane/ldialogs/BaseDialog.java -------------------------------------------------------------------------------- /NicesLibrary/src/uk/me/lewisdeane/ldialogs/CustomDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/NicesLibrary/src/uk/me/lewisdeane/ldialogs/CustomDialog.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/README.md -------------------------------------------------------------------------------- /VolleyLibrary/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/.classpath -------------------------------------------------------------------------------- /VolleyLibrary/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/.project -------------------------------------------------------------------------------- /VolleyLibrary/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /VolleyLibrary/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /VolleyLibrary/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/Android.mk -------------------------------------------------------------------------------- /VolleyLibrary/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/AndroidManifest.xml -------------------------------------------------------------------------------- /VolleyLibrary/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /VolleyLibrary/bin/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/R.txt -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/android/volley/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/android/volley/BuildConfig.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/android/volley/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/VolleyLibrary/bin/classes/com/android/volley/R$string.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/android/volley/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/android/volley/R.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Cache$Entry.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/Cache$Entry.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Cache.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/Cache.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/CacheDispatcher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/CacheDispatcher.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Network.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/Network.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/NetworkError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/NetworkError.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/NetworkResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/NetworkResponse.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/ParseError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/ParseError.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Request$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/Request$Method.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Request.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/Request.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/RequestQueue$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/RequestQueue$1.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/RequestQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/RequestQueue.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/Response.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/Response.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/RetryPolicy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/RetryPolicy.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/ServerError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/ServerError.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/TimeoutError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/TimeoutError.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/VolleyError.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/VolleyError.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/VolleyLog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/VolleyLog.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/me/CjjVolley.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/me/CjjVolley.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/NoCache.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/toolbox/NoCache.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/classes/com/cjj/volley/toolbox/Volley.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/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/HEAD/VolleyLibrary/bin/classes/com/cjj/volley/utils/LogUtil.class -------------------------------------------------------------------------------- /VolleyLibrary/bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/jarlist.cache -------------------------------------------------------------------------------- /VolleyLibrary/bin/volleylibrary.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/bin/volleylibrary.jar -------------------------------------------------------------------------------- /VolleyLibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/build.gradle -------------------------------------------------------------------------------- /VolleyLibrary/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/build.xml -------------------------------------------------------------------------------- /VolleyLibrary/custom_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/custom_rules.xml -------------------------------------------------------------------------------- /VolleyLibrary/gen/com/android/volley/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/gen/com/android/volley/BuildConfig.java -------------------------------------------------------------------------------- /VolleyLibrary/gen/com/android/volley/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/gen/com/android/volley/R.java -------------------------------------------------------------------------------- /VolleyLibrary/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/libs/android-support-v4.jar -------------------------------------------------------------------------------- /VolleyLibrary/libs/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/libs/gson-2.2.4.jar -------------------------------------------------------------------------------- /VolleyLibrary/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/local.properties -------------------------------------------------------------------------------- /VolleyLibrary/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/proguard-project.txt -------------------------------------------------------------------------------- /VolleyLibrary/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/proguard.cfg -------------------------------------------------------------------------------- /VolleyLibrary/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/project.properties -------------------------------------------------------------------------------- /VolleyLibrary/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/res/values/strings.xml -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/AuthFailureError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/AuthFailureError.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/Cache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/Cache.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/CacheDispatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/CacheDispatcher.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/DefaultRetryPolicy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/DefaultRetryPolicy.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/ExecutorDelivery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/ExecutorDelivery.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/Network.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/Network.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/NetworkDispatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/NetworkDispatcher.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/NetworkError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/NetworkError.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/NetworkResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/NetworkResponse.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/NoConnectionError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/NoConnectionError.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/ParseError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/ParseError.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/Request.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/RequestQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/RequestQueue.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/Response.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/Response.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/ResponseDelivery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/ResponseDelivery.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/RetryPolicy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/RetryPolicy.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/ServerError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/ServerError.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/TimeoutError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/TimeoutError.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/VolleyError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/VolleyError.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/VolleyLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/VolleyLog.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/cache/BitmapCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/cache/BitmapCache.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/me/CjjVolley.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/me/CjjVolley.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/Authenticator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/Authenticator.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/BasicNetwork.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/BasicNetwork.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/ByteArrayPool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/ByteArrayPool.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/DiskBasedCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/DiskBasedCache.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/HttpClientStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/HttpClientStack.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/HttpHeaderParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/HttpHeaderParser.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/HttpStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/HttpStack.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/HurlStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/HurlStack.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/ImageLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/ImageLoader.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/ImageRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/ImageRequest.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/JsonArrayRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/JsonArrayRequest.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/JsonRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/JsonRequest.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/NetworkImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/NetworkImageView.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/NoCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/NoCache.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/RequestFuture.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/RequestFuture.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/StringRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/StringRequest.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/toolbox/Volley.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/toolbox/Volley.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/utils/LogUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/utils/LogUtil.java -------------------------------------------------------------------------------- /VolleyLibrary/src/com/cjj/volley/utils/VolleyErrorHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/src/com/cjj/volley/utils/VolleyErrorHelper.java -------------------------------------------------------------------------------- /VolleyLibrary/tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/tests/.classpath -------------------------------------------------------------------------------- /VolleyLibrary/tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/tests/.project -------------------------------------------------------------------------------- /VolleyLibrary/tests/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/tests/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /VolleyLibrary/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/tests/Android.mk -------------------------------------------------------------------------------- /VolleyLibrary/tests/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/tests/AndroidManifest.xml -------------------------------------------------------------------------------- /VolleyLibrary/tests/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/tests/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /VolleyLibrary/tests/bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/tests/bin/jarlist.cache -------------------------------------------------------------------------------- /VolleyLibrary/tests/gen/com/android/volley/tests/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/tests/gen/com/android/volley/tests/R.java -------------------------------------------------------------------------------- /VolleyLibrary/tests/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/tests/libs/android-support-v4.jar -------------------------------------------------------------------------------- /VolleyLibrary/tests/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/tests/project.properties -------------------------------------------------------------------------------- /VolleyLibrary/tests/res/raw/large_jpeg_1024_500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/tests/res/raw/large_jpeg_1024_500.jpg -------------------------------------------------------------------------------- /VolleyLibrary/tests/src/com/android/volley/RequestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/tests/src/com/android/volley/RequestTest.java -------------------------------------------------------------------------------- /VolleyLibrary/tests/src/com/android/volley/mock/MockCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/android-cjj/nices/HEAD/VolleyLibrary/tests/src/com/android/volley/mock/MockCache.java --------------------------------------------------------------------------------