如何调试android项目?

时间:2014-05-07 09:00:51

标签: android

我是android的初学者。任何人都可以告诉我如何调试android脚本以及断点和logcat如何工作? logcat中有什么东西? 我试着寻找这个...但我找不到任何!! 这是我的logcat

05-07 13:22:31.058: I/dalvikvm(609): Could not find method 
android.content.pm.PackageManager.getActivityLogo, referenced from method 
android.support.v7.internal.widget.ActionBarView.<init>
05-07 13:22:31.058: W/dalvikvm(609): VFY: unable to resolve virtual method 318:           
Landroid/content/pm/PackageManager;.getActivityLogo   
(Landroid/content/ComponentName;)Landroid/graphics/drawable/Drawable;
05-07 13:22:31.058: D/dalvikvm(609): VFY: replacing opcode 0x6e at 0x008b
05-07 13:22:31.058: I/dalvikvm(609): Could not find method     
android.content.pm.ApplicationInfo.loadLogo, referenced from method    
android.support.v7.internal.widget.ActionBarView.<init>
05-07 13:22:31.068: W/dalvikvm(609): VFY: unable to resolve virtual method 314:     
Landroid/content/pm/ApplicationInfo;.loadLogo     
(Landroid/content/pm/PackageManager;)Landroid/graphics/drawable/Drawable;
05-07 13:22:31.088: D/dalvikvm(609): VFY: replacing opcode 0x6e at 0x0099
05-07 13:22:31.108: D/dalvikvm(609): VFY: dead code 0x008e-0092 in     
Landroid/support/v7/internal/widget/ActionBarView;.<init> 
(Landroid/content/Context;Landroid/util/AttributeSet;)V
05-07 13:22:31.108: D/dalvikvm(609): VFY: dead code 0x009c-00a0 in     
Landroid/support/v7/internal/widget/ActionBarView;.<init> 
(Landroid/content/Context;Landroid/util/AttributeSet;)V
05-07 13:22:31.458: D/AndroidRuntime(609): Shutting down VM
05-07 13:22:31.458: W/dalvikvm(609): threadid=1: thread exiting with uncaught exception     
(group=0x4001d800)
05-07 13:22:31.478: E/AndroidRuntime(609): FATAL EXCEPTION: main
05-07 13:22:31.478: E/AndroidRuntime(609): java.lang.RuntimeException: Unable to start     
activity ComponentInfo{newapp.com/newapp.com.MainActivity}:     
java.lang.NullPointerException
05-07 13:22:31.478: E/AndroidRuntime(609):  at     
android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2663)
05-07 13:22:31.478: E/AndroidRuntime(609):  at     
android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
05-07 13:22:31.478: E/AndroidRuntime(609):  at     
android.app.ActivityThread.access$2300(ActivityThread.java:125)
05-07 13:22:31.478: E/AndroidRuntime(609):  at     
android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
05-07 13:22:31.478: E/AndroidRuntime(609):  at 
android.os.Handler.dispatchMessage(Handler.java:99)
05-07 13:22:31.478: E/AndroidRuntime(609):  at android.os.Looper.loop(Looper.java:123)
05-07 13:22:31.478: E/AndroidRuntime(609):  at 
android.app.ActivityThread.main(ActivityThread.java:4627)
05-07 13:22:31.478: E/AndroidRuntime(609):  at 
java.lang.reflect.Method.invokeNative(Native Method)
05-07 13:22:31.478: E/AndroidRuntime(609):  at     
java.lang.reflect.Method.invoke(Method.java:521)
05-07 13:22:31.478: E/AndroidRuntime(609):  at 
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
05-07 13:22:31.478: E/AndroidRuntime(609):  at     
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
05-07 13:22:31.478: E/AndroidRuntime(609):  at dalvik.system.NativeStart.main(Native     
Method)
05-07 13:22:31.478: E/AndroidRuntime(609): Caused by: java.lang.NullPointerException
05-07 13:22:31.478: E/AndroidRuntime(609):  at 
newapp.com.MainActivity.onCreate(MainActivity.java:32)
05-07 13:22:31.478: E/AndroidRuntime(609):  at     
android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
05-07 13:22:31.478: E/AndroidRuntime(609):  at     
android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
05-07 13:22:31.478: E/AndroidRuntime(609):  ... 11 more
05-07 13:22:41.409: I/Process(609): Sending signal. PID: 609 SIG: 9

这是主要的活动代码

package newapp.com;

import android.support.v7.app.ActionBarActivity;
import android.support.v7.app.ActionBar;
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
import android.os.Build;

