如何从特定屏幕启动应用程序进行测试,android studio

时间:2017-09-13 09:24:57

标签: android android-studio

我想在测试时从模拟器中的特定屏幕启动我的应用程序,因为从第一个屏幕到达它的某些部分是很烦人的。我也知道这可以通过清单来完成,但是我还有另一种方法可以用来进行测试。感谢您的回复

1 个答案:

答案 0 :(得分:0)

在manifest.xml中的该活动上添加到您要从哪里开始的活动

 <intent-filter>
 <action android:name="android.intent.action.HEREYOURSCREENACTIVITY" />
 <category android:name="android.intent.category.LAUNCHER" />
 </intent-filter>

并将其从主动性中移除
或制作演示主要活动并使用此代码跳转到其他活动

Intent intent=new Intent(this,whereyouwanttohop.class)
startActivity(intent);