I can see the view with correct title. But there is none list item.
Following is my code. Please advise.
ReminderListActivity.java
------------------------------------------------------------
import android.app.ListActivity;
import android.os.Bundle;
import android.widget.ArrayAdapter;
public class ReminderListView extends ListActivity {
public void onCrate(Bundle icicle) {
super.onCreate(icicle);
setListAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1,
reminderTimeArray));
}
private String[] reminderTimeArray = { "5:30", "8:00", "9:30" };
}
AndroidManifest.xml
--------------------------------------------------
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.java23.erv">
<application android:icon="@drawable/icon">
<activity class=".ReminderListView" android:label="Easy Voice
Reminder">
<intent-filter>
<action android:value="android.intent.action.MAIN" />
<category
android:value="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>