public class MainActivity extends ActionBarActivity {

int counter;
Button add,sub;
TextView display;

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

    counter=0;
    add=(Button) findViewById(R.id.badd);
    add.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            counter++;
        }
    });
    if (savedInstanceState == null) {
        getSupportFragmentManager().beginTransaction()
                .add(R.id.container, new PlaceholderFragment())
                .commit();
    }
}

这是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="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="newapp.com.MainActivity$PlaceholderFragment" >

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="The sum is" 
    android:textSize="45dp"
    android:gravity="center"
    android:id="@+id/tdisplay"
    />
<Button 
    android:layout_width="150dp"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="add"
    android:id="@+id/badd"
    />

<Button
    android:id="@+id/bsub"
    android:layout_width="150dp"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="subtract" />

</LinearLayout>

谢谢

4 个答案:

答案 0 :(得分:0)

您需要在代码中添加log语句以查看Logcat中的详细信息。

在您的日志行中

05-07 13:22:31.478: E/AndroidRuntime(609): FATAL EXCEPTION: main
05-07 13:22:31.478: E/AndroidRuntime(609): java.lang.RuntimeException: Unable to start     
activity ComponentInfo{newapp.com/newapp.com.MainActivity}:     
java.lang.NullPointerException

指出由于哪个Android框架无法启动活动组件而找到NullPointerException。 然后,您将在尾随日志中找到此异常的根本原因

05-07 13:22:31.478: E/AndroidRuntime(609): Caused by: java.lang.NullPointerException
05-07 13:22:31.478: E/AndroidRuntime(609):  at 
newapp.com.MainActivity.onCreate(MainActivity.java:32)

上面的行说明NPE发生在第32行MainActivity的onCreate()上。所以需要弄清楚那里发生了什么错误。

很好 tutorial可以在这里找到

答案 1 :(得分:0)

Android中的调试非常简单。运行项目后,可以单击Logcat查看日志信息。有五种类型的日志可用。请找到以下详细信息。

Log.d(TAG&#34;消息&#34); ---用于打印调试消息(Log cat中的蓝色字符串)

Log.v(TAG&#34;消息&#34); ---用于打印详细消息(Log cat中的黑色字符串)

Log.i(TAG&#34;消息&#34); ---用于打印信息消息(Log cat中的绿色字符串)

Log.e(TAG&#34;消息&#34); ---用于打印错误消息(Log cat中的红色字符串)

Log.w(TAG&#34;消息&#34); ---用于打印警告消息(Log cat中的黄色字符串)

要查找崩溃,它将列出崩溃的类层次结构(表示崩溃的地方)。它将列出行号。来自你的问题

Caused by: java.lang.NullPointerException
 05-07 13:22:31.478: E/AndroidRuntime(609):  at 
  newapp.com.MainActivity.onCreate(MainActivity.java:32)

在主要活动的第32行发生了崩溃。您可以点击它,然后它会将您重定向到该行。

欲了解更多信息,请访问以下网站:

http://developer.android.com/tools/debugging/debugging-log.html

How to open LogCat in Eclipse (for Android Debug)

答案 2 :(得分:0)

您可能只想查找第一条错误消息(E/...)。在您的情况下E/AndroidRuntime(609)并向下阅读。

05-07 13:22:31.478: E/AndroidRuntime(609): FATAL EXCEPTION: main
05-07 13:22:31.478: E/AndroidRuntime(609): java.lang.RuntimeException: Unable to start     
activity ComponentInfo{newapp.com/newapp.com.MainActivity}:     
java.lang.NullPointerException
....

正如你在这里看到的那样,它很早就说明你有一个NullPointerException,这意味着你使用的某个对象的值为null - 无论出于何种原因(有很多可能性)。

向下看,你发现......

... at newapp.com.MainActivity.onCreate(MainActivity.java:32)

告诉你文件名(MainActivity.java)和行号(32)

还有很多关于如何实际使用调试器,步进等的教程,你可能会考虑搜索“debug java”或“debug eclipse”而不是寻找android开始。

Debugging Eclipse

答案 3 :(得分:-1)

无论何时运行程序,调试都会自动在log cat中启动 你可以查看那里的日志

您可以在运行

之前创建断点

cntrl+Shift+bRight click the mouse and select breakpoint

您也可以声明

System.out.println

阅读这篇文章,我想这会对你有帮助。

你得到了完整的细节 一步一步..

Debugging Android applications - Tutorial

Debugging with the Eclipse Platform