Android设备onConfigurationChanged事件不处理方向(Android Dev

2019-07-03 21:22发布

我有一个活动,并在活动的启动,我需要改变lanscape的方向,然后后来我想为用户旋转设备来处理这两个方向的变化,但它一旦改变了方向,后来不改变方向。 这里是我的代码,请帮助

    public class Hls extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_hls);

    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);


}



@Override
public void onConfigurationChanged(Configuration newConfig) {
    super.onConfigurationChanged(newConfig);

    Log.v("new orientation", "yes");

    if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT)
    {
        Toast.makeText(this, "portrait", Toast.LENGTH_LONG).show();
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
    }
    if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE)
    {
        Toast.makeText(this, "landscape", Toast.LENGTH_LONG).show();
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
    } 

}

Answer 1:

在使用的onCreate setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE)将永久修复你的方向为横向,并避免取向的任何变化。 这就是为什么你的方向被固定,不向旋转回应。

这里是你可以使用一种替代方案: -

1>创建布局两个视图。 即,一个景观,一个用于人像views.Lets说activity_hls_land和activity_hls_port。

2>使用的setContentView(R.layout.activity_hls)在onConfigurationChanged(配置NEWCONFIG)代替setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE)或setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT)

下面是示例代码: -

 public class MainActivity extends Activity {
boolean isLaunched=true;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);


        if(isLaunched){
        Toast.makeText(this, "1 st launch " , Toast.LENGTH_SHORT).show(); 
        setContentView(R.layout.activity_hls_land);
        }

    }

    @Override
    public void onConfigurationChanged(Configuration newConfig) {
        super.onConfigurationChanged(newConfig);

    if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT)
    {
        Toast.makeText(this, "portrait", Toast.LENGTH_SHORT).show();
        setContentView(R.layout.activity_hls_port);
    }
     if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE)
    {
        Toast.makeText(this, "landscape", Toast.LENGTH_SHORT).show();
        setContentView(R.layout.activity_hls_land );
    } 
    }

}

在清单中添加的android:configChanges =活动中的“方向”: -

<activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" 
            android:configChanges="orientation"
            >

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

对于activity_hls_port样品布局: -

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:orientation="vertical">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        tools:context=".MainActivity" />
 <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        tools:context=".MainActivity" />
  <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        tools:context=".MainActivity" />
</LinearLayout>

样品风景模式: -

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:orientation="vertical"
    android:rotation="90">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        tools:context=".MainActivity" />
 <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        tools:context=".MainActivity" />
  <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        tools:context=".MainActivity" />
</LinearLayout>


Answer 2:

在此声明

if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT)
    {
        Toast.makeText(this, "portrait", Toast.LENGTH_LONG).show();
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
    }
    if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE)
    {
        Toast.makeText(this, "landscape", Toast.LENGTH_LONG).show();
        setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
    } 

onCreate(Bundle bundle);

你打过电话了

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

要么

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

这意味着,你的活动是在横向/纵向永不再旋转

删除它会触发onConfigurationChanged(Configuration)再次



Answer 3:

我并不清楚你的要求。 如果你不介意重新启动您的活动,你可以跳过覆盖onConfigurationChanged 。 系统会为你处理方向变化。 如果你不想它要在方向的变化重新启动时,只提<activity android:configChanges="keyboardHidden|orientation|screenSize"/>并覆盖onConfigurationChanged和调用setContentView()

public void onConfigurationChanged(Configuration newConfig) {
    super.onConfigurationChanged(newConfig);
    setContentview(R.layout.activity_hls);
    initializeViews();//here you can initialize all your memberVariables using findViewbyID()
}


文章来源: Android Device onConfigurationChanged event does not handling orientation