在屏幕方向更改时显示 Logcat 消息

Showing Logcat message on screen orientation change

我想知道使用 Logcat 我的设备的方向何时发生变化,但它没有显示任何输出(我使用的是 Android Studio)。我已将 screenSize 属性添加到我的 AndroidManifest.xml 中,但这并不能解决问题。下面是我的清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.danishrehman.orientationchangenotification" >

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity

            android:name=".MainActivity"
            android:label="@string/app_name"
            android:configChanges="orientation|screenSize"

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

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

</manifest>

这是我的 Java 代码:

package com.example.danishrehman.orientationchangenotification;

import android.app.Activity;
import android.content.res.Configuration;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.util.Log;


public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    @Override
    public void onConfigurationChanged(Configuration newConfig) {
        super.onConfigurationChanged(newConfig);
        if(newConfig.orientation==Configuration.ORIENTATION_LANDSCAPE)
        {
            Log.d("LIFECYCLE","Welcome to Landscape Orientation");
        }
        else if (newConfig.orientation==Configuration.ORIENTATION_PORTRAIT)
        {
            Log.d("LIFECYCLE","Welcome to Portrait Orientation");
        }
    }
}

我用 android:configChanges="orientation|screenSize" 尝试了您的代码,我可以在 Android Studio Logcat 中看到正确的登录。听起来很傻,但是你能检查一下你在 Logcat window 中选择的日志级别吗?正如在您的代码中一样,您使用了 Log.d(...) 只有当您在 Logcat window 中选择日志级别作为 VerboseDebug 时,它才应该可见。

您可以检查activity是否已重新创建,这是:屏幕方向已更改。

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        if (savedInstanceState != null) {
            //probably orientation change
            Log.d("LIFECYCLE", "Orientation has changed!");
        }
    }
}