From 0e687f12bd2653adb55ea002b39292678366c525 Mon Sep 17 00:00:00 2001 From: goblin911 Date: Sun, 25 Aug 2013 21:18:19 +0800 Subject: ... --- client/Piztor/res/drawable/bottom_img.png | Bin 0 -> 525331 bytes client/Piztor/res/drawable/footbar_background.png | Bin 0 -> 23943 bytes .../res/drawable/footbar_btn_checkin_style.xml | 7 + .../res/drawable/footbar_btn_fetch_style.xml | 6 + .../res/drawable/footbar_btn_focus_style.xml | 6 + .../res/drawable/footbar_btn_search_style.xml | 6 + .../res/drawable/footbar_btn_settings_style.xml | 6 + client/Piztor/res/drawable/footbar_checkin.png | Bin 0 -> 468 bytes client/Piztor/res/drawable/footbar_checkin_1.png | Bin 0 -> 3371 bytes client/Piztor/res/drawable/footbar_fetch.png | Bin 0 -> 2541 bytes client/Piztor/res/drawable/footbar_fetch_1.png | Bin 0 -> 3093 bytes client/Piztor/res/drawable/footbar_marker.png | Bin 0 -> 1866 bytes client/Piztor/res/drawable/footbar_marker_1.png | Bin 0 -> 3288 bytes client/Piztor/res/drawable/footbar_search.png | Bin 0 -> 2127 bytes client/Piztor/res/drawable/footbar_search_1.png | Bin 0 -> 3589 bytes client/Piztor/res/drawable/footbar_select_bg.png | Bin 0 -> 8919 bytes client/Piztor/res/drawable/footbar_settings.png | Bin 0 -> 1372 bytes client/Piztor/res/drawable/footbar_settings_1.png | Bin 0 -> 3442 bytes client/Piztor/res/drawable/footbar_unselect_bg.png | Bin 0 -> 165 bytes client/Piztor/res/drawable/horizontal_line.png | Bin 0 -> 796 bytes client/Piztor/res/drawable/navigation_back.png | Bin 0 -> 1324 bytes client/Piztor/res/drawable/navigation_back_1.png | Bin 0 -> 401 bytes client/Piztor/res/drawable/title_logo.png | Bin 0 -> 1031640 bytes client/Piztor/res/drawable/topbar_background.png | Bin 0 -> 23763 bytes client/Piztor/res/layout/activity_gather.xml | 23 ++ client/Piztor/res/layout/activity_login.xml | 92 ++++++++ client/Piztor/res/layout/activity_main.xml | 23 ++ client/Piztor/res/layout/activity_setting.xml | 149 +++++++++++++ client/Piztor/res/layout/activity_settings.xml | 149 +++++++++++++ client/Piztor/res/layout/gather_footbar.xml | 133 ++++++++++++ client/Piztor/res/layout/gather_timer.xml | 16 ++ client/Piztor/res/layout/login_bottom.xml | 13 ++ client/Piztor/res/layout/main_footbar.xml | 107 +++++++++ client/Piztor/res/layout/main_headbar.xml | 29 +++ client/Piztor/res/layout/settings_headbar.xml | 29 +++ client/Piztor/res/menu/login.xml | 9 + client/Piztor/res/menu/setting.xml | 9 + .../Piztor/src/com/macaroon/piztor/GPSTracker.java | 241 +++++++++++++++++++++ .../Piztor/src/com/macaroon/piztor/Infomation.java | 30 +++ client/Piztor/src/com/macaroon/piztor/Login.java | 106 +++++++++ client/Piztor/src/com/macaroon/piztor/Main.java | 205 ++++++++++++++++++ .../src/com/macaroon/piztor/PiztorExcepiton.java | 10 + client/Piztor/src/com/macaroon/piztor/Req.java | 14 ++ .../src/com/macaroon/piztor/ReqLocation.java | 14 ++ .../Piztor/src/com/macaroon/piztor/ReqLogin.java | 16 ++ .../Piztor/src/com/macaroon/piztor/ReqUpdate.java | 16 ++ client/Piztor/src/com/macaroon/piztor/Res.java | 11 + .../src/com/macaroon/piztor/ResLocation.java | 18 ++ .../Piztor/src/com/macaroon/piztor/ResLogin.java | 15 ++ .../Piztor/src/com/macaroon/piztor/ResUpdate.java | 13 ++ .../Piztor/src/com/macaroon/piztor/Rlocation.java | 13 ++ client/Piztor/src/com/macaroon/piztor/Setting.java | 22 ++ .../src/com/macaroon/piztor/SocketClient.java | 107 +++++++++ client/Piztor/src/com/macaroon/piztor/Tracker.java | 66 ++++++ client/Piztor/src/com/macaroon/piztor/Transam.java | 139 ++++++++++++ 55 files changed, 1868 insertions(+) create mode 100644 client/Piztor/res/drawable/bottom_img.png create mode 100644 client/Piztor/res/drawable/footbar_background.png create mode 100644 client/Piztor/res/drawable/footbar_btn_checkin_style.xml create mode 100644 client/Piztor/res/drawable/footbar_btn_fetch_style.xml create mode 100644 client/Piztor/res/drawable/footbar_btn_focus_style.xml create mode 100644 client/Piztor/res/drawable/footbar_btn_search_style.xml create mode 100644 client/Piztor/res/drawable/footbar_btn_settings_style.xml create mode 100644 client/Piztor/res/drawable/footbar_checkin.png create mode 100644 client/Piztor/res/drawable/footbar_checkin_1.png create mode 100644 client/Piztor/res/drawable/footbar_fetch.png create mode 100644 client/Piztor/res/drawable/footbar_fetch_1.png create mode 100644 client/Piztor/res/drawable/footbar_marker.png create mode 100644 client/Piztor/res/drawable/footbar_marker_1.png create mode 100644 client/Piztor/res/drawable/footbar_search.png create mode 100644 client/Piztor/res/drawable/footbar_search_1.png create mode 100644 client/Piztor/res/drawable/footbar_select_bg.png create mode 100644 client/Piztor/res/drawable/footbar_settings.png create mode 100644 client/Piztor/res/drawable/footbar_settings_1.png create mode 100644 client/Piztor/res/drawable/footbar_unselect_bg.png create mode 100644 client/Piztor/res/drawable/horizontal_line.png create mode 100644 client/Piztor/res/drawable/navigation_back.png create mode 100644 client/Piztor/res/drawable/navigation_back_1.png create mode 100644 client/Piztor/res/drawable/title_logo.png create mode 100644 client/Piztor/res/drawable/topbar_background.png create mode 100644 client/Piztor/res/layout/activity_gather.xml create mode 100644 client/Piztor/res/layout/activity_login.xml create mode 100644 client/Piztor/res/layout/activity_main.xml create mode 100644 client/Piztor/res/layout/activity_setting.xml create mode 100644 client/Piztor/res/layout/activity_settings.xml create mode 100644 client/Piztor/res/layout/gather_footbar.xml create mode 100644 client/Piztor/res/layout/gather_timer.xml create mode 100644 client/Piztor/res/layout/login_bottom.xml create mode 100644 client/Piztor/res/layout/main_footbar.xml create mode 100644 client/Piztor/res/layout/main_headbar.xml create mode 100644 client/Piztor/res/layout/settings_headbar.xml create mode 100644 client/Piztor/res/menu/login.xml create mode 100644 client/Piztor/res/menu/setting.xml create mode 100644 client/Piztor/src/com/macaroon/piztor/GPSTracker.java create mode 100644 client/Piztor/src/com/macaroon/piztor/Infomation.java create mode 100644 client/Piztor/src/com/macaroon/piztor/Login.java create mode 100644 client/Piztor/src/com/macaroon/piztor/Main.java create mode 100644 client/Piztor/src/com/macaroon/piztor/PiztorExcepiton.java create mode 100644 client/Piztor/src/com/macaroon/piztor/Req.java create mode 100644 client/Piztor/src/com/macaroon/piztor/ReqLocation.java create mode 100644 client/Piztor/src/com/macaroon/piztor/ReqLogin.java create mode 100644 client/Piztor/src/com/macaroon/piztor/ReqUpdate.java create mode 100644 client/Piztor/src/com/macaroon/piztor/Res.java create mode 100644 client/Piztor/src/com/macaroon/piztor/ResLocation.java create mode 100644 client/Piztor/src/com/macaroon/piztor/ResLogin.java create mode 100644 client/Piztor/src/com/macaroon/piztor/ResUpdate.java create mode 100644 client/Piztor/src/com/macaroon/piztor/Rlocation.java create mode 100644 client/Piztor/src/com/macaroon/piztor/Setting.java create mode 100644 client/Piztor/src/com/macaroon/piztor/SocketClient.java create mode 100644 client/Piztor/src/com/macaroon/piztor/Tracker.java create mode 100644 client/Piztor/src/com/macaroon/piztor/Transam.java (limited to 'client/Piztor') diff --git a/client/Piztor/res/drawable/bottom_img.png b/client/Piztor/res/drawable/bottom_img.png new file mode 100644 index 0000000..2725ea8 Binary files /dev/null and b/client/Piztor/res/drawable/bottom_img.png differ diff --git a/client/Piztor/res/drawable/footbar_background.png b/client/Piztor/res/drawable/footbar_background.png new file mode 100644 index 0000000..488e8f2 Binary files /dev/null and b/client/Piztor/res/drawable/footbar_background.png differ diff --git a/client/Piztor/res/drawable/footbar_btn_checkin_style.xml b/client/Piztor/res/drawable/footbar_btn_checkin_style.xml new file mode 100644 index 0000000..6dbeb21 --- /dev/null +++ b/client/Piztor/res/drawable/footbar_btn_checkin_style.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/client/Piztor/res/drawable/footbar_btn_fetch_style.xml b/client/Piztor/res/drawable/footbar_btn_fetch_style.xml new file mode 100644 index 0000000..379d526 --- /dev/null +++ b/client/Piztor/res/drawable/footbar_btn_fetch_style.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/client/Piztor/res/drawable/footbar_btn_focus_style.xml b/client/Piztor/res/drawable/footbar_btn_focus_style.xml new file mode 100644 index 0000000..5932f2f --- /dev/null +++ b/client/Piztor/res/drawable/footbar_btn_focus_style.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/client/Piztor/res/drawable/footbar_btn_search_style.xml b/client/Piztor/res/drawable/footbar_btn_search_style.xml new file mode 100644 index 0000000..ac786ef --- /dev/null +++ b/client/Piztor/res/drawable/footbar_btn_search_style.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/client/Piztor/res/drawable/footbar_btn_settings_style.xml b/client/Piztor/res/drawable/footbar_btn_settings_style.xml new file mode 100644 index 0000000..fca6230 --- /dev/null +++ b/client/Piztor/res/drawable/footbar_btn_settings_style.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/client/Piztor/res/drawable/footbar_checkin.png b/client/Piztor/res/drawable/footbar_checkin.png new file mode 100644 index 0000000..90afba7 Binary files /dev/null and b/client/Piztor/res/drawable/footbar_checkin.png differ diff --git a/client/Piztor/res/drawable/footbar_checkin_1.png b/client/Piztor/res/drawable/footbar_checkin_1.png new file mode 100644 index 0000000..a478d36 Binary files /dev/null and b/client/Piztor/res/drawable/footbar_checkin_1.png differ diff --git a/client/Piztor/res/drawable/footbar_fetch.png b/client/Piztor/res/drawable/footbar_fetch.png new file mode 100644 index 0000000..32d24d2 Binary files /dev/null and b/client/Piztor/res/drawable/footbar_fetch.png differ diff --git a/client/Piztor/res/drawable/footbar_fetch_1.png b/client/Piztor/res/drawable/footbar_fetch_1.png new file mode 100644 index 0000000..208094f Binary files /dev/null and b/client/Piztor/res/drawable/footbar_fetch_1.png differ diff --git a/client/Piztor/res/drawable/footbar_marker.png b/client/Piztor/res/drawable/footbar_marker.png new file mode 100644 index 0000000..3de909f Binary files /dev/null and b/client/Piztor/res/drawable/footbar_marker.png differ diff --git a/client/Piztor/res/drawable/footbar_marker_1.png b/client/Piztor/res/drawable/footbar_marker_1.png new file mode 100644 index 0000000..08c8715 Binary files /dev/null and b/client/Piztor/res/drawable/footbar_marker_1.png differ diff --git a/client/Piztor/res/drawable/footbar_search.png b/client/Piztor/res/drawable/footbar_search.png new file mode 100644 index 0000000..3549f84 Binary files /dev/null and b/client/Piztor/res/drawable/footbar_search.png differ diff --git a/client/Piztor/res/drawable/footbar_search_1.png b/client/Piztor/res/drawable/footbar_search_1.png new file mode 100644 index 0000000..1e6ac28 Binary files /dev/null and b/client/Piztor/res/drawable/footbar_search_1.png differ diff --git a/client/Piztor/res/drawable/footbar_select_bg.png b/client/Piztor/res/drawable/footbar_select_bg.png new file mode 100644 index 0000000..9d7e5af Binary files /dev/null and b/client/Piztor/res/drawable/footbar_select_bg.png differ diff --git a/client/Piztor/res/drawable/footbar_settings.png b/client/Piztor/res/drawable/footbar_settings.png new file mode 100644 index 0000000..455bd0b Binary files /dev/null and b/client/Piztor/res/drawable/footbar_settings.png differ diff --git a/client/Piztor/res/drawable/footbar_settings_1.png b/client/Piztor/res/drawable/footbar_settings_1.png new file mode 100644 index 0000000..6b0a2ab Binary files /dev/null and b/client/Piztor/res/drawable/footbar_settings_1.png differ diff --git a/client/Piztor/res/drawable/footbar_unselect_bg.png b/client/Piztor/res/drawable/footbar_unselect_bg.png new file mode 100644 index 0000000..3e1e65e Binary files /dev/null and b/client/Piztor/res/drawable/footbar_unselect_bg.png differ diff --git a/client/Piztor/res/drawable/horizontal_line.png b/client/Piztor/res/drawable/horizontal_line.png new file mode 100644 index 0000000..ccd6aa2 Binary files /dev/null and b/client/Piztor/res/drawable/horizontal_line.png differ diff --git a/client/Piztor/res/drawable/navigation_back.png b/client/Piztor/res/drawable/navigation_back.png new file mode 100644 index 0000000..3bdda98 Binary files /dev/null and b/client/Piztor/res/drawable/navigation_back.png differ diff --git a/client/Piztor/res/drawable/navigation_back_1.png b/client/Piztor/res/drawable/navigation_back_1.png new file mode 100644 index 0000000..a20b4ef Binary files /dev/null and b/client/Piztor/res/drawable/navigation_back_1.png differ diff --git a/client/Piztor/res/drawable/title_logo.png b/client/Piztor/res/drawable/title_logo.png new file mode 100644 index 0000000..224040c Binary files /dev/null and b/client/Piztor/res/drawable/title_logo.png differ diff --git a/client/Piztor/res/drawable/topbar_background.png b/client/Piztor/res/drawable/topbar_background.png new file mode 100644 index 0000000..9f0291e Binary files /dev/null and b/client/Piztor/res/drawable/topbar_background.png differ diff --git a/client/Piztor/res/layout/activity_gather.xml b/client/Piztor/res/layout/activity_gather.xml new file mode 100644 index 0000000..f887cf0 --- /dev/null +++ b/client/Piztor/res/layout/activity_gather.xml @@ -0,0 +1,23 @@ + + + + + + + + + diff --git a/client/Piztor/res/layout/activity_login.xml b/client/Piztor/res/layout/activity_login.xml new file mode 100644 index 0000000..cd2d34c --- /dev/null +++ b/client/Piztor/res/layout/activity_login.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + +