Custom CursorAdapter, ListView is shifting
问题 My class extends SimpleCursorAdapter. In that class I try to get CallLog into ListView (with three TextViews (number, name and date) and two ImageViews (which represents incoming and outgoing calls). My code in OnCreate method: Cursor c = getContentResolver().query(android.provider.CallLog.Calls.CONTENT_URI, null, "TYPE IN (\"1\",\"2\")", null, "DATE DESC"); startManagingCursor(c); String[] from = new String[] {"number", "name" , "_ID" }; int[] to = new int[] {R.id.number, R.id.name, R.id