Skip to content

Commit 15e21c9

Browse files
author
woodygithub
committed
new first commit
0 parents  commit 15e21c9

File tree

207 files changed

+10980
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+10980
-0
lines changed

.classpath

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
4+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
5+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
6+
<classpathentry kind="src" path="src"/>
7+
<classpathentry kind="src" path="gen"/>
8+
<classpathentry exported="true" kind="lib" path="libs/libammsdk.jar"/>
9+
<classpathentry kind="output" path="bin/classes"/>
10+
</classpath>

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/bin/
2+
/gen

.project

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>ICSFoodApp</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.jdt.core.javabuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
</buildSpec>
29+
<natures>
30+
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
31+
<nature>org.eclipse.jdt.core.javanature</nature>
32+
</natures>
33+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
eclipse.preferences.version=1
2+
encoding//src/com/org/icsfoodapp/pickavator/WXShareUtils.java=UTF-8
3+
encoding/<project>=UTF-8

.settings/org.eclipse.jdt.core.prefs

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
4+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
5+
org.eclipse.jdt.core.compiler.compliance=1.7
6+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
7+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
8+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
9+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
10+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
11+
org.eclipse.jdt.core.compiler.source=1.7

AndroidManifest.xml

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.org.icsfoodapp"
4+
android:versionCode="5"
5+
android:versionName="1.2.4">
6+
7+
<uses-permission android:name="android.permission.INTERNET"/>
8+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
9+
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/>
10+
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
11+
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
12+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
13+
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
14+
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
15+
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
16+
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
17+
<uses-permission android:name="android.permission.READ_LOGS"/>
18+
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
19+
<uses-permission android:name="android.permission.VIBRATE"/>
20+
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION"/>
21+
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
22+
<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
23+
<uses-permission android:name="android.permission.WAKE_LOCK"/>
24+
25+
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
26+
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
27+
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
28+
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
29+
<uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" />
30+
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
31+
32+
<uses-sdk
33+
android:minSdkVersion="15"
34+
android:targetSdkVersion="19" />
35+
<supports-screens android:resizeable="true"
36+
android:largeScreens="true" android:smallScreens="true"
37+
android:normalScreens="true" android:anyDensity="true" />
38+
39+
<application
40+
android:name=".MyApp"
41+
android:allowBackup="true"
42+
android:icon="@drawable/ic_launcher"
43+
android:label="@string/app_name"
44+
android:theme="@style/AppTheme" >
45+
<meta-data
46+
android:name="com.baidu.lbsapi.API_KEY"
47+
android:value="QIyy9KKCZA7Z14uEgRI04jX1" />
48+
<service
49+
android:name="com.baidu.location.f"
50+
android:enabled="true"
51+
android:process=":remote" >
52+
</service>
53+
<activity
54+
android:name=".StartActivity"
55+
android:noHistory="true"
56+
android:label="@string/app_name"
57+
android:screenOrientation="portrait">
58+
<intent-filter>
59+
<action android:name="android.intent.action.MAIN" />
60+
<category android:name="android.intent.category.LAUNCHER" />
61+
</intent-filter>
62+
</activity>
63+
<activity android:name=".ImagesActivity"/>
64+
<activity android:name=".LoginActivity" android:screenOrientation="portrait"
65+
android:windowSoftInputMode="adjustPan"/>
66+
<activity android:name=".MainActivity" android:screenOrientation="portrait"/>
67+
<activity android:name=".RegActivity" android:screenOrientation="portrait"
68+
android:windowSoftInputMode="adjustPan"/>
69+
<activity android:name=".RestaurantActActivity" android:screenOrientation="portrait"/>
70+
<activity android:name=".RestaurantCommentInner" android:screenOrientation="portrait"/>
71+
<activity android:name=".RestaurantDetailedActivity" android:screenOrientation="portrait"/>
72+
<activity android:name=".RestaurantInnerActivity" android:screenOrientation="portrait"
73+
android:windowSoftInputMode="adjustResize"/>
74+
<activity android:name=".RestaurantMenuIneerActivity" android:screenOrientation="portrait"/>
75+
<activity android:name=".SearchActivity" android:screenOrientation="portrait"/>
76+
<activity android:name=".StarDetailedActivity" android:screenOrientation="portrait"/>
77+
78+
<activity android:name=".RestaurantBigImageActivity" android:screenOrientation="portrait"/>
79+
80+
<activity android:name=".pickavator.CommonChoosePicActivity" android:theme="@style/FloatTheme"/>
81+
82+
<activity android:name=".ImageGridActivity" android:screenOrientation="portrait"/>
83+
<activity android:name=".OrderActivity" android:screenOrientation="portrait"/>
84+
<activity android:name=".OrderPaySuccessActivity" android:screenOrientation="portrait"/>
85+
<activity android:name=".OrderDetailedActivity" android:screenOrientation="portrait"/>
86+
<activity android:name=".OrderTabsPagerFragmentActivity" android:screenOrientation="portrait"/>
87+
<activity android:name=".MediaPlayerActivity" android:screenOrientation="portrait"/>
88+
<activity android:name=".BigImageActivity" android:screenOrientation="portrait"/>
89+
90+
<activity android:name="com.alipay.android.app.sdk.WapPayActivity" android:screenOrientation="portrait"/>
91+
</application>
92+
93+
</manifest>

