作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Android 库有哪些位置提供程序 cwac-locpoll
用来找位置?它仅限于 GPS,还是也可以使用其他来源?
最佳答案
引用 the documentation :
[The
Intent
forLocationPoller
] should have another extra, keyed byLocationPoller.EXTRA_PROVIDER
, with the name of the location provider you wish to use.
文档中的示例代码说明了这一点:
mgr=(AlarmManager)getSystemService(ALARM_SERVICE);
Intent i=new Intent(this, LocationPoller.class);
i.putExtra(LocationPoller.EXTRA_INTENT,
new Intent(this, LocationReceiver.class));
i.putExtra(LocationPoller.EXTRA_PROVIDER,
LocationManager.NETWORK_PROVIDER);
pi=PendingIntent.getBroadcast(this, 0, i, 0);
mgr.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP,
SystemClock.elapsedRealtime(),
PERIOD,
pi);
关于android - cwac-locpoll 可以使用多个位置提供程序吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13531974/
Android 库有哪些位置提供程序 cwac-locpoll用来找位置?它仅限于 GPS,还是也可以使用其他来源? 最佳答案 引用 the documentation : [The Intent f
我一直在尝试将我的任何应用程序的 gps 移动到服务中,但我真的很难过。出于某种原因,使用这些服务对我来说一直是个难题。 Opengl 没问题.....过去 3 天以来,将简单的数据从服务传递到 Ac
我正在使用 cwac-locpoll,它一直做得很好。但是,我的一些用户遇到了以下问题 java.lang.RuntimeException: WakeLock under-locked com.co
我是一名优秀的程序员,十分优秀!