├── bin ├── .gitignore ├── Busleep.apk ├── classes.dex ├── resources.ap_ ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ ├── pre_.png │ │ ├── next_.png │ │ ├── popup.png │ │ ├── msg_tips.png │ │ ├── top_bar.9.png │ │ ├── ic_launcher.png │ │ ├── right_arrow.png │ │ ├── base_dialog_bg.9.png │ │ ├── ic_refresh_redrection.png │ │ └── base_horizontal_line.9.png │ │ ├── drawable-xhdpi │ │ ├── off.png │ │ ├── on.png │ │ ├── arrow.png │ │ ├── ic_launcher.png │ │ ├── ic_navi_about.png │ │ ├── ic_navi_home.png │ │ ├── ic_action_edit.png │ │ ├── icon_msg_search.png │ │ ├── icon_set_normal.png │ │ ├── icon_set_press.png │ │ ├── item_botton_bar.png │ │ ├── base_edit_input.9.png │ │ ├── default_ptr_rotate.png │ │ ├── ic_navi_feedback.png │ │ ├── icon_contact_press.png │ │ ├── icon_message_press.png │ │ ├── icon_contact_normal.png │ │ ├── icon_message_normal.png │ │ ├── search_clear_normal.png │ │ ├── search_clear_pressed.png │ │ ├── ic_refresh_redrection.png │ │ ├── base_action_bar_back_bg_n.png │ │ ├── base_action_bar_back_bg_p.png │ │ ├── base_action_bar_navi_bg_p.png │ │ ├── base_action_bar_baidu_bg_n.png │ │ └── base_action_bar_baidu_bg_p.png │ │ ├── drawable-mdpi │ │ ├── ic_launcher.png │ │ └── ic_refresh_redrection.png │ │ └── drawable-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_refresh_redrection.png ├── dexedLibs │ ├── locSDK_3.1-9ec55c8b58a9c141e15993ac65f3abc0.jar │ ├── appcompat_v7_2-c8c0b8becc51966c8a044fd331781dd9.jar │ ├── android-support-v4-c3f6e773c74b6afafab8d884e58877cc.jar │ ├── baidumapapi_v3_1_0-75f0276cdb29f7a19b7b46c70af0d9a2.jar │ └── android-support-v7-appcompat-276c9181f6cc5d187029a07b6079d519.jar ├── jarlist.cache └── AndroidManifest.xml ├── ic_launcher-web.png ├── libs ├── locSDK_3.1.jar ├── android-support-v4.jar ├── armeabi │ ├── liblocSDK3.so │ └── libBaiduMapSDK_v3_1_0.so └── baidumapapi_v3_1_0.jar ├── res ├── raw │ └── notify.mp3 ├── drawable-hdpi │ ├── next_.png │ ├── popup.png │ ├── pre_.png │ ├── msg_tips.png │ ├── top_bar.9.png │ ├── ic_launcher.png │ ├── right_arrow.png │ ├── base_dialog_bg.9.png │ ├── base_horizontal_line.9.png │ └── ic_refresh_redrection.png ├── drawable-xhdpi │ ├── off.png │ ├── on.png │ ├── arrow.png │ ├── ic_launcher.png │ ├── ic_action_edit.png │ ├── ic_navi_about.png │ ├── ic_navi_home.png │ ├── icon_set_press.png │ ├── ic_navi_feedback.png │ ├── icon_msg_search.png │ ├── icon_set_normal.png │ ├── item_botton_bar.png │ ├── base_edit_input.9.png │ ├── default_ptr_rotate.png │ ├── icon_contact_normal.png │ ├── icon_contact_press.png │ ├── icon_message_normal.png │ ├── icon_message_press.png │ ├── search_clear_normal.png │ ├── ic_refresh_redrection.png │ ├── search_clear_pressed.png │ ├── base_action_bar_back_bg_n.png │ ├── base_action_bar_back_bg_p.png │ ├── base_action_bar_baidu_bg_n.png │ ├── base_action_bar_baidu_bg_p.png │ └── base_action_bar_navi_bg_p.png ├── drawable-mdpi │ ├── ic_launcher.png │ └── ic_refresh_redrection.png ├── drawable-xxhdpi │ ├── ic_launcher.png │ └── ic_refresh_redrection.png ├── values │ ├── ids_sliding.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ ├── attrs_sliding.xml │ └── styles.xml ├── layout │ ├── fragment_station.xml │ ├── frame_navi.xml │ ├── slidingmenumain.xml │ ├── include_action_bar.xml │ ├── fragment_sleep_plan.xml │ ├── activity_main.xml │ ├── fragment_bus_near.xml │ ├── activity_sleep_plan.xml │ ├── common_header_leftbutton.xml │ ├── common_header_rightbutton.xml │ ├── item_bus_stations.xml │ ├── xlistview_footer.xml │ ├── activity_splash.xml │ ├── fragment_route.xml │ ├── common_header.xml │ ├── activity_busline_baidu_map.xml │ ├── xlistview_header.xml │ ├── fragment_bus_query.xml │ ├── item_bus_near.xml │ ├── item_sleep_alarm.xml │ ├── behind_slidingmenu.xml │ ├── activity_busline_detail.xml │ └── v2_dialog_base.xml ├── drawable │ ├── slidingmenu_shadow.xml │ ├── item_bus_near_bg_selector.xml │ ├── search_clear.xml │ ├── tab_sleep_plan_btn.xml │ ├── tab_collect_btn.xml │ ├── tab_reverse_busline_btn.xml │ ├── dialog_shape_pressed.xml │ ├── tab_textcolor.xml │ ├── dialog_shape_normal.xml │ ├── item_sleep_plan_bg_selector.xml │ ├── dialog_btn_selector.xml │ ├── base_action_bar_back_bg_selector.xml │ ├── base_action_bar_baidu_bg_selector.xml │ └── base_action_bar_navi_bg_selector.xml ├── values-v11 │ └── styles.xml ├── menu │ └── sleep_plan.xml ├── values-w820dp │ └── dimens.xml └── values-v14 │ └── styles.xml ├── ic_refresh_redrection-web.png ├── .settings └── org.eclipse.core.resources.prefs ├── src └── com │ └── busleep │ ├── ui │ ├── fragment │ │ ├── StationFragment.java │ │ ├── MoreFragment.java │ │ ├── TransferFragment.java │ │ ├── ShareFragment.java │ │ ├── MainFragment.java │ │ ├── RouteFragment.java │ │ ├── BusQueryFragment.java │ │ └── BusNearFragment.java │ ├── SplashActivity.java │ ├── SleepPlanActivity.java │ ├── base │ │ ├── BaseFragment.java │ │ ├── BaseActivity.java │ │ ├── BaseFragmentActivity.java │ │ └── BaseSlidingFragmentActivity.java │ ├── MainActivity.java │ └── BuslineBaiduMapActivity.java │ ├── utils │ ├── ToastFactory.java │ ├── NetWorksUtils.java │ ├── LogUtils.java │ ├── StringUtil.java │ ├── CommonUtil.java │ └── PixelUtil.java │ ├── config │ └── Constant.java │ ├── bean │ ├── MrBusLine.java │ ├── MrNearbyBus.java │ └── MrAlarm.java │ ├── db │ ├── AlarmColumn.java │ ├── DatabaseColumn.java │ ├── DBHelper.java │ └── DBProvider.java │ ├── adapter │ ├── BusLineStationsAdapter.java │ ├── BusNearAdapter.java │ └── AlarmAdapter.java │ ├── view │ └── dialog │ │ └── DialogTips.java │ ├── baidu │ ├── LocationHelper.java │ └── BusLineHelper.java │ ├── slidingmenu │ └── SlidingActivityBase.java │ ├── app │ ├── CustomApplication.java │ └── SleepPlanService.java │ └── widget │ ├── XListViewFooter.java │ ├── ClearEditText.java │ └── XListViewHeader.java ├── project.properties ├── .classpath ├── proguard-project.txt ├── .project └── AndroidManifest.xml /bin/.gitignore: -------------------------------------------------------------------------------- 1 | /classes/ 2 | -------------------------------------------------------------------------------- /bin/Busleep.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/Busleep.apk -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/locSDK_3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/libs/locSDK_3.1.jar -------------------------------------------------------------------------------- /res/raw/notify.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/raw/notify.mp3 -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/armeabi/liblocSDK3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/libs/armeabi/liblocSDK3.so -------------------------------------------------------------------------------- /libs/baidumapapi_v3_1_0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/libs/baidumapapi_v3_1_0.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/next_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-hdpi/next_.png -------------------------------------------------------------------------------- /res/drawable-hdpi/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-hdpi/popup.png -------------------------------------------------------------------------------- /res/drawable-hdpi/pre_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-hdpi/pre_.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/off.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/on.png -------------------------------------------------------------------------------- /ic_refresh_redrection-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/ic_refresh_redrection-web.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/arrow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/msg_tips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-hdpi/msg_tips.png -------------------------------------------------------------------------------- /res/drawable-hdpi/top_bar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-hdpi/top_bar.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-hdpi/right_arrow.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/pre_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-hdpi/pre_.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/off.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/on.png -------------------------------------------------------------------------------- /libs/armeabi/libBaiduMapSDK_v3_1_0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/libs/armeabi/libBaiduMapSDK_v3_1_0.so -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/ic_action_edit.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_navi_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/ic_navi_about.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_navi_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/ic_navi_home.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_set_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/icon_set_press.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/next_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-hdpi/next_.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-hdpi/popup.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/arrow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/base_dialog_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-hdpi/base_dialog_bg.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_navi_feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/ic_navi_feedback.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_msg_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/icon_msg_search.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_set_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/icon_set_normal.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/item_botton_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/item_botton_bar.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/msg_tips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-hdpi/msg_tips.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/top_bar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-hdpi/top_bar.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/base_edit_input.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/base_edit_input.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_contact_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/icon_contact_normal.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_contact_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/icon_contact_press.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_message_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/icon_message_normal.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/icon_message_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/icon_message_press.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/search_clear_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/search_clear_normal.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-hdpi/right_arrow.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/base_horizontal_line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-hdpi/base_horizontal_line.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_refresh_redrection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-hdpi/ic_refresh_redrection.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_refresh_redrection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-mdpi/ic_refresh_redrection.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_refresh_redrection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/ic_refresh_redrection.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/search_clear_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/search_clear_pressed.png -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/com/busleep/widget/XListViewHeader.java=UTF-8 3 | -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_navi_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/ic_navi_about.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_navi_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/ic_navi_home.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_refresh_redrection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xxhdpi/ic_refresh_redrection.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/base_dialog_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-hdpi/base_dialog_bg.9.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/ic_action_edit.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/icon_msg_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/icon_msg_search.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/icon_set_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/icon_set_normal.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/icon_set_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/icon_set_press.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/item_botton_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/item_botton_bar.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/base_action_bar_back_bg_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/base_action_bar_back_bg_n.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/base_action_bar_back_bg_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/base_action_bar_back_bg_p.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/base_action_bar_baidu_bg_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/base_action_bar_baidu_bg_n.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/base_action_bar_baidu_bg_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/base_action_bar_baidu_bg_p.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/base_action_bar_navi_bg_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/res/drawable-xhdpi/base_action_bar_navi_bg_p.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/base_edit_input.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/base_edit_input.9.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/default_ptr_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/default_ptr_rotate.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_navi_feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/ic_navi_feedback.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/icon_contact_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/icon_contact_press.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/icon_message_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/icon_message_press.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_refresh_redrection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-hdpi/ic_refresh_redrection.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_refresh_redrection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-mdpi/ic_refresh_redrection.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/icon_contact_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/icon_contact_normal.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/icon_message_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/icon_message_normal.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/search_clear_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/search_clear_normal.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/search_clear_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/search_clear_pressed.png -------------------------------------------------------------------------------- /res/values/ids_sliding.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/base_horizontal_line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-hdpi/base_horizontal_line.9.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_refresh_redrection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/ic_refresh_redrection.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_refresh_redrection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xxhdpi/ic_refresh_redrection.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/base_action_bar_back_bg_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/base_action_bar_back_bg_n.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/base_action_bar_back_bg_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/base_action_bar_back_bg_p.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/base_action_bar_navi_bg_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/base_action_bar_navi_bg_p.png -------------------------------------------------------------------------------- /bin/dexedLibs/locSDK_3.1-9ec55c8b58a9c141e15993ac65f3abc0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/dexedLibs/locSDK_3.1-9ec55c8b58a9c141e15993ac65f3abc0.jar -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/base_action_bar_baidu_bg_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/base_action_bar_baidu_bg_n.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/base_action_bar_baidu_bg_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/res/crunch/drawable-xhdpi/base_action_bar_baidu_bg_p.png -------------------------------------------------------------------------------- /bin/dexedLibs/appcompat_v7_2-c8c0b8becc51966c8a044fd331781dd9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/dexedLibs/appcompat_v7_2-c8c0b8becc51966c8a044fd331781dd9.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-c3f6e773c74b6afafab8d884e58877cc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/dexedLibs/android-support-v4-c3f6e773c74b6afafab8d884e58877cc.jar -------------------------------------------------------------------------------- /bin/dexedLibs/baidumapapi_v3_1_0-75f0276cdb29f7a19b7b46c70af0d9a2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/dexedLibs/baidumapapi_v3_1_0-75f0276cdb29f7a19b7b46c70af0d9a2.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v7-appcompat-276c9181f6cc5d187029a07b6079d519.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoGY/Busleep/HEAD/bin/dexedLibs/android-support-v7-appcompat-276c9181f6cc5d187029a07b6079d519.jar -------------------------------------------------------------------------------- /src/com/busleep/ui/fragment/StationFragment.java: -------------------------------------------------------------------------------- 1 | package com.busleep.ui.fragment; 2 | 3 | import com.busleep.ui.base.BaseFragment; 4 | 5 | /** 6 | * 公交查询站点的片段; 7 | */ 8 | public class StationFragment extends BaseFragment { 9 | 10 | 11 | } 12 | -------------------------------------------------------------------------------- /src/com/busleep/ui/fragment/MoreFragment.java: -------------------------------------------------------------------------------- 1 | package com.busleep.ui.fragment; 2 | 3 | import com.busleep.ui.base.BaseFragment; 4 | 5 | /** 6 | * 更多...片段; 7 | * @author Render 8 | */ 9 | public class MoreFragment extends BaseFragment{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /src/com/busleep/ui/fragment/TransferFragment.java: -------------------------------------------------------------------------------- 1 | package com.busleep.ui.fragment; 2 | 3 | import com.busleep.ui.base.BaseFragment; 4 | 5 | /** 6 | * 换乘片段; 7 | * @author Render; 8 | */ 9 | public class TransferFragment extends BaseFragment{ 10 | 11 | } 12 | -------------------------------------------------------------------------------- /res/layout/fragment_station.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/layout/frame_navi.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /src/com/busleep/ui/fragment/ShareFragment.java: -------------------------------------------------------------------------------- 1 | package com.busleep.ui.fragment; 2 | 3 | import com.busleep.ui.base.BaseFragment; 4 | 5 | /** 6 | * 分享片段; 7 | * @author Render; 8 | * 9 | */ 10 | public class ShareFragment extends BaseFragment { 11 | 12 | } 13 | -------------------------------------------------------------------------------- /res/layout/slidingmenumain.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/com/busleep/ui/fragment/MainFragment.java: -------------------------------------------------------------------------------- 1 | package com.busleep.ui.fragment; 2 | 3 | import com.busleep.ui.base.BaseFragment; 4 | 5 | /** 6 | * 主页的片段对象; 7 | * @author Render; 8 | * 9 | */ 10 | public class MainFragment extends BaseFragment{ 11 | 12 | 13 | 14 | } 15 | -------------------------------------------------------------------------------- /res/drawable/slidingmenu_shadow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /res/drawable/item_bus_near_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/search_clear.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/tab_sleep_plan_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/layout/include_action_bar.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /res/drawable/tab_collect_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/tab_reverse_busline_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/dialog_shape_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/drawable/tab_textcolor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/dialog_shape_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | 1408782680734 627582 cb6883d96005bc85b3e868f204507ea5b4fa9bbf F:\Workspace\AndroidDevelop\MySelf\Busleep\libs\android-support-v4.jar 5 | 1389936690000 627582 cb6883d96005bc85b3e868f204507ea5b4fa9bbf F:\Workspace\AndroidDevelop\MySelf\appcompat_v7_2\libs\android-support-v4.jar 6 | -------------------------------------------------------------------------------- /res/drawable/item_sleep_plan_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/dialog_btn_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /res/menu/sleep_plan.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /res/drawable/base_action_bar_back_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/base_action_bar_baidu_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /res/drawable/base_action_bar_navi_bg_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/layout/fragment_sleep_plan.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | android.library.reference.1=../appcompat_v7_2 16 | -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 11 | 12 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /res/layout/fragment_bus_near.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /res/layout/activity_sleep_plan.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 9 | 10 | 15 | 16 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /res/layout/common_header_leftbutton.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 21 | 22 | -------------------------------------------------------------------------------- /src/com/busleep/utils/ToastFactory.java: -------------------------------------------------------------------------------- 1 | package com.busleep.utils; 2 | 3 | import android.content.Context; 4 | import android.widget.Toast; 5 | 6 | /** 7 | * 解决Toast重复出现多次,保持全局只有一个Toast实例 8 | * 9 | * @author Render 10 | * 11 | */ 12 | public class ToastFactory { 13 | private static Context context = null; 14 | private static Toast toast = null; 15 | 16 | public static Toast getToast(Context context, String text) { 17 | if (ToastFactory.context == context) { 18 | // toast.cancel(); 19 | toast.setText(text); 20 | toast.setDuration(Toast.LENGTH_SHORT); 21 | 22 | } else { 23 | 24 | ToastFactory.context = context; 25 | toast = Toast.makeText(context, text, Toast.LENGTH_SHORT); 26 | } 27 | return toast; 28 | } 29 | 30 | public static void cancelToast() { 31 | if (toast != null) { 32 | toast.cancel(); 33 | } 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /src/com/busleep/ui/SplashActivity.java: -------------------------------------------------------------------------------- 1 | package com.busleep.ui; 2 | 3 | import com.mr.busleep.R; 4 | import com.busleep.ui.base.BaseActivity; 5 | 6 | import android.os.Bundle; 7 | import android.os.Handler; 8 | 9 | public class SplashActivity extends BaseActivity { 10 | 11 | private static final long DELAY_TIME = 2000L; 12 | 13 | @Override 14 | protected void onCreate(Bundle savedInstanceState) { 15 | super.onCreate(savedInstanceState); 16 | setContentView(R.layout.activity_splash); 17 | 18 | //定位到主页面; 19 | redirectByTime(); 20 | } 21 | 22 | private void redirectByTime() { 23 | new Handler().postDelayed(new Runnable() { 24 | 25 | @Override 26 | public void run() { 27 | // TODO Auto-generated method stub 28 | redictToActivity(SplashActivity.this, MainActivity.class, null); 29 | finish(); 30 | } 31 | }, DELAY_TIME); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /res/layout/common_header_rightbutton.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 |