Skip to content

Commit

Permalink
实现了轨迹图和行程记录
Browse files Browse the repository at this point in the history
  • Loading branch information
gaolei committed Feb 28, 2017
1 parent 2701296 commit ea097fa
Show file tree
Hide file tree
Showing 45 changed files with 1,922 additions and 112 deletions.
2 changes: 1 addition & 1 deletion BiuBike/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions BiuBike/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ dependencies {
compile files('libs/baidumapapi_map_v4_1_1.jar')
compile files('libs/nineoldandroids-2.4.0.jar')
compile 'com.android.support:recyclerview-v7:25.0.0'
compile files('libs/baidumapapi_util_v4_1_1.jar')
compile files('libs/gson-2.2.1.jar')
}
Binary file added BiuBike/app/libs/baidumapapi_util_v4_1_1.jar
Binary file not shown.
Binary file added BiuBike/app/libs/gson-2.2.1.jar
Binary file not shown.
32 changes: 22 additions & 10 deletions BiuBike/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@
<meta-data
android:name="com.baidu.lbsapi.API_KEY"
android:value="5CwCrj0MP0LsLMCH1WhajZ6C52FD3l1L" />
<activity
android:name=".MainActivity"
>

<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand All @@ -41,16 +40,29 @@
</activity>
<activity
android:name=".activity.CodeUnlockActivity"
android:windowSoftInputMode="stateVisible|adjustPan"
/>
<activity
android:name=".activity.WalletActivity"
/>
android:windowSoftInputMode="stateVisible|adjustResize" />
<activity android:name=".activity.WalletActivity" />
<activity android:name=".activity.RouteDetailActivity" />
<activity android:name=".activity.MyRouteActivity" />

<receiver android:name=".MainActivity$LocationReceiver">
<intent-filter>
<action android:name="com.locationreceiver" />
</intent-filter>
</receiver>
<receiver
android:name="com.biubike.service.RouteService$NetWorkReceiver"
android:label="NetworkConnection">
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
</receiver>

<service
android:name="com.baidu.location.f"
android:enabled="true"
android:process=":remote">
</service>
android:process=":remote"></service>
<service android:name="com.biubike.service.RouteService"></service>
</application>


Expand Down
Loading

0 comments on commit ea097fa

Please sign in to comment.