assets/marker1.png

3.59 KB

assets/marker2.png

5.68 KB

assets/marker3.png

3.44 KB

ic_launcher-web.png

50.2 KB

libs/BaiduLBS_Android.jar

808 KB
Binary file not shown.

libs/armeabi/libBaiduMapSDK_v3_1_0.so

1.1 MB
Binary file not shown.

libs/armeabi/liblocSDK3.so

39.4 KB
Binary file not shown.

libs/libammsdk.jar

185 KB
Binary file not shown.

libs/locSDK_3.1.jar

96.8 KB
Binary file not shown.

proguard-project.txt

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
#}

project.properties

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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=../fax_utils

res/anim/dismiss_tobottom.xml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<set xmlns:android="http://schemas.android.com/apk/res/android" >
3+
<translate
4+
android:duration="300"
5+
android:fromYDelta="0"
6+
android:toYDelta="100%"/>
7+
</set>

res/anim/main_up_alpha_scale.xml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<set xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:interpolator="@android:anim/accelerate_interpolator">
4+
<scale
5+
android:fromYScale="1.0"
6+
android:toYScale="0.0"
7+
android:fromXScale="1.0"
8+
android:toXScale="1.0"
9+
android:pivotX="0%p"
10+
android:pivotY="0%p"
11+
android:duration="100"/>
12+
</set>

res/anim/main_up_translate.xml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<set xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:interpolator="@android:anim/accelerate_interpolator">
4+
<translate
5+
android:fromYDelta="100%"
6+
android:toYDelta="0%"
7+
android:duration="100"/>
8+
</set>

res/anim/rbm_in_from_left.xml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<set xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:interpolator="@android:anim/accelerate_interpolator">
4+
5+
6+
<translate
7+
android:fromXDelta="-20%"
8+
android:toXDelta="0%"
9+
android:duration="150"
10+
11+
/>
12+
13+
<alpha
14+
android:fromAlpha="0.0"
15+
android:toAlpha="1.0"
16+
android:duration="150"
17+
/>
18+
19+
20+
</set>

res/anim/rbm_out_to_left.xml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<set xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:interpolator="@android:anim/accelerate_interpolator">
4+
<!--
5+
<translate
6+
android:fromYDelta="0%"
7+
android:toYDelta="100%"0
8+
9+
10+
android:duration="400"
11+
12+
/>
13+
14+
<alpha
15+
android:fromAlpha="1.0"
16+
android:toAlpha="0.0"
17+
android:duration="400"
18+
/> -->
19+
20+
21+
<translate
22+
android:fromXDelta="0%"
23+
android:toXDelta="-20%"
24+
25+
android:duration="150"
26+
27+
/>
28+
29+
<alpha
30+
android:fromAlpha="1.0"
31+
android:toAlpha="0.0"
32+
android:duration="150"
33+
/>
34+
</set>

res/anim/show_totop.xml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<set xmlns:android="http://schemas.android.com/apk/res/android" >
3+
<translate
4+
android:duration="200"
5+
android:fromYDelta="100%"
6+
android:toYDelta="0"/>
7+
</set>

res/anim/startbegin.xml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<set xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:interpolator="@android:anim/accelerate_interpolator">
4+
5+
6+
<scale
7+
android:fromXScale="0.0"
8+
android:toXScale="1.0"
9+
android:fromYScale="0.0"
10+
android:toYScale="1.0"
11+
android:pivotX="50%p"
12+
android:pivotY="50%p"
13+
android:duration="1500"/>
14+
15+
<alpha
16+
android:fromAlpha="0.0"
17+
android:toAlpha="1.0"
18+
android:duration="1500"
19+
/>
20+
21+
22+
</set>

res/anim/startend.xml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<set xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:interpolator="@android:anim/accelerate_interpolator">
4+
5+
6+
<scale
7+
android:fromXScale="1.0"
8+
android:toXScale="0.0"
9+
android:fromYScale="1.0"
10+
android:toYScale="0.0"
11+
android:pivotX="0%p"
12+
android:pivotY="0%p"
13+
android:duration="1500"/>
14+
15+
<alpha
16+
android:fromAlpha="1.0"
17+
android:toAlpha="0.0"
18+
android:duration="1500"
19+
/>
20+
21+
22+
</set>

res/drawable-hdpi/ic_launcher.png

8.34 KB

res/drawable-ldpi/ic_launcher.png

5.17 KB

res/drawable-mdpi/ic_launcher.png

6.11 KB
2.27 KB
1.33 KB

res/drawable-xhdpi/arrow.png

1.27 KB
1.01 KB

res/drawable-xhdpi/babychair_icon.png

2.64 KB

