开发CTS测试以在Android中启动服务

时间:2018-11-12 08:14:17

标签: java android cts

有人可以提供示例CTS测试吗?已经了解Google CTS测试。开始对其进行分析。

基本上,我尝试使用自己的CTS测试在自己的设备Android上启动默认计算器。在此处输入代码

static final String TAG = "TestStartActivity";

public void launchCalculator() {

    Intent intent = new Intent();
    Log.i(TAG, "First Step");
    intent.setAction(Intent.ACTION_MAIN);
    intent.addCategory(Intent.CATEGORY_LAUNCHER);
    intent.setComponent(new Component Name("com.android.calculator2",
           "com.android.calculator2.Calculator"));
    start Activity(intent);

}

谢谢

0 个答案:

没有答案