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

时间:2015-05-16 14:16:54

标签: android orientation android-logcat

我想知道何时使用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");
        }
    }
}

2 个答案:

答案 0 :(得分:0)

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

enter image description here

答案 1 :(得分:0)

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

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!");
        }
    }
}