Long story made short:
I had a few problems working on my MP3 Player for a Finals Project. Eclipse didn't generate a R.java file on my project, so i created a new one. I declare all the layout, id, drawable and the buttons i have. This "id cannot be resolved or is not a field" wasn't a problem a few moments before, Quick Fix Fixed (Duh!) it for me creating a field in my R.Java file in the gen folder.
But the thing i have this code:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.id.playlist);
~~~~~~~~~~~~~~~Harmless code~~~~~~~~~~
// Add menuItems to ListView
ListAdapter adapter = new SimpleAdapter(this, songsListData,
R.layout.playlist_item, new String[] { "songTitle" }, new int[] {
R.id.songTitle });
Both R.layout.playlist and R.id.songTitle are supposed to be declared on my R.Java.
Any Help Here?