本文整理汇总了Java中org.andengine.input.sensor.location.LocationSensorOptions类的典型用法代码示例。如果您正苦于以下问题:Java LocationSensorOptions类的具体用法?Java LocationSensorOptions怎么用?Java LocationSensorOptions使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
LocationSensorOptions类属于org.andengine.input.sensor.location包,在下文中一共展示了LocationSensorOptions类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: enableLocationSensor
import org.andengine.input.sensor.location.LocationSensorOptions; //导入依赖的package包/类
public void enableLocationSensor(final Context pContext, final ILocationListener pLocationListener, final LocationSensorOptions pLocationSensorOptions) {
this.mLocationListener = pLocationListener;
final LocationManager locationManager = (LocationManager) pContext.getSystemService(Context.LOCATION_SERVICE);
final String locationProvider = locationManager.getBestProvider(pLocationSensorOptions, pLocationSensorOptions.isEnabledOnly());
// TODO locationProvider can be null, in that case return false. Successful case should return true.
locationManager.requestLocationUpdates(locationProvider, pLocationSensorOptions.getMinimumTriggerTime(), pLocationSensorOptions.getMinimumTriggerDistance(), this);
this.onLocationChanged(locationManager.getLastKnownLocation(locationProvider));
}
示例2: enableLocationSensor
import org.andengine.input.sensor.location.LocationSensorOptions; //导入依赖的package包/类
/**
* @see {@link org.andengine.engine.Engine#enableLocationSensor(android.content.Context, org.andengine.input.sensor.location.ILocationListener, org.andengine.input.sensor.location.LocationSensorOptions)}
*/
protected void enableLocationSensor(final ILocationListener pLocationListener, final LocationSensorOptions pLocationSensorOptions) {
this.mEngine.enableLocationSensor(this, pLocationListener, pLocationSensorOptions);
}
示例3: enableLocationSensor
import org.andengine.input.sensor.location.LocationSensorOptions; //导入依赖的package包/类
/**
* @see {@link Engine#enableLocationSensor(android.content.Context, org.andengine.input.sensor.location.ILocationListener, org.andengine.input.sensor.location.LocationSensorOptions)}
*/
protected void enableLocationSensor(final ILocationListener pLocationListener, final LocationSensorOptions pLocationSensorOptions) {
this.mEngine.enableLocationSensor(this, pLocationListener, pLocationSensorOptions);
}
示例4: enableLocationSensor
import org.andengine.input.sensor.location.LocationSensorOptions; //导入依赖的package包/类
/**
* @see {@link Engine#enableLocationSensor(Context, ILocationListener, LocationSensorOptions)}
*/
protected void enableLocationSensor(final ILocationListener pLocationListener, final LocationSensorOptions pLocationSensorOptions) {
this.mEngine.enableLocationSensor(this, pLocationListener, pLocationSensorOptions);
}