我在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
答案 0 :(得分:2)
由于您在计算机上使用模拟器,这很常见,并且与运行模拟器而非应用程序的计算机的性能有关。
有时在手机上插入电脑并用作模拟器时仍然会发生这种情况,但FAR不常见且很少见。
很可能你的申请很好。
您可以通过将手机插入电脑进行确认,只需在没有应用的情况下使用手机即可。您将从系统中看到logcat中的许多异常。
您还可以在手机上安装Catlog,直接在手机上查看报告的错误,而无需将其插入计算机。您可以在运行应用程序时查看是否发生这种情况,而无需运行以查看确实存在问题。
注意:在Android 4.1+上Catlog需要root,但它在早期版本4.0及以下版本中无效。