I've been trying to implement the tab UI described in this tutorial: https://developer.android.com/resources/tutorials/views/hello-tabwidget.html
I follow all the steps described in the process but I keep getting a runtime exception which I believe has something to do with the fact that nowhere in the tutorial I added the extra activities (songs, artists and albums) related to the content of each tab into the android manifest file.
Am I correct? is this tutorial (like many others) faulty or incomplete?
Log
class and leave debug statements inside your code block(s) that you believe are causing the problem. Once you have done that, enable theLogCat
perspective and while your code is running it will print out a stacktrace to the console hopefully showing you where theRuntime
exception is coming from. Once you have that, we have a better clue how to help. – Unrobe