我有一个关于单元测试android方向转换的问题。 我的应用程序支持Portrait和Landscape,我必须测试方向更改时是否正确绘制了视图层次结构。
我已经创建了两个测试方法来检查这个,我有类似的东西:
public void testOnCreate() throws Exception {
//Check all the activity components
assertNotNull(activity);
assertNotNull(application);
//Check if the rights components are available on the screen
assertNotNull(LayoutInflater.from(activity));
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
testOrientationPortrait();
}
在这种特殊情况下,测试通过,并正确绘制视图层次结构。但是当我尝试使用以下方法测试景观时:
public void testOrientationChange() throws Exception {
assertNotNull(activity);
activity.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
//Check if the rights components are available on the screen
assertNotNull(LayoutInflater.from(activity));
testOrientationLandscape();
}
方向更改,但视图层次结构失败,因为视图具有纵向属性。
任何想法如何解决这个问题?
谢谢, 柜
答案 0 :(得分:2)
覆盖此方法并在方法中进行更改:
@Override
public void onConfigurationChanged(Configuration newConfig) {
// TODO Auto-generated method stub
super.onConfigurationChanged(newConfig);
}
不要忘记添加
<activity
android:configChanges="orientation"
>
</activity>
在你的清单中。
这可以用来检查方向。 getResources()。getConfiguration()。取向