1

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

MainActivity.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 >

LOGCATログ:

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
4

1 に答える 1

2

コンピューターでエミュレーターを使用しているため、これは一般的であり、アプリケーションではなく、エミュレーターを実行しているコンピューターのパフォーマンスに関連しています。

これは、コンピューターに接続されてエミュレーターとしても使用される電話で発生することがありますが、FARの頻度は低く、まれです。

ほとんどの場合、アプリケーションは問題ありません。

これは、電話をコンピューターに接続し、アプリなしで電話を使用することで確認できます。logcatには、システム自体からのいくつかの例外が表示されます。

また、 Catlogを電話自体にインストールして、コンピューターに接続せずに電話で直接報告されたエラーを確認することもできます。これがアプリの実行中に発生するかどうかを確認し、実行せずに実際に問題があるかどうかを確認できます。

注: Android 4.1以降では、Catlogにはrootが必要ですが、4.0以前では動作しません。

于 2013-01-05T03:09:16.480 に答える