日志猫显示过多的延迟设置亮度



我在Eclipse中创建了一个简单的Android应用程序,并在模拟器上运行它。 它真的很慢,当我检查 logcat 时,我看到了几行"过度延迟"。

编辑:澄清一下,该应用程序确实运行并显示预期的"输入消息先生"。 我在看为什么它这么慢,并认为过度延迟与滞后有关。

这是我的文件:

模拟器设置:

Target: Android 4.1 - API Level 16
CPU: ARM (armeabi-v7a)
SD Card: 9MiB
Max VM application heap size: 1024
Device Ram Size: 1024

主要活动.java:

package com.example.my.first.app;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
public class MainActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }
}

AndroidManifest.xml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.my.first.app"
    android:versionCode="1"
    android:versionName="1.0" >
    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />
    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

activity_main.xml:

<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:orientation="horizontal" >
    <EditText android:id="@+id/welcome_message"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:hint="@string/welcome_message_text" 
        android:layout_weight="1"/>
    <Button android:id="@+id/editor_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/editor_button_text"   
        android:layout_weight="0"/>
</LinearLayout >

日志日志:

09-24 17:26:00.363: E/PowerManagerService(158): Excessive delay setting brightness: 420ms, mask=2
09-24 17:26:00.584: E/PowerManagerService(158): Excessive delay setting brightness: 218ms, mask=2
09-24 17:26:01.602: I/Choreographer(1750): Skipped 48 frames!  The application may be doing too much work on its main thread.
09-24 17:26:32.856: I/Choreographer(1750): Skipped 39 frames!  The application may be doing too much work on its main thread.
09-24 17:26:52.942: E/PowerManagerService(158): Excessive delay setting brightness: 158ms, mask=2

由于您在计算机上使用模拟器,因此这很常见,并且与运行模拟器的计算机的性能有关,而不是与应用程序的性能有关。

在插入计算机并用作模拟器的手机上,这种情况仍然偶尔会发生,但频率要低得多,而且很少见。

很可能您的应用程序很好。

您可以通过将手机

插入计算机并在没有应用程序的情况下使用手机来确认这一点。您将在系统本身的日志猫中看到许多异常。

您还可以在手机上安装 Catlog,并查看直接在手机上报告的错误,而无需将其插入计算机。您可以查看在运行应用和不运行时是否发生这种情况,以查看是否确实存在问题。

注意:在 Android 4.1+ Catlog 上需要 root,但在早期 4.0 及更低版本上它不起作用。

最新更新