Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d6c19197 authored by Christian Mehlmauer's avatar Christian Mehlmauer
Browse files

Fix for issue 895 (missing android: prefix), Removed unused imports

Change-Id: I5eeca1db7eb97251729dff728b4c482de4b14885
parent bcb62f09
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -18,9 +18,7 @@ package android.app;

import android.os.Bundle;
import android.os.Handler;
import android.view.KeyEvent;
import android.view.View;
import android.widget.Adapter;
import android.widget.AdapterView;
import android.widget.ListAdapter;
import android.widget.ListView;
@@ -68,7 +66,7 @@ import android.widget.ListView;
 *               android:layout_weight="1"
 *               android:drawSelectorOnTop="false"/>
 * 
 *     <TextView id="@id/android:empty"
 *     <TextView android:id="@id/android:empty"
 *               android:layout_width="fill_parent" 
 *               android:layout_height="fill_parent"
 *               android:background="#FF0000"
@@ -307,7 +305,7 @@ public class ListActivity extends Activity {
    }

    private AdapterView.OnItemClickListener mOnClickListener = new AdapterView.OnItemClickListener() {
        public void onItemClick(AdapterView parent, View v, int position, long id)
        public void onItemClick(AdapterView<?> parent, View v, int position, long id)
        {
            onListItemClick((ListView)parent, v, position, id);
        }