├── .gitignore ├── LICENSE ├── README.md ├── app ├── AndroidManifest.xml ├── build.gradle ├── libs │ ├── poi-3.14-20160307.jar │ ├── poi-ooxml-3.14-20160307.jar │ ├── poi-scratchpad-3.14-20160307.jar │ └── xmlbeans-2.6.0.jar ├── proguard-rules.pro ├── project.properties ├── res │ ├── drawable-xhdpi │ │ ├── bbs_init_arrow.png │ │ ├── bbs_init_bg.png │ │ ├── bbs_init_forum.png │ │ ├── bbs_init_key.png │ │ ├── bbs_init_secret.png │ │ └── splash_img.png │ ├── drawable │ │ └── bbs_init_bg_btnrectgrey.xml │ ├── layout │ │ ├── activity_init.xml │ │ ├── activity_main.xml │ │ ├── activity_splash.xml │ │ └── layout_test.xml │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ └── strings.xml └── src │ └── com │ └── mob │ └── bbssdk │ └── sample │ ├── InitActivity.java │ ├── MainActivity.java │ ├── SampleApplication.java │ ├── SplashActivity.java │ ├── TestActivity.java │ ├── utils │ └── OfficeConverter.java │ └── viewer │ ├── PageOfficeViewer.java │ ├── PagePDFViewer.java │ └── PageVideoViewer.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── sample.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /captures 3 | 4 | # Built application files 5 | *.apk 6 | *.ap_ 7 | app/*.zip 8 | 9 | # Files for the Dalvik VM 10 | *.dex 11 | 12 | # Java class files 13 | *.class 14 | 15 | # Generated files 16 | bin/ 17 | gen/ 18 | 19 | # Gradle files 20 | .gradle/ 21 | build/ 22 | 23 | # Local configuration file (sdk path, etc) 24 | local.properties 25 | 26 | # Proguard folder generated by Eclipse 27 | proguard/ 28 | 29 | # Log Files 30 | *.log 31 | 32 | #IDEA 33 | #/.idea/workspace.xml 34 | #/.idea/libraries 35 | .idea/ 36 | *.iml 37 | *.ipr 38 | *.iws 39 | 40 | # hprof file 41 | *.hprof 42 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BBSSDK-for-Android/TEST 2 |
3 | 欢迎查看Android端BBSSDK的Sample工程。

4 | 这个工程演示了如何使用BBSSDK快速地为论坛网站构建出全新的APP。     5 |

