比如:
<activity
android:name=".ProfileCommentsActivity"
android:configChanges="orientation"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan" >
activity>
GPS定位:需要在AndroidManifest.xml当中声明权限:android.permission.ACCESS_FINE_LOCATION
Network定位:需要在AndroidManifest.xml当中声明权限:android.permission.ACCESS_FINE_LOCATION (精确定位)
或
android.permission.ACCESS_COARSE_LOCATION (粗糙定位)
2获取LocationManager对象
3选择LocationProvider;
4绑定LocationListener对象;
GPS定位:需要在AndroidManifest.xml当中声明权限:android.permission.ACCESS_FINE_LOCATION
Network定位:需要在AndroidManifest.xml当中声明权限:android.permission.ACCESS_FINE_LOCATION (精确定位)
或
android.permission.ACCESS_COARSE_LOCATION (粗糙定位)
2获取LocationManager对象
3选择LocationProvider;
4绑定LocationListener对象;
No comments:
Post a Comment