├── .classpath
├── .project
├── AndroidManifest.xml
├── README.md
├── bin
├── AndroidManifest.xml
├── ContrlSpeed.apk
├── R.txt
├── classes.dex
├── classes
│ └── com
│ │ └── coderui
│ │ ├── gkhntDispatch
│ │ ├── DispatchService$1.class
│ │ └── DispatchService.class
│ │ ├── gkhntLogic
│ │ └── LogicThread.class
│ │ ├── gkhntUI
│ │ ├── AdvancelActivity$1$1.class
│ │ ├── AdvancelActivity$1.class
│ │ ├── AdvancelActivity.class
│ │ ├── BuildConfig.class
│ │ ├── GhkntActivity$1.class
│ │ ├── GhkntActivity.class
│ │ ├── ModelActivity.class
│ │ ├── OperatorDataActivity.class
│ │ ├── QueryDetialActivity$1.class
│ │ ├── QueryDetialActivity$2.class
│ │ ├── QueryDetialActivity$MyOnClickListener.class
│ │ ├── QueryDetialActivity.class
│ │ ├── QueryResultActivity.class
│ │ ├── R$array.class
│ │ ├── R$attr.class
│ │ ├── R$color.class
│ │ ├── R$drawable.class
│ │ ├── R$id.class
│ │ ├── R$layout.class
│ │ ├── R$menu.class
│ │ ├── R$string.class
│ │ ├── R$style.class
│ │ ├── R.class
│ │ ├── SettingsActivity.class
│ │ ├── TaskListActivity$1.class
│ │ ├── TaskListActivity$2.class
│ │ ├── TaskListActivity.class
│ │ └── TaskListDetailActivity.class
│ │ ├── gkhntUIadapter
│ │ ├── AdvanceAdapter$AdvanceFunction.class
│ │ ├── AdvanceAdapter.class
│ │ ├── TaskListAdapter$ListItemView.class
│ │ └── TaskListAdapter.class
│ │ └── gkhntutil
│ │ ├── CharacterUtil.class
│ │ ├── Task.class
│ │ └── XMLuntil.class
├── dexedLibs
│ └── android-support-v4-2bd9b9746dfbedca7c59045ca53c8d76.jar
├── jarlist.cache
├── res
│ ├── drawable-hdpi
│ │ ├── ic_action_search.png
│ │ └── ic_launcher.png
│ ├── drawable-ldpi
│ │ └── ic_launcher.png
│ ├── drawable-mdpi
│ │ ├── advance.png
│ │ ├── backup.png
│ │ ├── bg.png
│ │ ├── contacts.png
│ │ ├── delete.png
│ │ ├── ic_action_search.png
│ │ ├── ic_launcher.png
│ │ ├── message.png
│ │ ├── restart.png
│ │ ├── search_task_detial.png
│ │ ├── settings.png
│ │ ├── shartdown.png
│ │ └── task_list.png
│ └── drawable-xhdpi
│ │ ├── ic_action_search.png
│ │ └── ic_launcher.png
└── resources.ap_
├── gen
└── com
│ └── coderui
│ └── gkhntUI
│ ├── BuildConfig.java
│ └── R.java
├── ic_launcher-web.png
├── libs
└── android-support-v4.jar
├── proguard-project.txt
├── project.properties
├── res
├── drawable-hdpi
│ ├── ic_action_search.png
│ └── ic_launcher.png
├── drawable-ldpi
│ └── ic_launcher.png
├── drawable-mdpi
│ ├── advance.png
│ ├── backup.png
│ ├── bg.png
│ ├── contacts.png
│ ├── delete.png
│ ├── ic_action_search.png
│ ├── ic_launcher.png
│ ├── message.png
│ ├── restart.png
│ ├── search_task_detial.png
│ ├── settings.png
│ ├── shartdown.png
│ └── task_list.png
├── drawable-xhdpi
│ ├── ic_action_search.png
│ └── ic_launcher.png
├── layout
│ ├── action_bar.xml
│ ├── advance.xml
│ ├── advance_tool_item.xml
│ ├── loadmoredata.xml
│ ├── login_activity.xml
│ ├── operator_data_xml.xml
│ ├── query_detial.xml
│ ├── query_result.xml
│ ├── settings.xml
│ ├── task_item.xml
│ ├── task_list.xml
│ └── task_list_detail.xml
├── menu
│ └── activity_contrl_speed.xml
├── values-v11
│ └── styles.xml
├── values-v14
│ └── styles.xml
└── values
│ ├── arrays.xml
│ ├── color.xml
│ ├── strings.xml
│ └── styles.xml
└── src
└── com
└── coderui
├── gkhntDispatch
└── DispatchService.java
├── gkhntLogic
└── LogicThread.java
├── gkhntUI
├── AdvancelActivity.java
├── GhkntActivity.java
├── ModelActivity.java
├── OperatorDataActivity.java
├── QueryDetialActivity.java
├── QueryResultActivity.java
├── SettingsActivity.java
├── TaskListActivity.java
└── TaskListDetailActivity.java
├── gkhntUIadapter
├── AdvanceAdapter.java
└── TaskListAdapter.java
└── gkhntutil
├── CharacterUtil.java
├── Task.java
└── XMLuntil.java
/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | ContrlSpeed
4 |
5 |
6 |
7 |
8 |
9 | com.android.ide.eclipse.adt.ResourceManagerBuilder
10 |
11 |
12 |
13 |
14 | com.android.ide.eclipse.adt.PreCompilerBuilder
15 |
16 |
17 |
18 |
19 | org.eclipse.jdt.core.javabuilder
20 |
21 |
22 |
23 |
24 | com.android.ide.eclipse.adt.ApkBuilder
25 |
26 |
27 |
28 |
29 |
30 | com.android.ide.eclipse.adt.AndroidNature
31 | org.eclipse.jdt.core.javanature
32 |
33 |
34 |
--------------------------------------------------------------------------------
/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
9 |
10 |
11 |
12 |
16 |
17 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## AndroidRemoteControl
2 | Android远程控制客户端,服务端采用java web
3 |
4 | ## 采用后台Service监听网络数据
5 |
6 | ## 交互数据格式:XML
7 |
--------------------------------------------------------------------------------
/bin/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
9 |
10 |
11 |
12 |
16 |
17 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/bin/ContrlSpeed.apk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/ContrlSpeed.apk
--------------------------------------------------------------------------------
/bin/R.txt:
--------------------------------------------------------------------------------
1 | int array SEARCH_TYPE 0x7f060000
2 | int attr alignmentMode 0x7f010004
3 | int attr columnCount 0x7f010002
4 | int attr columnOrderPreserved 0x7f010006
5 | int attr layout_column 0x7f010009
6 | int attr layout_columnSpan 0x7f01000a
7 | int attr layout_gravity 0x7f01000b
8 | int attr layout_row 0x7f010007
9 | int attr layout_rowSpan 0x7f010008
10 | int attr orientation 0x7f010000
11 | int attr rowCount 0x7f010001
12 | int attr rowOrderPreserved 0x7f010005
13 | int attr useDefaultMargins 0x7f010003
14 | int color black 0x7f070000
15 | int color blue 0x7f070002
16 | int color white 0x7f070001
17 | int dimen default_gap 0x7f050000
18 | int drawable advance 0x7f020000
19 | int drawable bg 0x7f020001
20 | int drawable ic_action_search 0x7f020002
21 | int drawable ic_launcher 0x7f020003
22 | int drawable search_task_detial 0x7f020004
23 | int drawable settings 0x7f020005
24 | int drawable task_list 0x7f020006
25 | int id alignBounds 0x7f040002
26 | int id alignMargins 0x7f040003
27 | int id bottom 0x7f040005
28 | int id btn_reset 0x7f04001e
29 | int id btn_search 0x7f040019
30 | int id button1 0x7f040014
31 | int id center 0x7f04000c
32 | int id center_horizontal 0x7f04000a
33 | int id center_vertical 0x7f040008
34 | int id clip_horizontal 0x7f04000f
35 | int id clip_vertical 0x7f04000e
36 | int id end 0x7f040011
37 | int id et_task_single_number 0x7f040018
38 | int id fill 0x7f04000d
39 | int id fill_horizontal 0x7f04000b
40 | int id fill_vertical 0x7f040009
41 | int id horizontal 0x7f040000
42 | int id ipaddress 0x7f040015
43 | int id left 0x7f040006
44 | int id linear_detial 0x7f040022
45 | int id linear_end_data 0x7f04001a
46 | int id linear_no 0x7f040020
47 | int id linear_project 0x7f040025
48 | int id linear_start_data 0x7f04001b
49 | int id linear_staty 0x7f040027
50 | int id linear_task_single_number 0x7f040017
51 | int id liner_date 0x7f040023
52 | int id loadmore 0x7f040013
53 | int id menu_settings 0x7f04002b
54 | int id results 0x7f04001f
55 | int id right 0x7f040007
56 | int id spinner_search_type 0x7f040016
57 | int id start 0x7f040010
58 | int id task_of_list 0x7f040029
59 | int id textView1 0x7f04002a
60 | int id title 0x7f040012
61 | int id top 0x7f040004
62 | int id tv_date 0x7f040024
63 | int id tv_end_date 0x7f04001d
64 | int id tv_num_task 0x7f040021
65 | int id tv_project 0x7f040026
66 | int id tv_start_date 0x7f04001c
67 | int id tv_staty_task 0x7f040028
68 | int id vertical 0x7f040001
69 | int layout action_bar 0x7f030000
70 | int layout advance 0x7f030001
71 | int layout loadmoredata 0x7f030002
72 | int layout login_activity 0x7f030003
73 | int layout operator_data_xml 0x7f030004
74 | int layout query_detial 0x7f030005
75 | int layout query_result 0x7f030006
76 | int layout settings 0x7f030007
77 | int layout task_item 0x7f030008
78 | int layout task_list 0x7f030009
79 | int layout task_list_detail 0x7f03000a
80 | int menu activity_contrl_speed 0x7f0a0000
81 | int string app_name 0x7f080000
82 | int string authorization 0x7f08000c
83 | int string backup_database 0x7f08000e
84 | int string delete_database 0x7f08000d
85 | int string end_date 0x7f080008
86 | int string hello_world 0x7f080001
87 | int string login 0x7f080004
88 | int string menu_settings 0x7f080002
89 | int string no_authorization 0x7f08000b
90 | int string remind 0x7f080010
91 | int string reset 0x7f08000a
92 | int string restart 0x7f080011
93 | int string search 0x7f080009
94 | int string search_condition 0x7f080005
95 | int string shutdown 0x7f080012
96 | int string start_date 0x7f080007
97 | int string task_single_number 0x7f080006
98 | int string title_activity_contrl_speed 0x7f080003
99 | int string user_list 0x7f08000f
100 | int style AppTheme 0x7f090000
101 | int style search_text_style 0x7f090001
102 | int[] styleable GridLayout { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006 }
103 | int styleable GridLayout_alignmentMode 4
104 | int styleable GridLayout_columnCount 2
105 | int styleable GridLayout_columnOrderPreserved 6
106 | int styleable GridLayout_orientation 0
107 | int styleable GridLayout_rowCount 1
108 | int styleable GridLayout_rowOrderPreserved 5
109 | int styleable GridLayout_useDefaultMargins 3
110 | int[] styleable GridLayout_Layout { 0x010100f4, 0x010100f5, 0x010100f6, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b }
111 | int styleable GridLayout_Layout_android_layout_height 1
112 | int styleable GridLayout_Layout_android_layout_margin 2
113 | int styleable GridLayout_Layout_android_layout_marginBottom 6
114 | int styleable GridLayout_Layout_android_layout_marginLeft 3
115 | int styleable GridLayout_Layout_android_layout_marginRight 5
116 | int styleable GridLayout_Layout_android_layout_marginTop 4
117 | int styleable GridLayout_Layout_android_layout_width 0
118 | int styleable GridLayout_Layout_layout_column 9
119 | int styleable GridLayout_Layout_layout_columnSpan 10
120 | int styleable GridLayout_Layout_layout_gravity 11
121 | int styleable GridLayout_Layout_layout_row 7
122 | int styleable GridLayout_Layout_layout_rowSpan 8
123 |
--------------------------------------------------------------------------------
/bin/classes.dex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes.dex
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntDispatch/DispatchService$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntDispatch/DispatchService$1.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntDispatch/DispatchService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntDispatch/DispatchService.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntLogic/LogicThread.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntLogic/LogicThread.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/AdvancelActivity$1$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/AdvancelActivity$1$1.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/AdvancelActivity$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/AdvancelActivity$1.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/AdvancelActivity.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/AdvancelActivity.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/BuildConfig.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/BuildConfig.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/GhkntActivity$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/GhkntActivity$1.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/GhkntActivity.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/GhkntActivity.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/ModelActivity.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/ModelActivity.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/OperatorDataActivity.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/OperatorDataActivity.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/QueryDetialActivity$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/QueryDetialActivity$1.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/QueryDetialActivity$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/QueryDetialActivity$2.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/QueryDetialActivity$MyOnClickListener.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/QueryDetialActivity$MyOnClickListener.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/QueryDetialActivity.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/QueryDetialActivity.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/QueryResultActivity.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/QueryResultActivity.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/R$array.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/R$array.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/R$attr.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/R$color.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/R$drawable.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/R$id.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/R$layout.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/R$menu.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/R$menu.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/R$string.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/R$style.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/R.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/SettingsActivity.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/SettingsActivity.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/TaskListActivity$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/TaskListActivity$1.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/TaskListActivity$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/TaskListActivity$2.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/TaskListActivity.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/TaskListActivity.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUI/TaskListDetailActivity.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUI/TaskListDetailActivity.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUIadapter/AdvanceAdapter$AdvanceFunction.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUIadapter/AdvanceAdapter$AdvanceFunction.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUIadapter/AdvanceAdapter.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUIadapter/AdvanceAdapter.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUIadapter/TaskListAdapter$ListItemView.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUIadapter/TaskListAdapter$ListItemView.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntUIadapter/TaskListAdapter.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntUIadapter/TaskListAdapter.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntutil/CharacterUtil.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntutil/CharacterUtil.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntutil/Task.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntutil/Task.class
--------------------------------------------------------------------------------
/bin/classes/com/coderui/gkhntutil/XMLuntil.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/classes/com/coderui/gkhntutil/XMLuntil.class
--------------------------------------------------------------------------------
/bin/dexedLibs/android-support-v4-2bd9b9746dfbedca7c59045ca53c8d76.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/dexedLibs/android-support-v4-2bd9b9746dfbedca7c59045ca53c8d76.jar
--------------------------------------------------------------------------------
/bin/jarlist.cache:
--------------------------------------------------------------------------------
1 | # cache for current jar dependecy. DO NOT EDIT.
2 | # format is
3 | # Encoding is UTF-8
4 |
--------------------------------------------------------------------------------
/bin/res/drawable-hdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-hdpi/ic_action_search.png
--------------------------------------------------------------------------------
/bin/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/bin/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/bin/res/drawable-mdpi/advance.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-mdpi/advance.png
--------------------------------------------------------------------------------
/bin/res/drawable-mdpi/backup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-mdpi/backup.png
--------------------------------------------------------------------------------
/bin/res/drawable-mdpi/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-mdpi/bg.png
--------------------------------------------------------------------------------
/bin/res/drawable-mdpi/contacts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-mdpi/contacts.png
--------------------------------------------------------------------------------
/bin/res/drawable-mdpi/delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-mdpi/delete.png
--------------------------------------------------------------------------------
/bin/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/bin/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/bin/res/drawable-mdpi/message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-mdpi/message.png
--------------------------------------------------------------------------------
/bin/res/drawable-mdpi/restart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-mdpi/restart.png
--------------------------------------------------------------------------------
/bin/res/drawable-mdpi/search_task_detial.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-mdpi/search_task_detial.png
--------------------------------------------------------------------------------
/bin/res/drawable-mdpi/settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-mdpi/settings.png
--------------------------------------------------------------------------------
/bin/res/drawable-mdpi/shartdown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-mdpi/shartdown.png
--------------------------------------------------------------------------------
/bin/res/drawable-mdpi/task_list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-mdpi/task_list.png
--------------------------------------------------------------------------------
/bin/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/bin/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/bin/resources.ap_:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/bin/resources.ap_
--------------------------------------------------------------------------------
/gen/com/coderui/gkhntUI/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.coderui.gkhntUI;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/gen/com/coderui/gkhntUI/R.java:
--------------------------------------------------------------------------------
1 | /* AUTO-GENERATED FILE. DO NOT MODIFY.
2 | *
3 | * This class was automatically generated by the
4 | * aapt tool from the resource data it found. It
5 | * should not be modified by hand.
6 | */
7 |
8 | package com.coderui.gkhntUI;
9 |
10 | public final class R {
11 | public static final class array {
12 | public static final int SEARCH_TYPE=0x7f040000;
13 | }
14 | public static final class attr {
15 | }
16 | public static final class color {
17 | public static final int black=0x7f050000;
18 | public static final int blue=0x7f050002;
19 | public static final int white=0x7f050001;
20 | }
21 | public static final class drawable {
22 | public static final int advance=0x7f020000;
23 | public static final int backup=0x7f020001;
24 | public static final int bg=0x7f020002;
25 | public static final int contacts=0x7f020003;
26 | public static final int delete=0x7f020004;
27 | public static final int ic_action_search=0x7f020005;
28 | public static final int ic_launcher=0x7f020006;
29 | public static final int message=0x7f020007;
30 | public static final int restart=0x7f020008;
31 | public static final int search_task_detial=0x7f020009;
32 | public static final int settings=0x7f02000a;
33 | public static final int shartdown=0x7f02000b;
34 | public static final int task_list=0x7f02000c;
35 | }
36 | public static final class id {
37 | public static final int btn_reset=0x7f09000f;
38 | public static final int btn_search=0x7f09000a;
39 | public static final int button1=0x7f090005;
40 | public static final int et_task_single_number=0x7f090009;
41 | public static final int function=0x7f090003;
42 | public static final int gv_advance=0x7f090001;
43 | public static final int imageView=0x7f090002;
44 | public static final int ipaddress=0x7f090006;
45 | public static final int linear_detial=0x7f090013;
46 | public static final int linear_end_data=0x7f09000b;
47 | public static final int linear_no=0x7f090011;
48 | public static final int linear_project=0x7f090016;
49 | public static final int linear_start_data=0x7f09000c;
50 | public static final int linear_staty=0x7f090018;
51 | public static final int linear_task_single_number=0x7f090008;
52 | public static final int liner_date=0x7f090014;
53 | public static final int loadmore=0x7f090004;
54 | public static final int menu_settings=0x7f09001c;
55 | public static final int results=0x7f090010;
56 | public static final int spinner_search_type=0x7f090007;
57 | public static final int task_of_list=0x7f09001a;
58 | public static final int textView1=0x7f09001b;
59 | public static final int title=0x7f090000;
60 | public static final int tv_date=0x7f090015;
61 | public static final int tv_end_date=0x7f09000e;
62 | public static final int tv_num_task=0x7f090012;
63 | public static final int tv_project=0x7f090017;
64 | public static final int tv_start_date=0x7f09000d;
65 | public static final int tv_staty_task=0x7f090019;
66 | }
67 | public static final class layout {
68 | public static final int action_bar=0x7f030000;
69 | public static final int advance=0x7f030001;
70 | public static final int advance_tool_item=0x7f030002;
71 | public static final int loadmoredata=0x7f030003;
72 | public static final int login_activity=0x7f030004;
73 | public static final int operator_data_xml=0x7f030005;
74 | public static final int query_detial=0x7f030006;
75 | public static final int query_result=0x7f030007;
76 | public static final int settings=0x7f030008;
77 | public static final int task_item=0x7f030009;
78 | public static final int task_list=0x7f03000a;
79 | public static final int task_list_detail=0x7f03000b;
80 | }
81 | public static final class menu {
82 | public static final int activity_contrl_speed=0x7f080000;
83 | }
84 | public static final class string {
85 | public static final int app_name=0x7f060000;
86 | public static final int authorization=0x7f06000c;
87 | public static final int backup_database=0x7f06000e;
88 | public static final int delete_database=0x7f06000d;
89 | public static final int end_date=0x7f060008;
90 | public static final int hello_world=0x7f060001;
91 | public static final int login=0x7f060004;
92 | public static final int menu_settings=0x7f060002;
93 | public static final int no_authorization=0x7f06000b;
94 | public static final int remind=0x7f060010;
95 | public static final int reset=0x7f06000a;
96 | public static final int restart=0x7f060011;
97 | public static final int search=0x7f060009;
98 | public static final int search_condition=0x7f060005;
99 | public static final int shutdown=0x7f060012;
100 | public static final int start_date=0x7f060007;
101 | public static final int task_single_number=0x7f060006;
102 | public static final int title_activity_contrl_speed=0x7f060003;
103 | public static final int user_list=0x7f06000f;
104 | }
105 | public static final class style {
106 | public static final int AppTheme=0x7f070000;
107 | public static final int search_text_style=0x7f070001;
108 | }
109 | }
110 |
--------------------------------------------------------------------------------
/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/ic_launcher-web.png
--------------------------------------------------------------------------------
/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/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-16
15 | android.library.reference.1=../gridlayout_v7
16 |
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-hdpi/ic_action_search.png
--------------------------------------------------------------------------------
/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/advance.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-mdpi/advance.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/backup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-mdpi/backup.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-mdpi/bg.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/contacts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-mdpi/contacts.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-mdpi/delete.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-mdpi/ic_action_search.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-mdpi/message.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/restart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-mdpi/restart.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/search_task_detial.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-mdpi/search_task_detial.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-mdpi/settings.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/shartdown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-mdpi/shartdown.png
--------------------------------------------------------------------------------
/res/drawable-mdpi/task_list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-mdpi/task_list.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-xhdpi/ic_action_search.png
--------------------------------------------------------------------------------
/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/res/layout/action_bar.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
16 |
17 |
--------------------------------------------------------------------------------
/res/layout/advance.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/res/layout/advance_tool_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
14 |
15 |
21 |
22 |
--------------------------------------------------------------------------------
/res/layout/loadmoredata.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
14 |
15 |
--------------------------------------------------------------------------------
/res/layout/login_activity.xml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
16 |
17 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/res/layout/operator_data_xml.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
18 |
19 |
20 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/res/layout/query_detial.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
14 |
15 |
20 |
21 |
27 |
28 |
29 |
35 |
36 |
41 |
42 |
47 |
48 |
53 |
54 |
55 |
63 |
64 |
71 |
72 |
77 |
78 |
84 |
85 |
86 |
87 |
94 |
95 |
100 |
101 |
107 |
108 |
109 |
117 |
118 |
119 |
--------------------------------------------------------------------------------
/res/layout/query_result.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
--------------------------------------------------------------------------------
/res/layout/settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
--------------------------------------------------------------------------------
/res/layout/task_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
13 |
20 |
21 |
27 |
28 |
29 |
36 |
40 |
41 |
48 |
53 |
54 |
55 |
59 |
66 |
71 |
72 |
73 |
74 |
80 |
86 |
91 |
92 |
--------------------------------------------------------------------------------
/res/layout/task_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/res/layout/task_list_detail.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
--------------------------------------------------------------------------------
/res/menu/activity_contrl_speed.xml:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/res/values/arrays.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | - 任务单生产情况统计
5 | - 任务单材料使用情况
6 | - 任务单车辆运送情况
7 | - 材料库存情况统计表
8 |
9 |
--------------------------------------------------------------------------------
/res/values/color.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #000000
4 | #FFFFFF
5 | #0000FF
6 |
--------------------------------------------------------------------------------
/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | 德明自控
3 | Hello world!
4 | Settings
5 | 德明自控
6 | 登 录
7 | 查询条件
8 | 任务单号
9 | 开始日期
10 | 结束日期
11 | 查询
12 | 重置
13 | 未授权
14 | 授权
15 | 删除数据库
16 | 备份数据库
17 | 用户列表
18 | 提醒
19 | 重启
20 | 关机
21 |
--------------------------------------------------------------------------------
/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
9 |
--------------------------------------------------------------------------------
/src/com/coderui/gkhntDispatch/DispatchService.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/src/com/coderui/gkhntDispatch/DispatchService.java
--------------------------------------------------------------------------------
/src/com/coderui/gkhntLogic/LogicThread.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/src/com/coderui/gkhntLogic/LogicThread.java
--------------------------------------------------------------------------------
/src/com/coderui/gkhntUI/AdvancelActivity.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/src/com/coderui/gkhntUI/AdvancelActivity.java
--------------------------------------------------------------------------------
/src/com/coderui/gkhntUI/GhkntActivity.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/src/com/coderui/gkhntUI/GhkntActivity.java
--------------------------------------------------------------------------------
/src/com/coderui/gkhntUI/ModelActivity.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/src/com/coderui/gkhntUI/ModelActivity.java
--------------------------------------------------------------------------------
/src/com/coderui/gkhntUI/OperatorDataActivity.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/src/com/coderui/gkhntUI/OperatorDataActivity.java
--------------------------------------------------------------------------------
/src/com/coderui/gkhntUI/QueryDetialActivity.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/src/com/coderui/gkhntUI/QueryDetialActivity.java
--------------------------------------------------------------------------------
/src/com/coderui/gkhntUI/QueryResultActivity.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/src/com/coderui/gkhntUI/QueryResultActivity.java
--------------------------------------------------------------------------------
/src/com/coderui/gkhntUI/SettingsActivity.java:
--------------------------------------------------------------------------------
1 | package com.coderui.gkhntUI;
2 |
3 | import android.app.Activity;
4 | import android.os.Bundle;
5 |
6 | public class SettingsActivity extends Activity {
7 | @Override
8 | protected void onCreate(Bundle savedInstanceState) {
9 | super.onCreate(savedInstanceState);
10 | setContentView(R.layout.settings);
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/src/com/coderui/gkhntUI/TaskListActivity.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/RuiSaka/AndroidRemoteControl/82bf7c725ad56cc3d92ab2a775cf9200dedb49ec/src/com/coderui/gkhntUI/TaskListActivity.java
--------------------------------------------------------------------------------
/src/com/coderui/gkhntUI/TaskListDetailActivity.java:
--------------------------------------------------------------------------------
1 | package com.coderui.gkhntUI;
2 |
3 | import java.util.Map;
4 |
5 | import com.coderui.gkhntutil.CharacterUtil;
6 |
7 | import android.app.Activity;
8 | import android.content.Intent;
9 | import android.os.Bundle;
10 | import android.widget.TextView;
11 |
12 | public class TaskListDetailActivity extends Activity {
13 |
14 | private TextView tv_detail;
15 | @Override
16 | protected void onCreate(Bundle savedInstanceState) {
17 | super.onCreate(savedInstanceState);
18 | setContentView(R.layout.task_list_detail);
19 |
20 | tv_detail=(TextView) findViewById(R.id.textView1);
21 | Intent intent = getIntent();
22 | int id=intent.getIntExtra("id", 0);
23 | Map map=(Map) TaskListActivity.list.get(id);
24 | String detail="";
25 | for(int i=0;i