0

当我正在使用的方向从纵向变为横向时,我想加载一个新活动:

@Override
public  void onConfigurationChanged(Configuration newConfig)
{
    super.onConfigurationChanged(newConfig);
    if(newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE)
    {
        startActivity(new Intent(this, ABCDActivity.class));
    }

    if(newConfig.orientation == Configuration.ORIENTATION_PORTRAIT)
    {
        super.onConfigurationChanged(newConfig);
        finish();
    }
}

但它不会随着方向的变化而改变我的活动。我错过了什么吗?

4

4 回答 4

2

尝试这个,

    @Override
    public void onConfigurationChanged(Configuration newConfig)
    {
     super.onConfigurationChanged(newConfig);
     if(newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE)
      {
       startActivity(new Intent(this, ABCDActivity.class));
      }
    }
于 2013-06-19T06:22:39.140 回答
1

在您Manifest Activity希望为其配置更改的每个活动的标签中,您必须放置以下行:

android:configChanges="方向|screenSize"

作为应用程序设计说明...不建议开始更改方向的新活动...

于 2013-06-19T06:21:28.437 回答
1

除非您在 AndroidManifest.xml 中声明了相应的属性,否则不会调用 onConfigurationChanged() 方法:

android:configChanges="orientation"
于 2013-06-19T06:22:21.320 回答
0

当你的方向改变时,你为什么要开始一个新的活动?最好只为不同的配置提供不同的资源!或者在 1 个 Activity 中使用 Fragments。

更多信息可以在这里找到:

编辑:您可以只创建一个在方向更改时重新创建自身的活动。因此,删除configChanges="screenSize..."您在 AndroidManifest.xml 中的所有内容。在活动的 xml 文件中,您可以链接到另一个片段。同样,可以在上面的链接中找到有关此的更多信息。

我的活动.java

public class MyActivity extends Activity
{
 @Override
 public void onCreate(Bundle cycle)
 {
    super.onCreate(cycle);
    this.setContentView(R.layout.myactivity);
 }
}

res/layout/myactivity.xml

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <fragment 
        class="com.example.myapp.fragments.TimeFrameGraphFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</FrameLayout>

和 res/layout-land/myactivity.xml

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <fragment 
        class="com.example.myapp.fragments.AllDataGraphFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</FrameLayout>
于 2013-06-19T06:21:27.593 回答