Hello,,here is ToDoList.java code.
package com.paad.ToDoList;
import android.app.Activity;
import android.os.Bundle;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.EditText;
public class ToDoListActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ListView myListView = (ListView)
findViewById(R.id.myListView);
final EditText myEditText =
(EditText)findViewById(R.id.myEditText);
}
}
the error is myListView cannot be resolved & same is in the case of
myEditText.
Please suggest me what sholud i do..??
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en