java模拟定位,java – 使用模拟位置而不在设置中设置它

编程入门 行业动态 更新时间:2024-10-05 23:28:44

java模拟定位,java – 使用模拟<a href=https://www.elefans.com/category/jswz/34/1771147.html style=位置而不在设置中设置它"/>

java模拟定位,java – 使用模拟位置而不在设置中设置它

我已经反编译了你提到的com.lexa.fakegps,它的作用是这样的:

private int setMocklocationSettings() {

int value = 1;

try {

value = Settings.Secure.getInt(getContentResolver(),Settings.Secure.ALLOW_MOCK_LOCATION);

Settings.Secure.putInt(getContentResolver(),Settings.Secure.ALLOW_MOCK_LOCATION,1);

} catch (Exception e) {

e.printStackTrace();

}

return value;

}

private void restoreMocklocationSettings(int restore_value) {

try {

Settings.Secure.putInt(getContentResolver(),restore_value);

} catch (Exception e) {

e.printStackTrace();

}

}

/* every time you mock location,you should use these code */

int value = setMocklocationSettings();//toggle ALLOW_MOCK_LOCATION on

try {

mLocationManager.setTestProviderLocation(LocationManager.GPS_PROVIDER,fake_location);

} catch (SecurityException e) {

e.printStackTrace();

} finally {

restoreMocklocationSettings(value);//toggle ALLOW_MOCK_LOCATION off

}

由于这些代码的执行时间非常短,其他应用程序很难检测到ALLOW_MOCK_LOCATION的变化.

你也需要,

1.要求root用户访问您的设备

2.将您的应用程序移动到/ system / app或/ system / priv-app

我在我的项目中尝试过,它运行正常.

更多推荐

java模拟定位,java – 使用模拟位置而不在设置中设置它

本文发布于:2024-02-14 05:10:34,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1762339.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:位置   java

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!