Android仪表化测试-模拟位置不起作用(返回null,尽管已设置testLocation)
创始人
2024-10-12 20:01:22
0

问题描述: 在Android仪表化测试中,模拟位置不起作用,即使已经设置了testLocation,返回的结果仍为空(null)。

解决方法:

  1. 确保已经添加了模拟位置的权限: 在AndroidManifest.xml文件中,添加以下权限:

    
    
  2. 确保已经设置了模拟位置的Provider: 在AndroidManifest.xml文件中,添加以下代码:

    
    
  3. 在测试代码中,确保已经启用了模拟位置:

    // 启用模拟位置
    InstrumentationRegistry.getInstrumentation().getUiAutomation()
        .executeShellCommand("settings put secure mock_location 1");
    
    // 设置模拟位置
    Location location = new Location("MockProvider");
    location.setLatitude(latitude);
    location.setLongitude(longitude);
    location.setAccuracy(1.0f);
    location.setTime(System.currentTimeMillis());
    location.setElapsedRealtimeNanos(SystemClock.elapsedRealtimeNanos());
    
    // 发送模拟位置
    InstrumentationRegistry.getInstrumentation().getUiAutomation()
        .executeShellCommand("service call location 42 i32 0 i32 0 f64 " +
            location.getLatitude() + " f64 " + location.getLongitude() + " f32 " +
            location.getAccuracy() + " i64 " + location.getTime() + " i64 " +
            location.getElapsedRealtimeNanos());
    
  4. 确保应用程序在测试期间已经启动: 在测试代码中,确保已经启动了应用程序:

    // 启动应用程序
    Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
    Intent intent = appContext.getPackageManager().getLaunchIntentForPackage(appContext.getPackageName());
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    appContext.startActivity(intent);
    
  5. 确保测试设备已经设置了开发者选项中的"允许模拟位置"选项: 在设备的设置中,找到开发者选项,确保"允许模拟位置"选项已经启用。

通过以上步骤,您应该能够解决Android仪表化测试中模拟位置不起作用的问题,并获取正确的位置信息。

相关内容

热门资讯

Android Recycle... 要在Android RecyclerView中实现滑动卡片效果,可以按照以下步骤进行操作:首先,在项...
安装apache-beam==... 出现此错误可能是因为用户的Python版本太低,而apache-beam==2.34.0需要更高的P...
Android - 无法确定任... 这个错误通常发生在Android项目中,表示编译Debug版本的Java代码时出现了依赖关系问题。下...
Android - NDK 预... 在Android NDK的构建过程中,LOCAL_SRC_FILES只能包含一个项目。如果需要在ND...
Alertmanager在pr... 首先,在Prometheus配置文件中,确保Alertmanager URL已正确配置。例如:ale...
Akka生成Actor问题 在Akka框架中,可以使用ActorSystem对象生成Actor。但是,当我们在Actor类中尝试...
Agora-RTC-React... 出现这个错误原因是因为在 React 组件中使用,import AgoraRTC from “ago...
Aksnginxdomainb... 在AKS集群中,可以使用Nginx代理服务器实现根据域名进行路由。以下是具体步骤:部署Nginx i...
Alertmanager中的基... Alertmanager中可以使用repeat_interval选项指定在一个告警重复发送前必须等待...
AddSingleton在.N... 在C#中创建Singleton对象通常是通过私有构造函数和静态属性来实现,例如:public cla...