res/drawable-xhdpi/car.png

2.06 KB

res/drawable-xhdpi/collect_icon.png

1.01 KB

res/drawable-xhdpi/common_bg.jpg

9.13 KB
406 Bytes
1.33 KB
1.04 KB
1.65 KB
774 Bytes
1.77 KB

res/drawable-xhdpi/custom_point.png

1.02 KB
1.17 KB
1.02 KB
1.18 KB

res/drawable-xhdpi/expert_point.png

978 Bytes
1.09 KB
1.1 KB

res/drawable-xhdpi/ic_launcher.png

10.1 KB

res/drawable-xhdpi/icon_address.png

2.15 KB

res/drawable-xhdpi/icon_gcoding.png

4.32 KB

res/drawable-xhdpi/icon_phone.png

2.44 KB

res/drawable-xhdpi/icon_play.png

2.53 KB

res/drawable-xhdpi/icon_time.png

2.18 KB
1.79 KB
1.72 KB

res/drawable-xhdpi/login_input_bg.png

2.3 KB

res/drawable-xhdpi/logo_big.png

12.2 KB
1.72 KB

res/drawable-xhdpi/menu_ic_menu.png

1.27 KB

res/drawable-xhdpi/menu_ic_person.png

25.9 KB
2.18 KB
2.37 KB

res/drawable-xhdpi/menu_ic_star.png

2.19 KB

res/drawable-xhdpi/myorderbg.png

2.97 KB

res/drawable-xhdpi/myorderbg2.png

3.58 KB

res/drawable-xhdpi/play.png

4.65 KB

res/drawable-xhdpi/reg_ic_upload.png

690 Bytes

res/drawable-xhdpi/room_icon.png

1.63 KB

res/drawable-xhdpi/selector_icon.png

1.02 KB
1.36 KB
995 Bytes

res/drawable-xhdpi/share.png

15.3 KB

res/drawable-xhdpi/share_small.png

1.46 KB
1.25 KB

res/drawable-xhdpi/store_icon.png

1.07 KB

res/drawable-xhdpi/store_more.png

1.23 KB

res/drawable-xhdpi/subway_icon.png

1.24 KB

res/drawable-xhdpi/takeout_icon.png

2.48 KB

res/drawable-xhdpi/topbar_ic_back.png

1.78 KB

res/drawable-xhdpi/topbar_ic_logo.png

3.85 KB

res/drawable-xhdpi/topbar_ic_menu.png

1.5 KB
1.74 KB
1.65 KB
1.6 KB
1.36 KB
1.35 KB

res/drawable-xhdpi/vector.png

3.09 KB

res/drawable-xhdpi/vector2.png

3.48 KB
2.73 KB

res/drawable-xhdpi/wifi_icon.png

2.27 KB

res/drawable-xxhdpi/ic_launcher.png

14.9 KB

res/drawable/common_btn_white.xml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<selector xmlns:android="http://schemas.android.com/apk/res/android">
4+
<item android:state_pressed="true" android:drawable="@drawable/common_btn_white_press" />
5+
<item android:drawable="@drawable/common_btn_white_normal" />
6+
</selector>

res/drawable/orderseccuss_button.xml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<selector
3+
xmlns:android="http://schemas.android.com/apk/res/android">
4+
<item android:state_checked="false" android:drawable="@drawable/myorderbg2" />
5+
<item android:state_checked="true" android:drawable="@drawable/myorderbg2" />
6+
<item android:drawable="@drawable/myorderbg2" />
7+
</selector>

res/drawable/radiobutton_check.xml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<selector
3+
xmlns:android="http://schemas.android.com/apk/res/android">
4+
<item android:state_checked="false" android:drawable="@drawable/service_uncheck" />
5+
<item android:state_checked="true" android:drawable="@drawable/service_checked" />
6+
<item android:drawable="@drawable/point_indicator_uncheck" />
7+
</selector>
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3+
<item android:id="@+android:id/background"
4+
android:drawable="@drawable/touch_star_checked" />
5+
<item android:id="@+android:id/secondaryProgress"
6+
android:drawable="@drawable/touch_star_checked" />
7+
<item android:id="@+android:id/progress"
8+
android:drawable="@drawable/touch_star_unchecked"/>
9+
</layer-list>
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3+
<item android:id="@+android:id/background"
4+
android:drawable="@drawable/custom_point_checked" />
5+
<item android:id="@+android:id/secondaryProgress"
6+
android:drawable="@drawable/custom_point_checked" />
7+
<item android:id="@+android:id/progress"
8+
android:drawable="@drawable/custom_point_bg"/>
9+
</layer-list>
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3+
<item android:id="@+android:id/background"
4+
android:drawable="@drawable/custom_point" />
5+
<item android:id="@+android:id/secondaryProgress"
6+
android:drawable="@drawable/custom_point" />
7+
<item android:id="@+android:id/progress"
8+
android:drawable="@drawable/custom_point_big"/>
9+
</layer-list>

0 commit comments

Comments
 (0)