I have a beginner question, I want to debug my app and i don\'t know how to use the Logcat properly.
Right now, I am getting this error and i don\'t know what it mea
you can try this tips to use logcat..
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
System.out.println("1. Before Declare");
textView = (TextView) findViewById(R.id.textView);
System.out.println("2. After Declare");
}
See result on logcat, then you can see your step..