├── .classpath ├── .gitattributes ├── .gitignore ├── .project ├── AndroidManifest.xml ├── README.md ├── libs └── fastjson-1.1.26-android.jar ├── lint.xml ├── proguard-project.txt ├── proguard ├── dump.txt ├── mapping.txt ├── seeds.txt └── usage.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── action_settings.png │ ├── btn_default_disabled_focused_holo_light.9.png │ ├── btn_default_disabled_holo_light.9.png │ ├── btn_default_focused_holo_light.9.png │ ├── btn_default_normal_holo_light.9.png │ ├── btn_default_pressed_holo_light.9.png │ ├── coffee.png │ ├── collections_view_as_grid.png │ ├── collections_view_as_list.png │ ├── default_user_head_img.png │ ├── edit.png │ ├── forum_new.png │ ├── hsegmentation.png │ ├── item_bg.9.png │ ├── item_bg_pressed.9.png │ ├── kanxue.png │ ├── kanxue_splash.png │ ├── kanxue_title.png │ ├── lock.png │ ├── logout_dark.png │ ├── navigation_back.png │ ├── navigation_collapse.png │ ├── navigation_expand.png │ ├── navigation_next_item.png │ ├── navigation_previous_item.png │ ├── navigation_refresh.png │ ├── segmentation.png │ ├── social_add_person_dark.png │ ├── social_send_now.png │ ├── social_send_now_dark.png │ ├── spinner_ab_default_holo_light.9.png │ ├── spinner_ab_disabled_holo_light.9.png │ ├── spinner_ab_focused_holo_light.9.png │ ├── spinner_ab_pressed_holo_light.9.png │ ├── textfield_activated_holo_light.9.png │ ├── textfield_default_holo_light.9.png │ ├── textfield_disabled_focused_holo_light.9.png │ ├── textfield_disabled_holo_light.9.png │ └── xlistview_arrow.png ├── drawable-mdpi │ ├── action_settings.png │ ├── btn_default_disabled_focused_holo_light.9.png │ ├── btn_default_disabled_holo_light.9.png │ ├── btn_default_focused_holo_light.9.png │ ├── btn_default_normal_holo_light.9.png │ ├── btn_default_pressed_holo_light.9.png │ ├── coffee.png │ ├── collections_view_as_grid.png │ ├── collections_view_as_list.png │ ├── default_user_head_img.png │ ├── edit.png │ ├── forum_new.png │ ├── kanxue.png │ ├── kanxue_splash.png │ ├── kanxue_title.png │ ├── lock.png │ ├── logout_dark.png │ ├── navigation_back.png │ ├── navigation_collapse.png │ ├── navigation_expand.png │ ├── navigation_next_item.png │ ├── navigation_refresh.png │ ├── social_add_person_dark.png │ ├── social_send_now.png │ ├── social_send_now_dark.png │ ├── spinner_ab_default_holo_light.9.png │ ├── spinner_ab_disabled_holo_light.9.png │ ├── spinner_ab_focused_holo_light.9.png │ ├── spinner_ab_pressed_holo_light.9.png │ ├── textfield_activated_holo_light.9.png │ ├── textfield_default_holo_light.9.png │ ├── textfield_disabled_focused_holo_light.9.png │ └── textfield_disabled_holo_light.9.png ├── drawable-xhdpi │ ├── action_settings.png │ ├── btn_default_disabled_focused_holo_light.9.png │ ├── btn_default_disabled_holo_light.9.png │ ├── btn_default_focused_holo_light.9.png │ ├── btn_default_normal_holo_light.9.png │ ├── btn_default_pressed_holo_light.9.png │ ├── coffee.png │ ├── collections_view_as_grid.png │ ├── collections_view_as_list.png │ ├── default_user_head_img.png │ ├── edit.png │ ├── forum_new.png │ ├── kanxue.png │ ├── kanxue_splash.png │ ├── kanxue_title.png │ ├── list_divider_line.png │ ├── lock.png │ ├── logout_dark.png │ ├── navigation_back.png │ ├── navigation_collapse.png │ ├── navigation_expand.png │ ├── navigation_next_item.png │ ├── navigation_refresh.png │ ├── social_add_person_dark.png │ ├── social_send_now.png │ ├── social_send_now_dark.png │ ├── spinner_ab_default_holo_light.9.png │ ├── spinner_ab_disabled_holo_light.9.png │ ├── spinner_ab_focused_holo_light.9.png │ ├── spinner_ab_pressed_holo_light.9.png │ ├── textfield_activated_holo_light.9.png │ ├── textfield_default_holo_light.9.png │ ├── textfield_disabled_focused_holo_light.9.png │ └── textfield_disabled_holo_light.9.png ├── drawable │ ├── attament_bg.xml │ ├── btn_default_holo_light.xml │ ├── edit_text_holo_light.xml │ ├── forum_item.xml │ ├── login_btn.xml │ ├── normal_action_btn.xml │ ├── normal_item.xml │ ├── quick_reply_btn.xml │ ├── spinner_ab_holo_light.xml │ └── tab_bg.xml ├── layout │ ├── about_page.xml │ ├── feedback_page.xml │ ├── forum_display_item.xml │ ├── forum_display_page.xml │ ├── forum_home_item.xml │ ├── forum_home_item_header.xml │ ├── forum_home_page.xml │ ├── forum_tab.xml │ ├── login_page.xml │ ├── main.xml │ ├── new_thread_page.xml │ ├── refresh_action_btn.xml │ ├── setting_page.xml │ ├── show_thread_item.xml │ ├── show_thread_page.xml │ ├── show_thread_title_header.xml │ ├── show_user_info.xml │ ├── splash.xml │ ├── thread_item_footer.xml │ ├── xlistview_footer.xml │ └── xlistview_header.xml └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src ├── android └── util │ ├── Base64.java │ ├── Base64DataException.java │ ├── Base64InputStream.java │ └── Base64OutputStream.java └── com └── pediy └── bbs └── kanxue ├── AboutPage.java ├── App.java ├── FeedbackPage.java ├── ForumDisplayPage.java ├── ForumHomePage.java ├── LoginPage.java ├── MainActivity.java ├── NewThreadPage.java ├── SettingPage.java ├── ShowThreadPage.java ├── SplashActivity.java ├── UserInfoPage.java ├── net ├── Api.java └── HttpClientUtil.java ├── util ├── CookieStorage.java ├── ObjStorage.java └── SimpleHASH.java └── widget ├── AmazingAdapter.java ├── AmazingListView.java ├── ImageViewWithCache.java ├── RefreshActionBtn.java ├── ThreadItemFooter.java ├── XListView.java ├── XListViewFooter.java └── XListViewHeader.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################# 2 | ## Eclipse 3 | ################# 4 | 5 | *.pydevproject 6 | .metadata 7 | bin/ 8 | gen/ 9 | tmp/ 10 | *.tmp 11 | *.bak 12 | *.swp 13 | *~.nib 14 | local.properties 15 | .settings/ 16 | .loadpath 17 | 18 | # External tool builders 19 | .externalToolBuilders/ 20 | 21 | # Locally stored "Eclipse launch configurations" 22 | *.launch 23 | 24 | # CDT-specific 25 | .cproject 26 | 27 | # PDT-specific 28 | .buildpath 29 | 30 | 31 | ################# 32 | ## Visual Studio 33 | ################# 34 | 35 | ## Ignore Visual Studio temporary files, build results, and 36 | ## files generated by popular Visual Studio add-ons. 37 | 38 | # User-specific files 39 | *.suo 40 | *.user 41 | *.sln.docstates 42 | 43 | # Build results 44 | [Dd]ebug/ 45 | [Rr]elease/ 46 | *_i.c 47 | *_p.c 48 | *.ilk 49 | *.meta 50 | *.obj 51 | *.pch 52 | *.pdb 53 | *.pgc 54 | *.pgd 55 | *.rsp 56 | *.sbr 57 | *.tlb 58 | *.tli 59 | *.tlh 60 | *.tmp 61 | *.vspscc 62 | .builds 63 | *.dotCover 64 | 65 | ## TODO: If you have NuGet Package Restore enabled, uncomment this 66 | #packages/ 67 | 68 | # Visual C++ cache files 69 | ipch/ 70 | *.aps 71 | *.ncb 72 | *.opensdf 73 | *.sdf 74 | 75 | # Visual Studio profiler 76 | *.psess 77 | *.vsp 78 | 79 | # ReSharper is a .NET coding add-in 80 | _ReSharper* 81 | 82 | # Installshield output folder 83 | [Ee]xpress 84 | 85 | # DocProject is a documentation generator add-in 86 | DocProject/buildhelp/ 87 | DocProject/Help/*.HxT 88 | DocProject/Help/*.HxC 89 | DocProject/Help/*.hhc 90 | DocProject/Help/*.hhk 91 | DocProject/Help/*.hhp 92 | DocProject/Help/Html2 93 | DocProject/Help/html 94 | 95 | # Click-Once directory 96 | publish 97 | 98 | # Others 99 | [Bb]in 100 | [Oo]bj 101 | sql 102 | TestResults 103 | *.Cache 104 | ClientBin 105 | stylecop.* 106 | ~$* 107 | *.dbmdl 108 | Generated_Code #added for RIA/Silverlight projects 109 | 110 | # Backup & report files from converting an old project file to a newer 111 | # Visual Studio version. Backup files are not needed, because we have git ;-) 112 | _UpgradeReport_Files/ 113 | Backup*/ 114 | UpgradeLog*.XML 115 | 116 | 117 | 118 | ############ 119 | ## Windows 120 | ############ 121 | 122 | # Windows image file caches 123 | Thumbs.db 124 | 125 | # Folder config file 126 | Desktop.ini 127 | 128 | 129 | ############# 130 | ## Python 131 | ############# 132 | 133 | *.py[co] 134 | 135 | # Packages 136 | *.egg 137 | *.egg-info 138 | dist 139 | build 140 | eggs 141 | parts 142 | bin 143 | var 144 | sdist 145 | develop-eggs 146 | .installed.cfg 147 | 148 | # Installer logs 149 | pip-log.txt 150 | 151 | # Unit test / coverage reports 152 | .coverage 153 | .tox 154 | 155 | #Translations 156 | *.mo 157 | 158 | #Mr Developer 159 | .mr.developer.cfg 160 | 161 | # Mac crap 162 | .DS_Store 163 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Kanxue 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 19 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # **看雪安全论坛 Android 客户端** # 3 | 4 | 本项目基于看雪安全论坛开放的接口开发完成。可通过在看雪各页面url后添加styleid=12参数查看各页面返回的JSON数据。项目中采用了一些经过修改的第三方控件,如AmazingListView和XListView。 5 | 6 | **源码结构**
7 | 8 | > src
9 | > ├ android.util
10 | > ├ com.pediy.bbs.kanxue
11 | > ├ com.pediy.bbs.kanxue.net
12 | > ├ com.pediy.bbs.kanxue.util
13 | > ├ com.pediy.bbs.kanxue.widget
14 | 15 | 16 | - android.util — 为了兼容低版本,从安卓sdk中复制出来的base64工具包 17 | - com.pediy.bbs.kanxue — 界面包 18 | - com.pediy.bbs.kanxue.net — 网络包 19 | - com.pediy.bbs.kanxue.util — 工具包 20 | - com.pediy.bbs.kanxue.widget — 控件包 21 | 22 | > libs
23 | > └ fastjson-1.1.26-android.jar
24 | 25 | - fastjson-1.1.26-android.jar — 快速的json数据解析包 26 | 27 | **看雪开放的api文档地址:**http://bbs.pediy.com/showthread.php?t=163280 28 | 29 | -------------------------------------------------------------------------------- /libs/fastjson-1.1.26-android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/libs/fastjson-1.1.26-android.jar -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /proguard/dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/proguard/dump.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-15 15 | -------------------------------------------------------------------------------- /res/drawable-hdpi/action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/action_settings.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/coffee.png -------------------------------------------------------------------------------- /res/drawable-hdpi/collections_view_as_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/collections_view_as_grid.png -------------------------------------------------------------------------------- /res/drawable-hdpi/collections_view_as_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/collections_view_as_list.png -------------------------------------------------------------------------------- /res/drawable-hdpi/default_user_head_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/default_user_head_img.png -------------------------------------------------------------------------------- /res/drawable-hdpi/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/edit.png -------------------------------------------------------------------------------- /res/drawable-hdpi/forum_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/forum_new.png -------------------------------------------------------------------------------- /res/drawable-hdpi/hsegmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/hsegmentation.png -------------------------------------------------------------------------------- /res/drawable-hdpi/item_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/item_bg.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/item_bg_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/item_bg_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/kanxue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/kanxue.png -------------------------------------------------------------------------------- /res/drawable-hdpi/kanxue_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/kanxue_splash.png -------------------------------------------------------------------------------- /res/drawable-hdpi/kanxue_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/kanxue_title.png -------------------------------------------------------------------------------- /res/drawable-hdpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/lock.png -------------------------------------------------------------------------------- /res/drawable-hdpi/logout_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/logout_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi/navigation_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/navigation_back.png -------------------------------------------------------------------------------- /res/drawable-hdpi/navigation_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/navigation_collapse.png -------------------------------------------------------------------------------- /res/drawable-hdpi/navigation_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/navigation_expand.png -------------------------------------------------------------------------------- /res/drawable-hdpi/navigation_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/navigation_next_item.png -------------------------------------------------------------------------------- /res/drawable-hdpi/navigation_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/navigation_previous_item.png -------------------------------------------------------------------------------- /res/drawable-hdpi/navigation_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/navigation_refresh.png -------------------------------------------------------------------------------- /res/drawable-hdpi/segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/segmentation.png -------------------------------------------------------------------------------- /res/drawable-hdpi/social_add_person_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/social_add_person_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi/social_send_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/social_send_now.png -------------------------------------------------------------------------------- /res/drawable-hdpi/social_send_now_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/social_send_now_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi/spinner_ab_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/spinner_ab_default_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/spinner_ab_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/spinner_ab_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/spinner_ab_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/spinner_ab_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/spinner_ab_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/spinner_ab_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/textfield_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/textfield_activated_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/textfield_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/textfield_default_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/textfield_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/textfield_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/textfield_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/textfield_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/xlistview_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-hdpi/xlistview_arrow.png -------------------------------------------------------------------------------- /res/drawable-mdpi/action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/action_settings.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/coffee.png -------------------------------------------------------------------------------- /res/drawable-mdpi/collections_view_as_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/collections_view_as_grid.png -------------------------------------------------------------------------------- /res/drawable-mdpi/collections_view_as_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/collections_view_as_list.png -------------------------------------------------------------------------------- /res/drawable-mdpi/default_user_head_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/default_user_head_img.png -------------------------------------------------------------------------------- /res/drawable-mdpi/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/edit.png -------------------------------------------------------------------------------- /res/drawable-mdpi/forum_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/forum_new.png -------------------------------------------------------------------------------- /res/drawable-mdpi/kanxue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/kanxue.png -------------------------------------------------------------------------------- /res/drawable-mdpi/kanxue_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/kanxue_splash.png -------------------------------------------------------------------------------- /res/drawable-mdpi/kanxue_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/kanxue_title.png -------------------------------------------------------------------------------- /res/drawable-mdpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/lock.png -------------------------------------------------------------------------------- /res/drawable-mdpi/logout_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/logout_dark.png -------------------------------------------------------------------------------- /res/drawable-mdpi/navigation_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/navigation_back.png -------------------------------------------------------------------------------- /res/drawable-mdpi/navigation_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/navigation_collapse.png -------------------------------------------------------------------------------- /res/drawable-mdpi/navigation_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/navigation_expand.png -------------------------------------------------------------------------------- /res/drawable-mdpi/navigation_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/navigation_next_item.png -------------------------------------------------------------------------------- /res/drawable-mdpi/navigation_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/navigation_refresh.png -------------------------------------------------------------------------------- /res/drawable-mdpi/social_add_person_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/social_add_person_dark.png -------------------------------------------------------------------------------- /res/drawable-mdpi/social_send_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/social_send_now.png -------------------------------------------------------------------------------- /res/drawable-mdpi/social_send_now_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/social_send_now_dark.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spinner_ab_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/spinner_ab_default_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spinner_ab_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/spinner_ab_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spinner_ab_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/spinner_ab_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spinner_ab_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/spinner_ab_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/textfield_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/textfield_activated_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/textfield_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/textfield_default_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/textfield_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/textfield_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/textfield_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-mdpi/textfield_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/action_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/action_settings.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_default_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/btn_default_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_default_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/btn_default_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_default_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/btn_default_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_default_normal_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/btn_default_normal_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_default_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/btn_default_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/coffee.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/collections_view_as_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/collections_view_as_grid.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/collections_view_as_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/collections_view_as_list.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/default_user_head_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/default_user_head_img.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/edit.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/forum_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/forum_new.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/kanxue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/kanxue.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/kanxue_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/kanxue_splash.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/kanxue_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/kanxue_title.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_divider_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/list_divider_line.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/lock.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/logout_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/logout_dark.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/navigation_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/navigation_back.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/navigation_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/navigation_collapse.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/navigation_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/navigation_expand.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/navigation_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/navigation_next_item.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/navigation_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/navigation_refresh.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/social_add_person_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/social_add_person_dark.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/social_send_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/social_send_now.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/social_send_now_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/social_send_now_dark.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/spinner_ab_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/spinner_ab_default_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/spinner_ab_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/spinner_ab_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/spinner_ab_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/spinner_ab_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/spinner_ab_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/spinner_ab_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/textfield_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/textfield_activated_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/textfield_default_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/textfield_default_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/textfield_disabled_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/textfield_disabled_focused_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/textfield_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanxue-team/kanxue-android-app/41dafc491e9513f31c55de13ebb43a63e3e59827/res/drawable-xhdpi/textfield_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable/attament_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /res/drawable/btn_default_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 20 | 22 | 24 | 26 | 28 | 30 | 32 | 33 | -------------------------------------------------------------------------------- /res/drawable/edit_text_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /res/drawable/forum_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/drawable/login_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/drawable/normal_action_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/drawable/normal_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/drawable/quick_reply_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/drawable/spinner_ab_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 20 | 22 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /res/drawable/tab_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /res/layout/about_page.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 10 | 11 | 16 | 17 | 26 | 27 | 33 | 34 | 43 | 44 | 45 | 46 | 50 | 51 | 56 | 57 | 64 | 65 | 71 | 72 | 78 | 79 | 84 | 85 | 86 | 87 | 94 | 95 | 100 | 101 | 108 | 109 | 116 | 117 | 118 | 119 | 127 | 128 | 129 | 130 | 131 | -------------------------------------------------------------------------------- /res/layout/feedback_page.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | 13 | 18 | 19 | 29 | 30 | 36 | 37 | 48 | 49 | 50 | 55 | 56 | 64 | 65 | 66 | 67 | 68 | 78 | 79 | 80 | 81 | 82 | 93 | 94 | 104 | 105 | -------------------------------------------------------------------------------- /res/layout/forum_display_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | 20 | 21 | 27 | 28 | 37 | 38 | 42 | 43 | 50 | 51 | 60 | 61 | 69 | 70 | 79 | 80 | 89 | 90 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /res/layout/forum_display_page.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 14 | 15 | 20 | 21 | 29 | 30 | 39 | 40 | 46 | 47 | 56 | 57 | 58 | 59 | 64 | 65 | 74 | 75 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 94 | 95 | 104 | 105 | 106 | 107 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /res/layout/forum_home_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 14 | 15 | 19 | 20 | 27 | 28 | 34 | 35 | 41 | 42 | 49 | 50 | 51 | 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /res/layout/forum_home_item_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | -------------------------------------------------------------------------------- /res/layout/forum_home_page.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 15 | 16 | 22 | 23 | 29 | 30 | 39 | 40 | 41 | 42 | 43 | 47 | 48 | 54 | 55 | 56 | 57 | 64 | 65 |