├── README.md ├── project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.eclipse.m2e.core.prefs ├── AndroidManifest.xml ├── README.md ├── libs │ └── armeabi │ │ └── libbspatch.so ├── lint.xml ├── pom.xml ├── res │ ├── anim │ │ ├── accelerate_interpolator.xml │ │ ├── bottom_in.xml │ │ ├── bottom_out.xml │ │ ├── cloud_sync_refresh.xml │ │ ├── decelerate_interpolator.xml │ │ ├── dialer_hide.xml │ │ ├── dialer_show.xml │ │ ├── dialog_enter.xml │ │ ├── dialog_exit.xml │ │ ├── disappear.xml │ │ ├── grow_from_bottom.xml │ │ ├── grow_from_bottomleft_to_topright.xml │ │ ├── grow_from_bottomright_to_topleft.xml │ │ ├── grow_from_down_to_top.xml │ │ ├── grow_from_top.xml │ │ ├── grow_from_topleft_to_bottomright.xml │ │ ├── grow_from_topright_to_bottomleft.xml │ │ ├── la_page_zoom.xml │ │ ├── la_pageturning_bottom.xml │ │ ├── la_pageturning_top.xml │ │ ├── match_sync_enter.xml │ │ ├── match_sync_loading.xml │ │ ├── pageturning_bottom.xml │ │ ├── pageturning_top.xml │ │ ├── pump_bottom.xml │ │ ├── pump_top.xml │ │ ├── renren_photo_bottom_in.xml │ │ ├── renren_photo_bottom_out.xml │ │ ├── shrink_from_bottom.xml │ │ ├── shrink_from_bottomleft_to_topright.xml │ │ ├── shrink_from_bottomright_to_topleft.xml │ │ ├── shrink_from_top.xml │ │ ├── shrink_from_topleft_to_bottomright.xml │ │ ├── shrink_from_topright_to_bottomleft.xml │ │ ├── sync_progress.xml │ │ ├── top_in.xml │ │ ├── top_out.xml │ │ ├── umeng_fb_slide_in_from_left.xml │ │ ├── umeng_fb_slide_in_from_right.xml │ │ ├── umeng_fb_slide_out_from_left.xml │ │ ├── umeng_fb_slide_out_from_right.xml │ │ └── zoom.xml │ ├── color │ │ ├── black_text_return.xml │ │ ├── black_to_green_text_return.xml │ │ ├── black_to_white_return.xml │ │ ├── blue_text_return.xml │ │ ├── deep_gray_green_text_return.xml │ │ ├── deepgray_text_return.xml │ │ ├── detail_gray_green_text_return.xml │ │ ├── gray_black_text_return.xml │ │ ├── gray_blue_text_return.xml │ │ ├── gray_green_text_return.xml │ │ ├── gray_guide_login_text_selector.xml │ │ ├── gray_red_text_return.xml │ │ ├── gray_text_orange_return.xml │ │ ├── gray_text_return.xml │ │ ├── gray_text_white_return.xml │ │ ├── green_gray_text_selector.xml │ │ ├── green_to_black_return.xml │ │ ├── green_to_white_return.xml │ │ ├── heavy_black_to_green_text_return.xml │ │ ├── match_sync_text_return.xml │ │ ├── popup_item_selector.xml │ │ ├── red_gray_text_selector.xml │ │ ├── red_text_return.xml │ │ ├── white_text_blue_return.xml │ │ └── white_text_orange_return.xml │ ├── drawable-hdpi │ │ ├── add_normal.png │ │ ├── add_pressed.png │ │ ├── conn.png │ │ ├── conn_disabled.png │ │ ├── conn_enabled.png │ │ ├── dbicon.png │ │ ├── first.png │ │ ├── first_pressed.png │ │ ├── ic_launcher.png │ │ ├── last.png │ │ ├── last_pressed.png │ │ ├── logo1.png │ │ ├── logo2.png │ │ ├── next.png │ │ ├── next_pressed.png │ │ ├── pre.png │ │ ├── pre_pressed.png │ │ ├── property.png │ │ ├── purplecow_n.png │ │ ├── purplecow_p.png │ │ ├── table.png │ │ ├── umeng_update_btn_check_off_focused_holo_light.png │ │ ├── umeng_update_btn_check_off_holo_light.png │ │ ├── umeng_update_btn_check_off_pressed_holo_light.png │ │ ├── umeng_update_btn_check_on_focused_holo_light.png │ │ ├── umeng_update_btn_check_on_holo_light.png │ │ ├── umeng_update_btn_check_on_pressed_holo_light.png │ │ ├── umeng_update_close_bg_normal.png │ │ ├── umeng_update_close_bg_tap.png │ │ └── unconn.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ ├── bg_dialog.9.png │ │ ├── ic_launcher.png │ │ └── icon_prompt_s.png │ ├── drawable │ │ ├── add.xml │ │ ├── bg_popup_item_selector.xml │ │ ├── connection.xml │ │ ├── fb_text.xml │ │ ├── logo.xml │ │ ├── purplecow.xml │ │ ├── rectbg.xml │ │ ├── rectbgbold.xml │ │ ├── rectbghead.xml │ │ ├── sel_first.xml │ │ ├── sel_last.xml │ │ ├── sel_next.xml │ │ ├── sel_pre.xml │ │ ├── umeng_common_gradient_green.xml │ │ ├── umeng_common_gradient_orange.xml │ │ ├── umeng_common_gradient_red.xml │ │ ├── umeng_fb_arrow_right.png │ │ ├── umeng_fb_back_normal.png │ │ ├── umeng_fb_back_selected.png │ │ ├── umeng_fb_back_selector.xml │ │ ├── umeng_fb_bar_bg.9.png │ │ ├── umeng_fb_btn_bg_selector.xml │ │ ├── umeng_fb_conversation_bg.png │ │ ├── umeng_fb_gradient_green.xml │ │ ├── umeng_fb_gradient_orange.xml │ │ ├── umeng_fb_gray_frame.xml │ │ ├── umeng_fb_list_item.9.png │ │ ├── umeng_fb_list_item_pressed.9.png │ │ ├── umeng_fb_list_item_selector.xml │ │ ├── umeng_fb_logo.png │ │ ├── umeng_fb_point_new.xml │ │ ├── umeng_fb_point_normal.xml │ │ ├── umeng_fb_reply_left_bg.9.png │ │ ├── umeng_fb_reply_right_bg.9.png │ │ ├── umeng_fb_see_list_normal.png │ │ ├── umeng_fb_see_list_pressed.png │ │ ├── umeng_fb_see_list_selector.xml │ │ ├── umeng_fb_statusbar_icon.png │ │ ├── umeng_fb_submit_selector.xml │ │ ├── umeng_fb_tick_normal.png │ │ ├── umeng_fb_tick_selected.png │ │ ├── umeng_fb_tick_selector.xml │ │ ├── umeng_fb_top_banner.xml │ │ ├── umeng_fb_user_bubble.9.png │ │ ├── umeng_fb_write_normal.png │ │ ├── umeng_fb_write_pressed.png │ │ ├── umeng_fb_write_selector.xml │ │ ├── umeng_update_button_cancel_bg_focused.xml │ │ ├── umeng_update_button_cancel_bg_normal.xml │ │ ├── umeng_update_button_cancel_bg_selector.xml │ │ ├── umeng_update_button_cancel_bg_tap.xml │ │ ├── umeng_update_button_check_selector.xml │ │ ├── umeng_update_button_close_bg_selector.xml │ │ ├── umeng_update_button_ok_bg_focused.xml │ │ ├── umeng_update_button_ok_bg_normal.xml │ │ ├── umeng_update_button_ok_bg_selector.xml │ │ ├── umeng_update_button_ok_bg_tap.xml │ │ ├── umeng_update_dialog_bg.xml │ │ ├── umeng_update_title_bg.xml │ │ └── umeng_update_wifi_disable.png │ ├── layout-v9 │ │ └── umeng_common_download_notification.xml │ ├── layout │ │ ├── activity_about.xml │ │ ├── activity_add_conn.xml │ │ ├── activity_cmd.xml │ │ ├── activity_data.xml │ │ ├── activity_db.xml │ │ ├── activity_main.xml │ │ ├── activity_prop.xml │ │ ├── activity_tb.xml │ │ ├── conn_item.xml │ │ ├── db_item.xml │ │ ├── popup_item.xml │ │ ├── popup_title.xml │ │ ├── prop_item.xml │ │ ├── tb_item.xml │ │ ├── umeng_common_download_notification.xml │ │ ├── umeng_fb_activity_contact.xml │ │ ├── umeng_fb_activity_conversation.xml │ │ ├── umeng_fb_list_header.xml │ │ ├── umeng_fb_list_item.xml │ │ ├── umeng_fb_new_reply_alert_dialog.xml │ │ └── umeng_update_dialog.xml │ ├── menu │ │ ├── connlist.xml │ │ ├── main.xml │ │ └── tablelist.xml │ ├── report1413640672922 │ ├── values-ja │ │ └── umeng_fb_strings.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-zh │ │ ├── arrays.xml │ │ ├── strings.xml │ │ ├── umeng_common_strings.xml │ │ ├── umeng_fb_strings.xml │ │ └── umeng_update_string.xml │ └── values │ │ ├── arrays.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ ├── umeng_common_strings.xml │ │ ├── umeng_fb_strings.xml │ │ └── umeng_update_string.xml └── src │ └── main │ └── java │ ├── com │ ├── MysqlCliApplication.java │ ├── ben │ │ └── data │ │ │ ├── DatabaseHelper.java │ │ │ ├── DatabaseUtils.java │ │ │ ├── DbDao.java │ │ │ └── GenericDao.java │ ├── piglet │ │ ├── App.java │ │ ├── adapter │ │ │ ├── ConnInfoAdapter.java │ │ │ ├── DbAdapter.java │ │ │ ├── PropAdapter.java │ │ │ └── TbAdapter.java │ │ ├── core │ │ │ ├── MysqlConnection.java │ │ │ ├── MysqlHelper.java │ │ │ └── help.properties │ │ ├── dao │ │ │ ├── impl │ │ │ │ └── ConnectionInfoDao.java │ │ │ └── pojo │ │ │ │ ├── Cell.java │ │ │ │ ├── ConnectionInfo.java │ │ │ │ ├── Database.java │ │ │ │ ├── Row.java │ │ │ │ ├── Table.java │ │ │ │ └── TableProperty.java │ │ ├── ui │ │ │ ├── AboutActivity.java │ │ │ ├── AddConnectionActivity.java │ │ │ ├── CmdActivity.java │ │ │ ├── DataActivity.java │ │ │ ├── DbActivity.java │ │ │ ├── EditConnectionActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── PropActivity.java │ │ │ └── TbActivity.java │ │ ├── utils │ │ │ ├── Constant.java │ │ │ ├── MysqlUtils.java │ │ │ └── UnitConverter.java │ │ ├── widget │ │ │ ├── QuickAction.java │ │ │ ├── QuickWindow.java │ │ │ ├── ResizeLayout.java │ │ │ ├── SpaceTokenizer.java │ │ │ └── TwoDScrollView.java │ │ └── worker │ │ │ └── Worker.java │ └── report1413634005175 │ └── net │ └── tsz │ └── afinal │ ├── FinalActivity.java │ ├── FinalBitmap.java │ ├── FinalDb.java │ ├── FinalHttp.java │ ├── annotation │ ├── sqlite │ │ ├── Id.java │ │ ├── ManyToOne.java │ │ ├── OneToMany.java │ │ ├── Property.java │ │ ├── Table.java │ │ └── Transient.java │ └── view │ │ ├── EventListener.java │ │ ├── Select.java │ │ └── ViewInject.java │ ├── bitmap │ ├── core │ │ ├── BaseMemoryCacheImpl.java │ │ ├── BitmapCache.java │ │ ├── BitmapDecoder.java │ │ ├── BitmapDisplayConfig.java │ │ ├── BitmapProcess.java │ │ ├── BytesBufferPool.java │ │ ├── DiskCache.java │ │ ├── IMemoryCache.java │ │ ├── LruMemoryCache.java │ │ └── SoftMemoryCacheImpl.java │ ├── display │ │ ├── Displayer.java │ │ └── SimpleDisplayer.java │ └── download │ │ ├── Downloader.java │ │ └── SimpleDownloader.java │ ├── core │ ├── AbstractCollection.java │ ├── ArrayDeque.java │ ├── Arrays.java │ ├── AsyncTask.java │ ├── Deque.java │ ├── FileNameGenerator.java │ └── Queue.java │ ├── db │ ├── sqlite │ │ ├── CursorUtils.java │ │ ├── DbModel.java │ │ ├── ManyToOneLazyLoader.java │ │ ├── OneToManyLazyLoader.java │ │ ├── SqlBuilder.java │ │ └── SqlInfo.java │ └── table │ │ ├── Id.java │ │ ├── KeyValue.java │ │ ├── ManyToOne.java │ │ ├── OneToMany.java │ │ ├── Property.java │ │ └── TableInfo.java │ ├── exception │ ├── AfinalException.java │ ├── DbException.java │ ├── HttpException.java │ └── ViewException.java │ ├── http │ ├── AjaxCallBack.java │ ├── AjaxParams.java │ ├── HttpHandler.java │ ├── MultipartEntity.java │ ├── PreferencesCookieStore.java │ ├── RetryHandler.java │ ├── SyncRequestHandler.java │ └── entityhandler │ │ ├── EntityCallBack.java │ │ ├── FileEntityHandler.java │ │ └── StringEntityHandler.java │ └── utils │ ├── ClassUtils.java │ ├── FieldUtils.java │ └── Utils.java └── release └── MysqlCli_20141120.apk /README.md: -------------------------------------------------------------------------------- 1 | # aMysqlClient 2 | 一个类似于Navicat的Mysql Android客户端 3 | 4 | **如果你想要构建这个工程,请使用 Maven。** 5 | -------------------------------------------------------------------------------- /project/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/test/java=UTF-8 4 | encoding/=UTF-8 5 | -------------------------------------------------------------------------------- /project/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 4 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 5 | org.eclipse.jdt.core.compiler.compliance=1.6 6 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 7 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 8 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 9 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 10 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 11 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 12 | org.eclipse.jdt.core.compiler.source=1.6 13 | -------------------------------------------------------------------------------- /project/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /project/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 46 | 47 | 48 | 49 | 52 | 55 | 56 | 59 | 60 | 61 | 64 | 65 | 66 | 69 | 70 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /project/README.md: -------------------------------------------------------------------------------- 1 | aMysqlClient 2 | ============ 3 | 4 | 一个类似于Navicat的Mysql Android客户端 5 | 6 | # 功能简介 # 7 | 8 | 1. 支持简易模式,可以直接查看Mysql数据库的表结构、表数据等等。 9 | 2. 支持命令行模式,命令模式有历史记录,有常用命令支持,还有常用词快捷输入,支持事务等功能等等。 10 | 11 | # 使用方法 # 12 | 这个应用是面向程序员的,我想这么简单的东西。。有问题还是直接发邮件吧,[enbandari@qq.com](enbandari@qq.com) 13 | 14 | # 鸣谢 # 15 | 1. 项目中使用到了Spring jdbc, Dbcp连接池这些web应用中常见的框架,也用到了国内杨福海大神开源的Afinal框架的db模块。感谢。 16 | 2. 感谢小伙伴在半夜两点还找我查Mysql服务器的数据,迫使我花了一个多星期写了个这么个app。 17 | 18 | -------------------------------------------------------------------------------- /project/libs/armeabi/libbspatch.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/libs/armeabi/libbspatch.so -------------------------------------------------------------------------------- /project/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /project/res/anim/accelerate_interpolator.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /project/res/anim/bottom_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /project/res/anim/bottom_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /project/res/anim/cloud_sync_refresh.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | -------------------------------------------------------------------------------- /project/res/anim/decelerate_interpolator.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /project/res/anim/dialer_hide.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /project/res/anim/dialer_show.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /project/res/anim/dialog_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/anim/dialog_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/res/anim/disappear.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /project/res/anim/grow_from_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /project/res/anim/grow_from_bottomleft_to_topright.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | -------------------------------------------------------------------------------- /project/res/anim/grow_from_bottomright_to_topleft.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | -------------------------------------------------------------------------------- /project/res/anim/grow_from_down_to_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 14 | -------------------------------------------------------------------------------- /project/res/anim/grow_from_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /project/res/anim/grow_from_topleft_to_bottomright.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /project/res/anim/grow_from_topright_to_bottomleft.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | -------------------------------------------------------------------------------- /project/res/anim/la_page_zoom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /project/res/anim/la_pageturning_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /project/res/anim/la_pageturning_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /project/res/anim/match_sync_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/anim/match_sync_loading.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | -------------------------------------------------------------------------------- /project/res/anim/pageturning_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /project/res/anim/pageturning_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 16 | 17 | -------------------------------------------------------------------------------- /project/res/anim/pump_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /project/res/anim/pump_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /project/res/anim/renren_photo_bottom_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /project/res/anim/renren_photo_bottom_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /project/res/anim/shrink_from_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /project/res/anim/shrink_from_bottomleft_to_topright.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | -------------------------------------------------------------------------------- /project/res/anim/shrink_from_bottomright_to_topleft.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /project/res/anim/shrink_from_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /project/res/anim/shrink_from_topleft_to_bottomright.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | -------------------------------------------------------------------------------- /project/res/anim/shrink_from_topright_to_bottomleft.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /project/res/anim/sync_progress.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | -------------------------------------------------------------------------------- /project/res/anim/top_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /project/res/anim/top_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /project/res/anim/umeng_fb_slide_in_from_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /project/res/anim/umeng_fb_slide_in_from_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /project/res/anim/umeng_fb_slide_out_from_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /project/res/anim/umeng_fb_slide_out_from_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /project/res/anim/zoom.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 15 | 16 | -------------------------------------------------------------------------------- /project/res/color/black_text_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/res/color/black_to_green_text_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/res/color/black_to_white_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project/res/color/blue_text_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/res/color/deep_gray_green_text_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/color/deepgray_text_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/res/color/detail_gray_green_text_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/color/gray_black_text_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/res/color/gray_blue_text_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project/res/color/gray_green_text_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project/res/color/gray_guide_login_text_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/res/color/gray_red_text_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project/res/color/gray_text_orange_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project/res/color/gray_text_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project/res/color/gray_text_white_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project/res/color/green_gray_text_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project/res/color/green_to_black_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project/res/color/green_to_white_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project/res/color/heavy_black_to_green_text_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/color/match_sync_text_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/res/color/popup_item_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project/res/color/red_gray_text_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project/res/color/red_text_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project/res/color/white_text_blue_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project/res/color/white_text_orange_return.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /project/res/drawable-hdpi/add_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/add_normal.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/add_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/add_pressed.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/conn.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/conn_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/conn_disabled.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/conn_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/conn_enabled.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/dbicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/dbicon.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/first.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/first_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/first_pressed.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/last.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/last_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/last_pressed.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/logo1.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/logo2.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/next.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/next_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/next_pressed.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/pre.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/pre_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/pre_pressed.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/property.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/purplecow_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/purplecow_n.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/purplecow_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/purplecow_p.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/table.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/umeng_update_close_bg_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/umeng_update_close_bg_normal.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/umeng_update_close_bg_tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/umeng_update_close_bg_tap.png -------------------------------------------------------------------------------- /project/res/drawable-hdpi/unconn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-hdpi/unconn.png -------------------------------------------------------------------------------- /project/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /project/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /project/res/drawable-xxhdpi/bg_dialog.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-xxhdpi/bg_dialog.9.png -------------------------------------------------------------------------------- /project/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /project/res/drawable-xxhdpi/icon_prompt_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable-xxhdpi/icon_prompt_s.png -------------------------------------------------------------------------------- /project/res/drawable/add.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/drawable/bg_popup_item_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project/res/drawable/connection.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | -------------------------------------------------------------------------------- /project/res/drawable/fb_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/res/drawable/logo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/drawable/purplecow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/drawable/rectbg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project/res/drawable/rectbgbold.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/res/drawable/rectbghead.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /project/res/drawable/sel_first.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/res/drawable/sel_last.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/res/drawable/sel_next.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/res/drawable/sel_pre.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_common_gradient_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_common_gradient_orange.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_common_gradient_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_arrow_right.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_back_normal.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_back_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_back_selected.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_back_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_bar_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_bar_bg.9.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_btn_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_conversation_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_conversation_bg.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_gradient_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_gradient_orange.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_gray_frame.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_list_item.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_list_item.9.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_list_item_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_list_item_pressed.9.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_list_item_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_logo.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_point_new.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_point_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_reply_left_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_reply_left_bg.9.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_reply_right_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_reply_right_bg.9.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_see_list_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_see_list_normal.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_see_list_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_see_list_pressed.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_see_list_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_statusbar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_statusbar_icon.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_submit_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_tick_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_tick_normal.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_tick_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_tick_selected.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_tick_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_top_banner.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_user_bubble.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_user_bubble.9.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_write_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_write_normal.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_write_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_fb_write_pressed.png -------------------------------------------------------------------------------- /project/res/drawable/umeng_fb_write_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_update_button_cancel_bg_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_update_button_cancel_bg_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_update_button_cancel_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_update_button_cancel_bg_tap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_update_button_check_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 9 | 10 | 13 | 16 | 17 | 20 | 23 | 24 | 27 | 30 | 31 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_update_button_close_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_update_button_ok_bg_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_update_button_ok_bg_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_update_button_ok_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_update_button_ok_bg_tap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_update_dialog_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_update_title_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /project/res/drawable/umeng_update_wifi_disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bennyhuo/aMysqlClient/de5800d95375965e0d5fe58087f9c910573d9afe/project/res/drawable/umeng_update_wifi_disable.png -------------------------------------------------------------------------------- /project/res/layout/activity_about.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | 15 | 23 | 24 | 25 | 32 | 33 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /project/res/layout/activity_db.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 15 | 16 | 21 | 22 | 29 | 30 | 31 | 37 | 38 | 39 | 46 | 47 | -------------------------------------------------------------------------------- /project/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | 15 | 22 | 23 |