Skip to content Skip to sidebar Skip to footer

"stopped Unexpectedly" Tried 10000 Times To Fix

here is my Main java file, MainActivity.java package com.myprojects.schecklist; import android.app.ListActivity; import android.os.Bundle; import android.widget.ArrayAdapter; impor

Solution 1:

Change:

newArrayAdapter<String>(this,
                android.R.layout.simple_list_item_1, items)

with:

newArrayAdapter<String>(this,
    android.R.layout.simple_list_item_1, android.R.id.text1, items)

Solution 2:

Instead of Extending ListActivity try extending Activity or change your

<ListView
        android:id="@+id/mylist"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

to

 <ListView
        android:id="@android:id/list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

Post a Comment for ""stopped Unexpectedly" Tried 10000 Times To Fix"