Привет всем (особенно CommonsWare)
Я пытаюсь использовать TouchListView CommonsWare.
Движение элементов списка работает и выглядит так, как и должно, когда я открываю приложение, но когда я перемещаю элемент, представления приобретают другой размер (думаю, размер примерно такой же, как и simple_list_item_1). 1005 *
Мой макет строки:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:ignoreGravity="@+id/icon">
<ImageView android:id="@+id/icon"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/grabber"/>
<TextView
android:id="@+id/label"
android:layout_width="fill_parent"
android:paddingLeft="9dip"
android:layout_height="wrap_content"
android:layout_alignWithParentIfMissing="true"
android:layout_toRightOf="@id/icon"
android:layout_centerVertical="true"
android:textSize="25dip"
android:ellipsize="marquee"
android:singleLine="true"/>
<View
android:id="@+id/groceryCheckedView"
android:layout_centerVertical="true"
android:visibility="gone"
android:focusable="true"
android:background="@color/black"
android:layout_height="2dp"
android:layout_width="fill_parent"/>
<View
android:id="@+id/grocerySeparatorView"
android:background="@color/red"
android:layout_height="1dp"
android:layout_width="fill_parent"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
EDIT
Картинки для иллюстрации