6 | 7 | 8 | [点击下载BBSSDK](http://www.mob.com/downloadDetail/BBSSDK/android)   9 | 10 | [点击查看BBSSDK集成指南](http://wiki.mob.com/快速集成/) 11 | 12 |
13 | 14 | **工程说明:**

15 | app工程编译出的安装包大小是20M左右,其中
16 | - 为了支持附件打开pdf文件功能,工程里面引入了 [AndroidPdfViewer](https://github.com/barteksc/AndroidPdfViewer): 17 | ``` 18 | compile 'com.github.barteksc:android-pdf-viewer:2.4.0' 19 | ``` 20 | 这个库会让安装包增加16M左右。 21 | 22 | - 为了支持附件打开微软的office文档功能,工程里面引入了 [Apache poi](https://github.com/apache/poi) 和 [Apache xmlbeans](https://github.com/apache/xmlbeans): 23 | ``` 24 | poi-*.jar 25 | poi-ooxml-*.jar 26 | poi-scrachpad-*.jar 27 | ``` 28 | ``` 29 | xmlbeans-*.jar 30 | ``` 31 | 这些库会让安装包增加3M左右。 -------------------------------------------------------------------------------- /app/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 23 | 24 | 31 | 32 | 35 | 36 | 37 | 38 | 39 | 40 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 66 | 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | apply plugin: 'com.mob.sdk' 3 | 4 | android { 5 | compileSdkVersion rootProject.ext.compileSdkVersion 6 | buildToolsVersion rootProject.ext.buildToolsVersion 7 | 8 | defaultConfig { 9 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 10 | multiDexEnabled true 11 | minSdkVersion rootProject.ext.minSdkVersion 12 | targetSdkVersion rootProject.ext.targetSdkVersion 13 | versionCode rootProject.ext.versionCode 14 | versionName rootProject.ext.versionName 15 | } 16 | 17 | dexOptions { 18 | incremental true 19 | javaMaxHeapSize "4g" 20 | preDexLibraries = false 21 | additionalParameters = ['--core-library'] 22 | } 23 | 24 | packagingOptions { 25 | exclude 'META-INF/DEPENDENCIES' 26 | exclude 'META-INF/NOTICE' 27 | exclude 'META-INF/LICENSE' 28 | exclude 'META-INF/LICENSE.txt' 29 | exclude 'META-INF/NOTICE.txt' 30 | } 31 | 32 | productFlavors { 33 | app { 34 | applicationId "com.mob.bbssdk.sample" 35 | resValue "string", "BBS_APPKEY", "\"21b0f455db50c\"" 36 | resValue "string", "BBS_APPSECRET", "\"70d65618dbd258834a3c05ea49df878c\"" 37 | } 38 | } 39 | 40 | sourceSets { 41 | main { 42 | manifest.srcFile 'AndroidManifest.xml' 43 | assets.srcDirs = ['assets'] 44 | java.srcDirs = ['src'] 45 | aidl.srcDirs = ['src'] 46 | res.srcDirs = ['res'] 47 | jniLibs.srcDirs = ['libs'] 48 | } 49 | test { 50 | root = ['tests/java'] 51 | java.srcDirs = ['tests/java/src'] 52 | } 53 | } 54 | } 55 | 56 | dependencies { 57 | compile fileTree(dir: 'libs', include: ['*.jar']) 58 | compile 'com.github.barteksc:android-pdf-viewer:2.4.0' 59 | compile 'com.android.support:multidex:1.0.1' 60 | } 61 | 62 | 63 | MobSDK { 64 | appKey "21b0f455db50c" 65 | appSecret "70d65618dbd258834a3c05ea49df878c" 66 | 67 | ShareSDK { 68 | //平台配置信息 69 | devInfo { 70 | SinaWeibo { 71 | appKey "4244735359" 72 | appSecret "3c5e2fba33c8a61095af14b8e9818b47" 73 | callbackUri "http://www.sharesdk.cn" 74 | shareByAppClient true 75 | } 76 | Wechat { 77 | appId "wx8f541f6c92eaca46" 78 | appSecret "649d76cdd54af433cb696478db6ef0f4" 79 | path "/page/API/pages/share/share" 80 | userName "gh_afb25ac019c9" 81 | bypassApproval false 82 | } 83 | WechatMoments { 84 | appId "wx8f541f6c92eaca46" 85 | appSecret "649d76cdd54af433cb696478db6ef0f4" 86 | bypassApproval false 87 | } 88 | QQ { 89 | appId "1106410295" 90 | appKey "KEYQXjmJrcrh2BcSQAP" 91 | shareByAppClient true 92 | bypassApproval false 93 | 94 | } 95 | QZone { 96 | appId "1106410295" 97 | appKey "KEYQXjmJrcrh2BcSQAP" 98 | bypassApproval false 99 | } 100 | } 101 | } 102 | 103 | MobLink { 104 | gui false 105 | } 106 | 107 | BBSSDK{ 108 | theme 'theme1' 109 | devInfo { 110 | GadMap { //高德地图apiKey 111 | apiKey "ed7498703ea40c2a89ca7bd301f1c9d2" 112 | } 113 | } 114 | 115 | } 116 | } 117 | -------------------------------------------------------------------------------- /app/libs/poi-3.14-20160307.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/04696dca2a358c0c628e77fc9a32a0a8ca3d229d/app/libs/poi-3.14-20160307.jar -------------------------------------------------------------------------------- /app/libs/poi-ooxml-3.14-20160307.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/04696dca2a358c0c628e77fc9a32a0a8ca3d229d/app/libs/poi-ooxml-3.14-20160307.jar -------------------------------------------------------------------------------- /app/libs/poi-scratchpad-3.14-20160307.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/04696dca2a358c0c628e77fc9a32a0a8ca3d229d/app/libs/poi-scratchpad-3.14-20160307.jar -------------------------------------------------------------------------------- /app/libs/xmlbeans-2.6.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/04696dca2a358c0c628e77fc9a32a0a8ca3d229d/app/libs/xmlbeans-2.6.0.jar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | -dontoptimize 2 | -dontusemixedcaseclassnames 3 | -dontskipnonpubliclibraryclasses 4 | #-dontpreverify 5 | -verbose 6 | -dontwarn 7 | -optimizations !code/simplification/arithmetic,!field/*,!class/merging/* 8 | -keepattributes InnerClasses,LineNumberTable 9 | 10 | -keep public class * extends android.app.Activity 11 | -keep public class * extends android.app.Application 12 | -keep public class * extends android.app.Service 13 | -keep public class * extends android.app.View 14 | -keep public class * extends android.content.BroadcastReceiver 15 | -keep public class * extends android.content.ContentProvider 16 | -keep public class * extends android.app.backup.BackupAgentHelper 17 | -keep public class * extends android.preference.Preference 18 | 19 | -keep class android.net.http.SslError 20 | -keep class android.webkit.**{*;} 21 | #-keep class com.mob.**{*;} 22 | -keep class org.apache.poi.**{*;} 23 | -keep class org.apache.xmlbeans.**{*;} 24 | -keep class org.repackage.**{*;} 25 | -keep class org.schemaorg_apache_xmlbeans.**{*;} 26 | 27 | ################# support.v4/v7 ################# 28 | -keep class android.support.** { *; } 29 | -keep class android.support.v4.** { *; } 30 | -keep public class * extends android.support.v4.** 31 | -keep interface android.support.v4.app.** { *; } 32 | -keep class android.support.v7.** { *; } 33 | -keep public class * extends android.support.v7.** 34 | -keep interface android.support.v7.app.** { *; } 35 | -dontwarn android.support.** # 忽略警告 36 | -keep class android.support.annotation.* { 37 | *; 38 | } 39 | 40 | ################# Glide ################# 41 | -keep public class * implements com.bumptech.glide.module.GlideModule 42 | -keep public class * extends com.bumptech.glide.AppGlideModule 43 | -keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** { 44 | **[] $VALUES; 45 | public *; 46 | } 47 | -keep class com.bumptech.glide.** { 48 | *; 49 | } 50 | 51 | -keepclassmembers class fqcn.of.javascript.interface.for.webview { 52 | public *; 53 | } 54 | 55 | -keepclasseswithmembernames class * { 56 | native ; 57 | } 58 | 59 | -keepclasseswithmembers class * { 60 | public (android.content.Context, android.util.AttributeSet); 61 | } 62 | 63 | -keepclasseswithmembers class * { 64 | public (android.content.Context, android.util.AttributeSet, int); 65 | } 66 | 67 | -keepclassmembers class * extends android.app.Activity { 68 | public void *(android.view.View); 69 | } 70 | 71 | -keepclassmembers enum * { 72 | public static **[] values(); 73 | public static ** valueOf(java.lang.String); 74 | } 75 | 76 | -keep class **.R$* { 77 | *; 78 | } 79 | 80 | -keepattributes EnclosingMethod 81 | 82 | -keep class * implements android.os.Parcelable { 83 | public static final android.os.Parcelable$Creator *; 84 | } 85 | 86 | -dontwarn com.mob.** 87 | -dontwarn java.awt.** 88 | -dontwarn javax.xml.** 89 | -dontwarn org.apache.** 90 | 91 | #=========== shareSDK============== 92 | -keep class cn.sharesdk.**{*;} 93 | -keep class com.sina.**{*;} 94 | -keep class **.R$* {*;} 95 | -keep class **.R{*;} 96 | -keep class com.mob.**{*;} 97 | 98 | 99 | #高德地图 100 | 101 | #定位 102 | -keep class com.amap.api.location.**{*;} 103 | -keep class com.amap.api.fence.**{*;} 104 | -keep class com.autonavi.aps.amapapi.model.**{*;} 105 | 106 | #搜索 107 | -keep class com.amap.api.services.**{*;} 108 | 109 | #3D 地图 V5.0.0之后: 110 | -keep class com.amap.api.maps.**{*;} 111 | -keep class com.autonavi.**{*;} 112 | -keep class com.amap.api.trace.**{*;} -------------------------------------------------------------------------------- /app/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 | android.library.reference.1=../BBSSDKGUI -------------------------------------------------------------------------------- /app/res/drawable-xhdpi/bbs_init_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/04696dca2a358c0c628e77fc9a32a0a8ca3d229d/app/res/drawable-xhdpi/bbs_init_arrow.png -------------------------------------------------------------------------------- /app/res/drawable-xhdpi/bbs_init_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/04696dca2a358c0c628e77fc9a32a0a8ca3d229d/app/res/drawable-xhdpi/bbs_init_bg.png -------------------------------------------------------------------------------- /app/res/drawable-xhdpi/bbs_init_forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/04696dca2a358c0c628e77fc9a32a0a8ca3d229d/app/res/drawable-xhdpi/bbs_init_forum.png -------------------------------------------------------------------------------- /app/res/drawable-xhdpi/bbs_init_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/04696dca2a358c0c628e77fc9a32a0a8ca3d229d/app/res/drawable-xhdpi/bbs_init_key.png -------------------------------------------------------------------------------- /app/res/drawable-xhdpi/bbs_init_secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/04696dca2a358c0c628e77fc9a32a0a8ca3d229d/app/res/drawable-xhdpi/bbs_init_secret.png -------------------------------------------------------------------------------- /app/res/drawable-xhdpi/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/04696dca2a358c0c628e77fc9a32a0a8ca3d229d/app/res/drawable-xhdpi/splash_img.png -------------------------------------------------------------------------------- /app/res/drawable/bbs_init_bg_btnrectgrey.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/res/layout/activity_init.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 17 | 18 | 22 | 23 | 32 | 33 | 34 | 42 | 43 | 48 | 49 | 54 | 55 | 64 | 65 | 66 | 72 | 73 | 78 | 79 | 84 | 85 | 94 | 95 | 96 | 105 | 106 |