Attempting to connect debugger to 'com.example.parsing_jericho' on port 8880


이렇게 뜨고 여기서 계속 진행이 안됩니다.



로그캣에는 

error opening trace file: No such file or directory (2) 

Application com.example.cyphers_jericho is waiting for the debugger on port 8100...


이렇게 뜨는데 ..


package com.example.parsing_jericho;



import android.app.*;

import android.os.Bundle;

import android.text.Html;

import android.widget.TextView;


public class MainActivity extends Activity {

public void onCreate(Bundle bundle)

{

super.onCreate(bundle);

setContentView(R.layout.text);

TextView text = (TextView)findViewById(R.id.text);


text.setText(Html.fromHtml("http://www.google.com"));

}


}


위는 소스입니다.


어떻게 해야될지 모르겠네요 ;