├── settings.gradle ├── sample.png ├── app ├── libs │ ├── xmlbeans-2.6.0.jar │ ├── poi-3.14-20160307.jar │ ├── poi-ooxml-3.14-20160307.jar │ └── poi-scratchpad-3.14-20160307.jar ├── res │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ ├── bbs_init_bg.png │ │ ├── splash_img.png │ │ ├── bbs_init_key.png │ │ ├── bbs_init_arrow.png │ │ ├── bbs_init_forum.png │ │ └── bbs_init_secret.png │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ ├── values │ │ ├── dimens.xml │ │ ├── colors.xml │ │ └── strings.xml │ ├── drawable │ │ └── bbs_init_bg_btnrectgrey.xml │ └── layout │ │ ├── activity_main.xml │ │ ├── activity_splash.xml │ │ ├── layout_test.xml │ │ └── activity_init.xml ├── project.properties ├── src │ └── com │ │ └── mob │ │ └── bbssdk │ │ └── sample │ │ ├── SplashActivity.java │ │ ├── MainActivity.java │ │ ├── TestActivity.java │ │ ├── SampleApplication.java │ │ ├── viewer │ │ ├── PagePDFViewer.java │ │ ├── PageVideoViewer.java │ │ └── PageOfficeViewer.java │ │ ├── InitActivity.java │ │ └── utils │ │ └── OfficeConverter.java ├── proguard-rules.pro ├── AndroidManifest.xml └── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── README.md ├── gradle.properties ├── gradlew.bat ├── gradlew └── LICENSE /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' -------------------------------------------------------------------------------- /sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/sample.png -------------------------------------------------------------------------------- /app/libs/xmlbeans-2.6.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/libs/xmlbeans-2.6.0.jar -------------------------------------------------------------------------------- /app/libs/poi-3.14-20160307.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/libs/poi-3.14-20160307.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/libs/poi-ooxml-3.14-20160307.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/libs/poi-ooxml-3.14-20160307.jar -------------------------------------------------------------------------------- /app/res/drawable-xhdpi/bbs_init_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/res/drawable-xhdpi/bbs_init_bg.png -------------------------------------------------------------------------------- /app/res/drawable-xhdpi/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/res/drawable-xhdpi/splash_img.png -------------------------------------------------------------------------------- /app/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/res/drawable-xhdpi/bbs_init_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/res/drawable-xhdpi/bbs_init_key.png -------------------------------------------------------------------------------- /app/libs/poi-scratchpad-3.14-20160307.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/libs/poi-scratchpad-3.14-20160307.jar -------------------------------------------------------------------------------- /app/res/drawable-xhdpi/bbs_init_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/res/drawable-xhdpi/bbs_init_arrow.png -------------------------------------------------------------------------------- /app/res/drawable-xhdpi/bbs_init_forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/res/drawable-xhdpi/bbs_init_forum.png -------------------------------------------------------------------------------- /app/res/drawable-xhdpi/bbs_init_secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MobClub/BBSSDK-for-Android/HEAD/app/res/drawable-xhdpi/bbs_init_secret.png -------------------------------------------------------------------------------- /app/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16sp 5 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Oct 31 11:28:55 CST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /app/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #F5F5F5 5 | 6 | #FFFFFF 7 | 8 | #666666 9 | -------------------------------------------------------------------------------- /app/res/drawable/bbs_init_bg_btnrectgrey.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /app/res/layout/activity_splash.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /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/layout/layout_test.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | 14 | 15 |