├── CodeBox.apk ├── CodeBox ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.core.resources.prefs ├── AndroidManifest.xml ├── bin │ └── jcode.apk ├── libs │ ├── android-support-v4.jar │ ├── commons-httpclient-3.1.jar │ └── dl-lib.jar ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── drawer_all.png │ │ ├── drawer_heart.png │ │ ├── drawer_light.png │ │ ├── drawer_shadow.9.png │ │ ├── ic_action_camera_default.png │ │ ├── ic_action_camera_disabled.png │ │ ├── ic_action_camera_pressed.png │ │ ├── ic_action_cancel_default.png │ │ ├── ic_action_cancel_disabled.png │ │ ├── ic_action_cancel_pressed.png │ │ ├── ic_launcher.png │ │ ├── place_holder.png │ │ └── titlebar_background.9.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ ├── bg_album_list.png │ │ ├── homescreen_normal_holo.9.png │ │ ├── ic_action_camera_default.png │ │ ├── ic_action_camera_disabled.png │ │ ├── ic_action_camera_pressed.png │ │ ├── ic_action_cancel_default.png │ │ ├── ic_action_cancel_disabled.png │ │ ├── ic_action_cancel_pressed.png │ │ ├── ic_action_discard_default.png │ │ ├── ic_action_share_default.png │ │ ├── ic_check_unchecked.png │ │ ├── ic_drawer.png │ │ ├── ic_launcher.png │ │ ├── ic_photoeditor_effects.png │ │ ├── ic_toolbar_add_to_album.png │ │ ├── ic_toolbar_delete.png │ │ ├── ic_toolbar_info.png │ │ ├── ic_toolbar_not_like.png │ │ └── ic_trash.png │ ├── drawable-xxhdpi │ │ ├── ic_action_camera_default.png │ │ ├── ic_action_camera_disabled.png │ │ ├── ic_action_camera_pressed.png │ │ ├── ic_action_cancel_default.png │ │ ├── ic_action_cancel_disabled.png │ │ ├── ic_action_cancel_pressed.png │ │ └── ic_launcher.png │ ├── drawable │ │ ├── album_background.xml │ │ ├── drawer_item_divider.xml │ │ ├── drawer_item_selector.xml │ │ ├── grid_item_select.xml │ │ ├── ic_action_camera.xml │ │ ├── ic_action_cancel.xml │ │ ├── list_selector.xml │ │ ├── selector_grid_item_night.xml │ │ ├── selector_tab.xml │ │ ├── selector_tab_normal.xml │ │ └── selector_tab_press.xml │ ├── layout │ │ ├── activity_about.xml │ │ ├── activity_code.xml │ │ ├── activity_main.xml │ │ ├── common_title_bar.xml │ │ ├── drawer_item.xml │ │ ├── fragment_main.xml │ │ ├── fragment_navigation_drawer.xml │ │ └── item_code_list.xml │ ├── menu │ │ └── main.xml │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ids.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ ├── ikimuhendis │ └── ldrawer │ │ ├── ActionBarDrawerToggle.java │ │ └── DrawerArrowDrawable.java │ └── jcodecraeer │ └── jcode │ ├── AboutActivity.java │ ├── AppContext.java │ ├── AppException.java │ ├── BaseActivity.java │ ├── Category.java │ ├── Code.java │ ├── CodeActivity.java │ ├── CodeListAdapter.java │ ├── EventBus.java │ ├── HttpUtil.java │ ├── MainActivity.java │ ├── MultiItemRowListAdapter.java │ ├── Utils.java │ ├── ViewController.java │ ├── fragment │ ├── CodeListFragment.java │ └── NavigationDrawerFragment.java │ ├── loader │ ├── FileCache.java │ ├── ImageLoader.java │ ├── LruCacheWrapper.java │ ├── MemoryCache.java │ └── Utils.java │ ├── update │ ├── AppVersion.java │ ├── DownloadService.java │ └── UpdateChecker.java │ └── view │ └── OverScrollView.java ├── README.md ├── plugins └── TextDrawableDemo.apk └── screenshots ├── 654654646.gif ├── device-2014-12-06-160316.png └── device-2014-12-06-160357.png /CodeBox.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox.apk -------------------------------------------------------------------------------- /CodeBox/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /CodeBox/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /gen/ 3 | -------------------------------------------------------------------------------- /CodeBox/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | CodeBox 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 | -------------------------------------------------------------------------------- /CodeBox/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/com/jcodecraeer/jcode/AboutActivity.java=UTF-8 3 | encoding//src/com/jcodecraeer/jcode/CodeActivity.java=UTF-8 4 | encoding//src/com/jcodecraeer/jcode/MainActivity.java=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /CodeBox/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 35 | 36 | 40 | 45 | 46 | 47 | 48 | 49 | 50 | 55 | 56 | 61 | 62 | 63 | 68 | 69 | 70 | 71 | 72 | 73 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | -------------------------------------------------------------------------------- /CodeBox/bin/jcode.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/bin/jcode.apk -------------------------------------------------------------------------------- /CodeBox/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/libs/android-support-v4.jar -------------------------------------------------------------------------------- /CodeBox/libs/commons-httpclient-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/libs/commons-httpclient-3.1.jar -------------------------------------------------------------------------------- /CodeBox/libs/dl-lib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/libs/dl-lib.jar -------------------------------------------------------------------------------- /CodeBox/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-19 15 | android.library.reference.1=..\\lib\\PullToRefreshListView 16 | android.library.reference.2=../lib/ion 17 | -------------------------------------------------------------------------------- /CodeBox/res/drawable-hdpi/drawer_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-hdpi/drawer_all.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-hdpi/drawer_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-hdpi/drawer_heart.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-hdpi/drawer_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-hdpi/drawer_light.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-hdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-hdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-hdpi/ic_action_camera_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-hdpi/ic_action_camera_default.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-hdpi/ic_action_camera_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-hdpi/ic_action_camera_disabled.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-hdpi/ic_action_camera_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-hdpi/ic_action_camera_pressed.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-hdpi/ic_action_cancel_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-hdpi/ic_action_cancel_default.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-hdpi/ic_action_cancel_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-hdpi/ic_action_cancel_disabled.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-hdpi/ic_action_cancel_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-hdpi/ic_action_cancel_pressed.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-hdpi/place_holder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-hdpi/place_holder.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-hdpi/titlebar_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-hdpi/titlebar_background.9.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/bg_album_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/bg_album_list.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/homescreen_normal_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/homescreen_normal_holo.9.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_action_camera_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_action_camera_default.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_action_camera_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_action_camera_disabled.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_action_camera_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_action_camera_pressed.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_action_cancel_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_action_cancel_default.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_action_cancel_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_action_cancel_disabled.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_action_cancel_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_action_cancel_pressed.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_action_discard_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_action_discard_default.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_action_share_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_action_share_default.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_check_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_check_unchecked.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_drawer.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_photoeditor_effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_photoeditor_effects.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_toolbar_add_to_album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_toolbar_add_to_album.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_toolbar_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_toolbar_delete.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_toolbar_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_toolbar_info.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_toolbar_not_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_toolbar_not_like.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xhdpi/ic_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xhdpi/ic_trash.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xxhdpi/ic_action_camera_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xxhdpi/ic_action_camera_default.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xxhdpi/ic_action_camera_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xxhdpi/ic_action_camera_disabled.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xxhdpi/ic_action_camera_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xxhdpi/ic_action_camera_pressed.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xxhdpi/ic_action_cancel_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xxhdpi/ic_action_cancel_default.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xxhdpi/ic_action_cancel_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xxhdpi/ic_action_cancel_disabled.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xxhdpi/ic_action_cancel_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xxhdpi/ic_action_cancel_pressed.png -------------------------------------------------------------------------------- /CodeBox/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianghejie/CodeBox/9e183caa3048e5ead17516bc5d607aaed187633f/CodeBox/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CodeBox/res/drawable/album_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /CodeBox/res/drawable/drawer_item_divider.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /CodeBox/res/drawable/drawer_item_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CodeBox/res/drawable/grid_item_select.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /CodeBox/res/drawable/ic_action_camera.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CodeBox/res/drawable/ic_action_cancel.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CodeBox/res/drawable/list_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /CodeBox/res/drawable/selector_grid_item_night.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /CodeBox/res/drawable/selector_tab.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 9 | 12 | -------------------------------------------------------------------------------- /CodeBox/res/drawable/selector_tab_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /CodeBox/res/drawable/selector_tab_press.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /CodeBox/res/layout/activity_about.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | 21 | 28 | 34 | 35 | 36 | 43 | 49 | 50 | 51 | 58 |