├── .idea ├── .name ├── copyright │ └── profiles_settings.xml ├── scopes │ └── scope_settings.xml ├── encodings.xml ├── vcs.xml ├── libraries │ ├── weibosdkcore.xml │ ├── android_support_v4.xml │ ├── pushservice_4_1_0.xml │ └── universal_image_loader_1_8_6_with_sources.xml ├── modules.xml └── compiler.xml ├── lint.xml ├── example.png ├── libs ├── android-support-v4.jar ├── mips │ └── libbdpush_V2_1.so ├── pushservice-4.1.0.jar ├── armeabi │ └── libbdpush_V2_1.so └── universal-image-loader-1.8.6-with-sources.jar ├── res ├── drawable-hdpi │ ├── bug.png │ ├── heart.png │ ├── beelogo.png │ ├── comment.png │ ├── nav_bg.png │ ├── round_1.png │ ├── round_2.png │ ├── round_3.png │ ├── round_4.png │ ├── round_5.png │ ├── round_6.png │ ├── round_7.png │ ├── round_8.png │ ├── round_9.png │ ├── tab_sel.png │ ├── articbotm.png │ ├── as_browser.png │ ├── back_icon.png │ ├── btn_red.9.png │ ├── close_btn.png │ ├── geek_zoo.png │ ├── netload_01.png │ ├── netload_02.png │ ├── netload_03.png │ ├── netload_04.png │ ├── netload_05.png │ ├── netload_06.png │ ├── netload_07.png │ ├── netload_08.png │ ├── netload_09.png │ ├── netload_10.png │ ├── netload_11.png │ ├── netload_12.png │ ├── read_yes.png │ ├── round_10.png │ ├── tab_normal.png │ ├── avatar_howie.png │ ├── avatar_qfish.png │ ├── btn_yellow.9.png │ ├── ic_launcher.png │ ├── seekbar_back.png │ ├── seekbar_fill.png │ ├── avatar_houxin.png │ ├── avatar_laoguo.png │ ├── body_cont_bg.9.png │ ├── button_normal.png │ ├── default_image.png │ ├── f1_menuboard_1.png │ ├── f1_menuboard_5.png │ ├── feed_item_bg.9.png │ ├── semitrans_bg.9.png │ ├── tablecellline.png │ ├── xlistview_arrow.png │ ├── arrow_left_white.png │ ├── as_clear_location.png │ ├── cont_bg_bottom.9.png │ ├── default_user_icon.png │ ├── browser_baritem_back.png │ ├── b1_indexboard_iphone_9.png │ ├── b2_publishphotoboard_1.png │ ├── profile_no_avarta_icon.png │ ├── b1_indexboard_iphone_10.png │ ├── browser_baritem_forward.png │ ├── browser_baritem_refresh.png │ ├── profile_refresh_site_icon.png │ ├── qzone_photo_btn_add_click.png │ ├── bakchat_check_list_progress.png │ ├── sns_shoot_location_pressed.png │ ├── wallet_bankcard_detail_virtual.png │ ├── item_grid_filter_up_active_arrow.png │ ├── item_grid_filter_down_active_arrow.png │ ├── nav_background.xml │ ├── splash_background.xml │ ├── toolbar_bg.xml │ └── footer_active_bg.xml ├── drawable │ ├── overscroll_edge.png │ ├── overscroll_glow.png │ ├── vpi__tab_selected_holo.9.png │ ├── vpi__tab_unselected_holo.9.png │ ├── vpi__tab_selected_focused_holo.9.png │ ├── vpi__tab_selected_pressed_holo.9.png │ ├── vpi__tab_unselected_focused_holo.9.png │ ├── vpi__tab_unselected_pressed_holo.9.png │ ├── bg.xml │ ├── textbg_select.xml │ ├── f_bg.xml │ ├── progress_bg.xml │ ├── dialog_bg.xml │ ├── download_dialog_bg.xml │ ├── seekbar_img.xml │ ├── tab_select.xml │ └── vpi__tab_indicator.xml ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── anim │ ├── cycle.xml │ ├── push_buttom_in.xml │ ├── push_buttom_out.xml │ ├── push_left_in.xml │ ├── push_left_out.xml │ ├── push_right_in.xml │ ├── push_right_out.xml │ ├── rotate.xml │ ├── push_up_in.xml │ ├── push_up_out.xml │ ├── loadmore_animation.xml │ └── loading_animation.xml ├── values │ ├── color.xml │ ├── dimens.xml │ ├── strings.xml │ ├── vpi__colors.xml │ ├── styles.xml │ └── vpi__styles.xml ├── layout │ ├── webview.xml │ ├── shot_list.xml │ ├── activity_lifecycle_item.xml │ ├── splash.xml │ ├── gallery_image_item.xml │ ├── theme_download_activity.xml │ ├── profile_list.xml │ ├── crash_log_activity.xml │ ├── trend_activity.xml │ ├── debug_message_list.xml │ ├── shot.xml │ ├── followers_list.xml │ ├── download.xml │ ├── trend_topic.xml │ ├── crash_log_item.xml │ ├── taost_view.xml │ ├── crash_log_detail_activity.xml │ ├── gallery_image.xml │ ├── activity_comment_list.xml │ ├── progress_view.xml │ ├── web_tools.xml │ ├── timeline_activity.xml │ ├── profile_bottom.xml │ ├── activity_photo_detail.xml │ ├── xlistview_footer.xml │ ├── navigationbar.xml │ ├── floatview_setting.xml │ ├── activity_lifecycle_activity.xml │ ├── shot_item.xml │ ├── debug_message_detail.xml │ ├── download_dialog.xml │ └── debug_message_item.xml └── color │ ├── vpi__dark_theme.xml │ └── vpi__light_theme.xml ├── .gitignore ├── src └── com │ ├── external │ ├── stomp │ │ ├── Queue.java │ │ ├── FileQueue.java │ │ ├── Listener.java │ │ ├── Authenticatable.java │ │ ├── MessageReceiver.java │ │ ├── Version.java │ │ ├── Message.java │ │ ├── AllowAllAuthenticator.java │ │ ├── Transmitter.java │ │ ├── Authenticator.java │ │ ├── IntraVMClient.java │ │ └── Command.java │ ├── imagezoom │ │ ├── utils │ │ │ └── IDisposable.java │ │ ├── easing │ │ │ ├── Easing.java │ │ │ ├── Sine.java │ │ │ ├── Quad.java │ │ │ ├── Quart.java │ │ │ ├── Quint.java │ │ │ ├── Linear.java │ │ │ ├── Cubic.java │ │ │ ├── Circ.java │ │ │ ├── Expo.java │ │ │ ├── Bounce.java │ │ │ ├── Back.java │ │ │ └── Elastic.java │ │ └── graphics │ │ │ └── IBitmapDrawable.java │ ├── viewpagerindicator │ │ ├── IconPagerAdapter.java │ │ └── PageIndicator.java │ ├── HorizontalVariableListView │ │ ├── utils │ │ │ ├── DataSetObserverExtended.java │ │ │ └── DataSetObservableExtended.java │ │ └── widget │ │ │ ├── Fling8Runnable.java │ │ │ ├── BaseAdapterExtended.java │ │ │ ├── Fling9Runnable.java │ │ │ └── HorizontalListView.java │ ├── androidquery │ │ ├── callback │ │ │ ├── ImageOptions.java │ │ │ ├── Transformer.java │ │ │ └── AjaxCallback.java │ │ ├── AQuery.java │ │ └── util │ │ │ ├── PredefinedBAOS.java │ │ │ └── web_image.html │ ├── activeandroid │ │ ├── query │ │ │ ├── Sqlable.java │ │ │ ├── Delete.java │ │ │ ├── Update.java │ │ │ ├── Join.java │ │ │ └── Select.java │ │ ├── serializer │ │ │ ├── TypeSerializer.java │ │ │ ├── CalendarSerializer.java │ │ │ ├── SqlDateSerializer.java │ │ │ └── UtilDateSerializer.java │ │ ├── annotation │ │ │ ├── Table.java │ │ │ └── Column.java │ │ ├── app │ │ │ └── Application.java │ │ ├── widget │ │ │ └── ModelAdapter.java │ │ ├── ActiveAndroid.java │ │ └── util │ │ │ └── ReflectionUtils.java │ ├── eventbus │ │ ├── PendingPostQueue.java │ │ ├── NoSubscriberEvent.java │ │ ├── EventBusException.java │ │ ├── Subscription.java │ │ ├── AsyncPoster.java │ │ ├── SubscriberExceptionEvent.java │ │ ├── util │ │ │ ├── ThrowableFailureEvent.java │ │ │ └── ErrorDialogConfig.java │ │ ├── PendingPost.java │ │ └── SubscriberMethod.java │ └── bayesian │ │ └── bayesian.h │ ├── BeeFramework │ ├── model │ │ ├── BusinessResponse.java │ │ ├── MockServer.java │ │ └── BeeQuery.java │ ├── view │ │ ├── BeeInjectId.java │ │ ├── BeeInjector.java │ │ ├── MyDialog.java │ │ ├── MyProgressDialog.java │ │ ├── ToastView.java │ │ └── MyScrollView.java │ ├── protocol │ │ └── CrashMessage.java │ ├── activity │ │ └── DebugCancelDialogActivity.java │ ├── theme │ │ ├── BeeColorStateList.java │ │ └── BeeNinePatchDrawable.java │ ├── Utils │ │ └── TimeUtil.java │ └── AppConst.java │ └── example │ └── protocol │ ├── statusespublic_timelineRequest.java │ ├── ApiInterface.java │ └── statusespublic_timelineResponse.java ├── local.properties ├── .classpath ├── project.properties ├── ant.properties ├── proguard-project.txt ├── .project ├── LICENSE └── BeeFrameworkExample.iml /.idea/.name: -------------------------------------------------------------------------------- 1 | BeeFrameworkExample -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/example.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/mips/libbdpush_V2_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/libs/mips/libbdpush_V2_1.so -------------------------------------------------------------------------------- /libs/pushservice-4.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/libs/pushservice-4.1.0.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/bug.png -------------------------------------------------------------------------------- /res/drawable-hdpi/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/heart.png -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /res/drawable-hdpi/beelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/beelogo.png -------------------------------------------------------------------------------- /res/drawable-hdpi/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/comment.png -------------------------------------------------------------------------------- /res/drawable-hdpi/nav_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/nav_bg.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/round_1.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/round_2.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/round_3.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/round_4.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/round_5.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/round_6.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/round_7.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/round_8.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/round_9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/tab_sel.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | bin 3 | gen 4 | out 5 | 6 | # Package Files # 7 | *.jar 8 | *.war 9 | *.ear 10 | *.svn 11 | -------------------------------------------------------------------------------- /libs/armeabi/libbdpush_V2_1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/libs/armeabi/libbdpush_V2_1.so -------------------------------------------------------------------------------- /res/drawable-hdpi/articbotm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/articbotm.png -------------------------------------------------------------------------------- /res/drawable-hdpi/as_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/as_browser.png -------------------------------------------------------------------------------- /res/drawable-hdpi/back_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/back_icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_red.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/btn_red.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/close_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/close_btn.png -------------------------------------------------------------------------------- /res/drawable-hdpi/geek_zoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/geek_zoo.png -------------------------------------------------------------------------------- /res/drawable-hdpi/netload_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/netload_01.png -------------------------------------------------------------------------------- /res/drawable-hdpi/netload_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/netload_02.png -------------------------------------------------------------------------------- /res/drawable-hdpi/netload_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/netload_03.png -------------------------------------------------------------------------------- /res/drawable-hdpi/netload_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/netload_04.png -------------------------------------------------------------------------------- /res/drawable-hdpi/netload_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/netload_05.png -------------------------------------------------------------------------------- /res/drawable-hdpi/netload_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/netload_06.png -------------------------------------------------------------------------------- /res/drawable-hdpi/netload_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/netload_07.png -------------------------------------------------------------------------------- /res/drawable-hdpi/netload_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/netload_08.png -------------------------------------------------------------------------------- /res/drawable-hdpi/netload_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/netload_09.png -------------------------------------------------------------------------------- /res/drawable-hdpi/netload_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/netload_10.png -------------------------------------------------------------------------------- /res/drawable-hdpi/netload_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/netload_11.png -------------------------------------------------------------------------------- /res/drawable-hdpi/netload_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/netload_12.png -------------------------------------------------------------------------------- /res/drawable-hdpi/read_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/read_yes.png -------------------------------------------------------------------------------- /res/drawable-hdpi/round_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/round_10.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/tab_normal.png -------------------------------------------------------------------------------- /res/drawable/overscroll_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable/overscroll_edge.png -------------------------------------------------------------------------------- /res/drawable/overscroll_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable/overscroll_glow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/avatar_howie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/avatar_howie.png -------------------------------------------------------------------------------- /res/drawable-hdpi/avatar_qfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/avatar_qfish.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_yellow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/btn_yellow.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/seekbar_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/seekbar_back.png -------------------------------------------------------------------------------- /res/drawable-hdpi/seekbar_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/seekbar_fill.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/avatar_houxin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/avatar_houxin.png -------------------------------------------------------------------------------- /res/drawable-hdpi/avatar_laoguo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/avatar_laoguo.png -------------------------------------------------------------------------------- /res/drawable-hdpi/body_cont_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/body_cont_bg.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/button_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/button_normal.png -------------------------------------------------------------------------------- /res/drawable-hdpi/default_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/default_image.png -------------------------------------------------------------------------------- /res/drawable-hdpi/f1_menuboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/f1_menuboard_1.png -------------------------------------------------------------------------------- /res/drawable-hdpi/f1_menuboard_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/f1_menuboard_5.png -------------------------------------------------------------------------------- /res/drawable-hdpi/feed_item_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/feed_item_bg.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/semitrans_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/semitrans_bg.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tablecellline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/tablecellline.png -------------------------------------------------------------------------------- /res/drawable-hdpi/xlistview_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/xlistview_arrow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/arrow_left_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/arrow_left_white.png -------------------------------------------------------------------------------- /res/drawable-hdpi/as_clear_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/as_clear_location.png -------------------------------------------------------------------------------- /res/drawable-hdpi/cont_bg_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/cont_bg_bottom.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/default_user_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/default_user_icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/browser_baritem_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/browser_baritem_back.png -------------------------------------------------------------------------------- /res/drawable/vpi__tab_selected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable/vpi__tab_selected_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/b1_indexboard_iphone_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/b1_indexboard_iphone_9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/b2_publishphotoboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/b2_publishphotoboard_1.png -------------------------------------------------------------------------------- /res/drawable-hdpi/profile_no_avarta_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/profile_no_avarta_icon.png -------------------------------------------------------------------------------- /res/drawable/vpi__tab_unselected_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable/vpi__tab_unselected_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/b1_indexboard_iphone_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/b1_indexboard_iphone_10.png -------------------------------------------------------------------------------- /res/drawable-hdpi/browser_baritem_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/browser_baritem_forward.png -------------------------------------------------------------------------------- /res/drawable-hdpi/browser_baritem_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/browser_baritem_refresh.png -------------------------------------------------------------------------------- /res/drawable-hdpi/profile_refresh_site_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/profile_refresh_site_icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/qzone_photo_btn_add_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/qzone_photo_btn_add_click.png -------------------------------------------------------------------------------- /src/com/external/stomp/Queue.java: -------------------------------------------------------------------------------- 1 | package com.external.stomp; 2 | 3 | /** 4 | * (c)2005 Sean Russell 5 | */ 6 | public interface Queue { 7 | } 8 | 9 | -------------------------------------------------------------------------------- /res/drawable-hdpi/bakchat_check_list_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/bakchat_check_list_progress.png -------------------------------------------------------------------------------- /res/drawable-hdpi/sns_shoot_location_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/sns_shoot_location_pressed.png -------------------------------------------------------------------------------- /res/drawable/vpi__tab_selected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable/vpi__tab_selected_focused_holo.9.png -------------------------------------------------------------------------------- /res/drawable/vpi__tab_selected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable/vpi__tab_selected_pressed_holo.9.png -------------------------------------------------------------------------------- /src/com/external/imagezoom/utils/IDisposable.java: -------------------------------------------------------------------------------- 1 | package com.external.imagezoom.utils; 2 | 3 | public interface IDisposable { 4 | 5 | void dispose(); 6 | } 7 | -------------------------------------------------------------------------------- /libs/universal-image-loader-1.8.6-with-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/libs/universal-image-loader-1.8.6-with-sources.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/wallet_bankcard_detail_virtual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/wallet_bankcard_detail_virtual.png -------------------------------------------------------------------------------- /res/drawable/vpi__tab_unselected_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable/vpi__tab_unselected_focused_holo.9.png -------------------------------------------------------------------------------- /res/drawable/vpi__tab_unselected_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable/vpi__tab_unselected_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/item_grid_filter_up_active_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/item_grid_filter_up_active_arrow.png -------------------------------------------------------------------------------- /res/anim/cycle.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /res/drawable-hdpi/item_grid_filter_down_active_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gytai/BeeFramework_Android/master/res/drawable-hdpi/item_grid_filter_down_active_arrow.png -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/values/color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #44aaaaaa 5 | #00000000 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/com/external/stomp/FileQueue.java: -------------------------------------------------------------------------------- 1 | package com.external.stomp; 2 | 3 | /* 4 | * (c)2005 Sean Russell 5 | */ 6 | public class FileQueue implements Queue { 7 | public FileQueue() { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /res/drawable-hdpi/nav_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /res/anim/push_buttom_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/push_buttom_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable-hdpi/splash_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/com/external/stomp/Listener.java: -------------------------------------------------------------------------------- 1 | package com.external.stomp; 2 | 3 | import java.util.Map; 4 | 5 | /** 6 | * (c)2005 Sean Russell 7 | */ 8 | public interface Listener { 9 | public void message( Map headers, String body ); 10 | } 11 | -------------------------------------------------------------------------------- /res/drawable/bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/libraries/weibosdkcore.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/libraries/android_support_v4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/libraries/pushservice_4_1_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/com/external/stomp/Authenticatable.java: -------------------------------------------------------------------------------- 1 | package com.external.stomp; 2 | 3 | import java.util.Map; 4 | 5 | /** 6 | * (c)2005 Sean Russell 7 | */ 8 | public interface Authenticatable extends MessageReceiver { 9 | public void error( Map headers, String b ); 10 | public Object token(); 11 | } 12 | 13 | -------------------------------------------------------------------------------- /res/anim/push_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/push_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /src/com/external/stomp/MessageReceiver.java: -------------------------------------------------------------------------------- 1 | package com.external.stomp; 2 | 3 | import java.util.Map; 4 | 5 | /** 6 | * (c)2005 Sean Russell 7 | */ 8 | public interface MessageReceiver { 9 | public void receive( Command c, Map h, String b ); 10 | public void disconnect(); 11 | public boolean isClosed(); 12 | } 13 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/textbg_select.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/push_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | -------------------------------------------------------------------------------- /res/anim/push_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | -------------------------------------------------------------------------------- /src/com/external/viewpagerindicator/IconPagerAdapter.java: -------------------------------------------------------------------------------- 1 | package com.external.viewpagerindicator; 2 | 3 | public interface IconPagerAdapter { 4 | /** 5 | * Get icon representing the page at {@code index} in the adapter. 6 | */ 7 | int getIconResId(int index); 8 | 9 | // From PagerAdapter 10 | int getCount(); 11 | } 12 | -------------------------------------------------------------------------------- /res/drawable/f_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /res/drawable/progress_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/com/external/imagezoom/easing/Easing.java: -------------------------------------------------------------------------------- 1 | package com.external.imagezoom.easing; 2 | 3 | public interface Easing { 4 | 5 | double easeOut( double time, double start, double end, double duration ); 6 | 7 | double easeIn( double time, double start, double end, double duration ); 8 | 9 | double easeInOut( double time, double start, double end, double duration ); 10 | } 11 | -------------------------------------------------------------------------------- /src/com/BeeFramework/model/BusinessResponse.java: -------------------------------------------------------------------------------- 1 | package com.BeeFramework.model; 2 | 3 | import com.external.androidquery.callback.AjaxStatus; 4 | import org.json.JSONException; 5 | import org.json.JSONObject; 6 | 7 | public interface BusinessResponse 8 | { 9 | public abstract void OnMessageResponse(String url, JSONObject jo, AjaxStatus status) throws JSONException; 10 | } 11 | -------------------------------------------------------------------------------- /src/com/external/imagezoom/graphics/IBitmapDrawable.java: -------------------------------------------------------------------------------- 1 | package com.external.imagezoom.graphics; 2 | 3 | import com.external.imagezoom.ImageViewTouchBase; 4 | import android.graphics.Bitmap; 5 | 6 | /** 7 | * Base interface used in the {@link ImageViewTouchBase} view 8 | * @author alessandro 9 | * 10 | */ 11 | public interface IBitmapDrawable { 12 | 13 | Bitmap getBitmap(); 14 | } 15 | -------------------------------------------------------------------------------- /src/com/external/HorizontalVariableListView/utils/DataSetObserverExtended.java: -------------------------------------------------------------------------------- 1 | package com.external.HorizontalVariableListView.utils; 2 | 3 | import android.database.DataSetObserver; 4 | 5 | public abstract class DataSetObserverExtended extends DataSetObserver { 6 | 7 | public void onAdded() { 8 | // Do Nothing 9 | } 10 | 11 | public void onRemoved() { 12 | // Do Nothing 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 25.0dp 4 | 5 | 6 | 16dp 7 | 16dp 8 | 13px 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/com/BeeFramework/view/BeeInjectId.java: -------------------------------------------------------------------------------- 1 | package com.BeeFramework.view; 2 | 3 | import java.lang.annotation.ElementType; 4 | import java.lang.annotation.Retention; 5 | import java.lang.annotation.RetentionPolicy; 6 | import java.lang.annotation.Target; 7 | 8 | @Target(ElementType.FIELD) 9 | @Retention(RetentionPolicy.RUNTIME) 10 | public @interface BeeInjectId { 11 | /** View��ID */ 12 | public int id() default -1; 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/com/external/stomp/Version.java: -------------------------------------------------------------------------------- 1 | package com.external.stomp; 2 | 3 | /** 4 | * (c)2005 Sean Russell 5 | */ 6 | public class Version { 7 | public static final String REVISION = "75"; 8 | public static final String RELEASE = "0.4.1"; 9 | public static final String COPYRIGHT = "(c)2005 Sean Russell"; 10 | public static final String LICENSE = "LGPL"; 11 | public static final String VERSION = "v"+RELEASE+" ("+REVISION+") "+COPYRIGHT; 12 | } 13 | 14 | -------------------------------------------------------------------------------- /.idea/libraries/universal_image_loader_1_8_6_with_sources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /res/anim/rotate.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | -------------------------------------------------------------------------------- /res/drawable-hdpi/toolbar_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | -------------------------------------------------------------------------------- /res/drawable-hdpi/footer_active_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | -------------------------------------------------------------------------------- /local.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 *NOT* be checked into Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | 7 | # location of the SDK. This is only used by Ant 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=/Users/mc374/adt-bundle-mac-x86_64/sdk 11 | -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/dialog_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /res/drawable/download_dialog_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /res/drawable/seekbar_img.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 12 | -------------------------------------------------------------------------------- /res/drawable/tab_select.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/com/external/androidquery/callback/ImageOptions.java: -------------------------------------------------------------------------------- 1 | package com.external.androidquery.callback; 2 | 3 | import android.graphics.Bitmap; 4 | import com.external.androidquery.AQuery; 5 | 6 | public class ImageOptions { 7 | 8 | public boolean memCache = true; 9 | public boolean fileCache = true; 10 | public Bitmap preset; 11 | public int policy; 12 | 13 | public int targetWidth; 14 | public int fallback; 15 | public int animation; 16 | public float ratio; 17 | public int round; 18 | public float anchor = AQuery.ANCHOR_DYNAMIC; 19 | 20 | 21 | } 22 | -------------------------------------------------------------------------------- /src/com/external/stomp/Message.java: -------------------------------------------------------------------------------- 1 | package com.external.stomp; 2 | 3 | import java.util.Map; 4 | 5 | /** 6 | * (c)2005 Sean Russell 7 | */ 8 | public class Message { 9 | private Command _command; 10 | private Map _headers; 11 | private String _body; 12 | protected Message( Command c, Map h, String b ) { 13 | _command = c; 14 | _headers = h; 15 | _body = b; 16 | } 17 | public Map headers() { return _headers; } 18 | public String body() { return _body; } 19 | public Command command() { return _command; } 20 | } 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /res/layout/webview.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /res/layout/shot_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 13 | 14 | -------------------------------------------------------------------------------- /src/com/external/imagezoom/easing/Sine.java: -------------------------------------------------------------------------------- 1 | package com.external.imagezoom.easing; 2 | 3 | public class Sine implements Easing { 4 | 5 | @Override 6 | public double easeOut( double t, double b, double c, double d ) { 7 | return c * Math.sin( t / d * ( Math.PI / 2 ) ) + b; 8 | } 9 | 10 | @Override 11 | public double easeIn( double t, double b, double c, double d ) { 12 | return -c * Math.cos( t / d * ( Math.PI / 2 ) ) + c + b; 13 | } 14 | 15 | @Override 16 | public double easeInOut( double t, double b, double c, double d ) { 17 | return -c / 2 * ( Math.cos( Math.PI * t / d ) - 1 ) + b; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/com/external/imagezoom/easing/Quad.java: -------------------------------------------------------------------------------- 1 | package com.external.imagezoom.easing; 2 | 3 | public class Quad implements Easing { 4 | 5 | @Override 6 | public double easeOut( double t, double b, double c, double d ) { 7 | return -c * ( t /= d ) * ( t - 2 ) + b; 8 | } 9 | 10 | @Override 11 | public double easeIn( double t, double b, double c, double d ) { 12 | return c * ( t /= d ) * t + b; 13 | } 14 | 15 | @Override 16 | public double easeInOut( double t, double b, double c, double d ) { 17 | if ( ( t /= d / 2 ) < 1 ) return c / 2 * t * t + b; 18 | return -c / 2 * ( ( --t ) * ( t - 2 ) - 1 ) + b; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /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 | android.library=false 14 | # Project target. 15 | target=android-19 16 | -------------------------------------------------------------------------------- /res/layout/activity_lifecycle_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 13 | 14 | -------------------------------------------------------------------------------- /src/com/external/imagezoom/easing/Quart.java: -------------------------------------------------------------------------------- 1 | package com.external.imagezoom.easing; 2 | 3 | public class Quart implements Easing { 4 | 5 | @Override 6 | public double easeOut( double t, double b, double c, double d ) { 7 | return -c * ( ( t = t / d - 1 ) * t * t * t - 1 ) + b; 8 | } 9 | 10 | @Override 11 | public double easeIn( double t, double b, double c, double d ) { 12 | return c * ( t /= d ) * t * t * t + b; 13 | } 14 | 15 | @Override 16 | public double easeInOut( double t, double b, double c, double d ) { 17 | if ( ( t /= d / 2 ) < 1 ) return c / 2 * t * t * t * t + b; 18 | return -c / 2 * ( ( t -= 2 ) * t * t * t - 2 ) + b; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /src/com/external/imagezoom/easing/Quint.java: -------------------------------------------------------------------------------- 1 | package com.external.imagezoom.easing; 2 | 3 | public class Quint implements Easing { 4 | 5 | @Override 6 | public double easeOut( double t, double b, double c, double d ) { 7 | return c * ( ( t = t / d - 1 ) * t * t * t * t + 1 ) + b; 8 | } 9 | 10 | @Override 11 | public double easeIn( double t, double b, double c, double d ) { 12 | return c * ( t /= d ) * t * t * t * t + b; 13 | } 14 | 15 | @Override 16 | public double easeInOut( double t, double b, double c, double d ) { 17 | if ( ( t /= d / 2 ) < 1 ) return c / 2 * t * t * t * t * t + b; 18 | return c / 2 * ( ( t -= 2 ) * t * t * t * t + 2 ) + b; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /res/layout/splash.xml: -------------------------------------------------------------------------------- 1 | 13 | 14 | -------------------------------------------------------------------------------- /res/layout/gallery_image_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 11 | 12 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /res/layout/theme_download_activity.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 12 | 15 | -------------------------------------------------------------------------------- /res/layout/profile_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /res/layout/crash_log_activity.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 12 | 15 | -------------------------------------------------------------------------------- /src/com/external/imagezoom/easing/Linear.java: -------------------------------------------------------------------------------- 1 | package com.external.imagezoom.easing; 2 | 3 | public class Linear implements Easing { 4 | 5 | public double easeNone( double time, double start, double end, double duration ) { 6 | return end * time / duration + start; 7 | } 8 | 9 | @Override 10 | public double easeOut( double time, double start, double end, double duration ) { 11 | return end * time / duration + start; 12 | } 13 | 14 | @Override 15 | public double easeIn( double time, double start, double end, double duration ) { 16 | return end * time / duration + start; 17 | } 18 | 19 | @Override 20 | public double easeInOut( double time, double start, double end, double duration ) { 21 | return end * time / duration + start; 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /ant.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked into Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | -------------------------------------------------------------------------------- /res/layout/trend_activity.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 13 | 14 | -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | BeeExample 4 | 5 | 6 | 下拉刷新 7 | 松开刷新数据 8 | 正在加载... 9 | 上次更新时间: 10 | 查看更多 11 | 松开载入更多 12 | Love coding and hand-drawing, while he is also skilled in HTML and CSS and JS. 13 | What he always saying is "Fight, a way of surviving ~". 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/com/external/imagezoom/easing/Cubic.java: -------------------------------------------------------------------------------- 1 | package com.external.imagezoom.easing; 2 | 3 | public class Cubic implements Easing { 4 | 5 | @Override 6 | public double easeOut( double time, double start, double end, double duration ) { 7 | return end * ( ( time = time / duration - 1.0 ) * time * time + 1.0 ) + start; 8 | } 9 | 10 | @Override 11 | public double easeIn( double time, double start, double end, double duration ) { 12 | return end * ( time /= duration ) * time * time + start; 13 | } 14 | 15 | @Override 16 | public double easeInOut( double time, double start, double end, double duration ) { 17 | if ( ( time /= duration / 2.0 ) < 1.0 ) return end / 2.0 * time * time * time + start; 18 | return end / 2.0 * ( ( time -= 2.0 ) * time * time + 2.0 ) + start; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /res/layout/debug_message_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/com/external/activeandroid/query/Sqlable.java: -------------------------------------------------------------------------------- 1 | package com.external.activeandroid.query; 2 | 3 | /* 4 | * Copyright (C) 2010 Michael Pardo 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | public interface Sqlable { 20 | public String toSql(); 21 | } -------------------------------------------------------------------------------- /res/layout/shot.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 9 | 10 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /res/layout/followers_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/com/external/imagezoom/easing/Circ.java: -------------------------------------------------------------------------------- 1 | package com.external.imagezoom.easing; 2 | 3 | public class Circ implements Easing { 4 | 5 | @Override 6 | public double easeOut( double time, double start, double end, double duration ) { 7 | return end * Math.sqrt( 1.0 - ( time = time / duration - 1.0 ) * time ) + start; 8 | } 9 | 10 | @Override 11 | public double easeIn( double time, double start, double end, double duration ) { 12 | return -end * ( Math.sqrt( 1.0 - ( time /= duration ) * time ) - 1.0 ) + start; 13 | } 14 | 15 | @Override 16 | public double easeInOut( double time, double start, double end, double duration ) { 17 | if ( ( time /= duration / 2 ) < 1 ) return -end / 2.0 * ( Math.sqrt( 1.0 - time * time ) - 1.0 ) + start; 18 | return end / 2.0 * ( Math.sqrt( 1.0 - ( time -= 2.0 ) * time ) + 1.0 ) + start; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /res/layout/download.xml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 13 | 14 | 15 |