0

我有一个关于单元测试 android 方向变化的问题。我的应用程序同时支持纵向和横向,我必须测试当方向改变时视图层次结构是否正确绘制。

我创建了两种测试方法来检查这个,我有这样的东西:

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();
}

方向改变了,但是视图层次结构失败了,因为视图具有来自纵向的属性。

任何想法如何解决这一问题?

谢谢,方舟

4

1 回答 1

2

覆盖此方法并在方法中进行更改:

@Override
 public void onConfigurationChanged(Configuration newConfig) {
  // TODO Auto-generated method stub
  super.onConfigurationChanged(newConfig);


 }

不要忘记添加

 <activity

        android:configChanges="orientation"
        >
    </activity>

在你的清单中。

这可以用来检查方向。getResources().getConfiguration().orientation

于 2013-01-28T13:27:49.927 回答