TouchListView 在放置后调整视图大小 (CommonsWare)

发布于 2025-01-03 23:42:04 字数 1992 浏览 0 评论 0原文

大家好(尤其是 CommonsWare)

我正在尝试使用 CommonsWare 的 TouchListView。

列表项的移动有效,看起来就像我打开应用程序时应该做的那样,但是当我移动该项目时,视图会获得不同的大小(认为大小与 simple_list_item_1 大致相同)。

我的行布局:

<?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>

编辑

图片说明

illustration

Hi all (especially CommonsWare)

I am trying to use the TouchListView of CommonsWare.

The movement of the list items works and looks like it should do when i open the app, but as I move the item around, the views get a different size (Think the size is about the same as the simple_list_item_1).

My row layout:

<?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

Pictures to illustrate

illustration

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放赐 2025-01-10 23:42:04

如果我不得不猜测,您没有正确设置 TouchListView 上的 normal_height 属性(或者可能是 expanded_height)。 normal_height 属性需要设置为行的高度,该高度必须是固定值。您的行高基于 wrap_content,提前无法得知。

If I had to guess, you have not properly set the normal_height attribute on your TouchListView (or possibly expanded_height). The normal_height attribute needs to be set to the height of your rows, which needs to be a fixed value. Your row height is based on wrap_content, not knowable in advance.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文