9

出了点小问题。我想创建一个 android 列表视图活动,列表中的所有项目都具有固定的高度。

因此,我的项目布局 (thread_item.xml) 如下所示:

<?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="300dip"
        >
    <TextView android:id="@+id/thread_item_title"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:text="[dummy]"
              android:textSize="20dip"
              android:textStyle="bold"
            />
    <ImageView android:id="@+id/thread_first_image"
               android:layout_below="@id/thread_item_title"
               android:scaleType="centerInside"
               android:maxWidth="100dip"
               android:maxHeight="100dip"
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:adjustViewBounds="true" />
    <TextView
            android:id="@+id/thread_item_preview"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignTop="@id/thread_first_image"
            android:text="[dummy]"
            android:textSize="15dip">
    </TextView>
</RelativeLayout>

我将根元素的 layout_height 设置为 300dip 并希望所有项目都具有相同的高度,但事实并非如此。当我运行应用程序时,它看起来像具有 wrap_content 值的高度。

此外,活动本身看起来像这样:

public class ThreadListActivity extends ListActivity {

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);        
        /*
         Code to get items from the storage.
        */

        setListAdapter(new ThreadItemAdapter(this, R.layout.thread_item, itemsArray)));


        getListView().setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> adapterView, View view, int position, long id) {
                /*Start new Activity. Unrelated stuff.*/
            }
        });
    }
}

我正在使用的适配器如下所示:

public class ThreadItemAdapter extends ArrayAdapter<ThreadItem> {

    Activity context;
    List<ThreadItem> items;

    public ThreadItemAdapter(Activity context, int textViewResourceId, List<ThreadItem> items) {
        super(context, textViewResourceId, items);
        this.context = context;
        this.items = items;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        LayoutInflater inf = this.context.getLayoutInflater();
        View result;
        if (convertView == null) {
            result = inf.inflate(R.layout.thread_item, null);
        } else {
            result = convertView;
        }

        TextView tbTitle = (TextView) result.findViewById(R.id.thread_item_title);
        TextView tbPreview = (TextView) result.findViewById(R.id.thread_item_preview);
        ImageView ivFirstImage = (ImageView) result.findViewById(R.id.thread_first_image);

        ThreadItem item = items.get(position);

        tbTitle.setText(item.getThreadTitle());
        ivFirstImage.setImageBitmap(item.getFirstImage());

        SimpleLeadingMarginSpan span = new SimpleLeadingMarginSpan(item.getFirstImage() != null ? 5 : 0, 115); // TODO: const
        SpannableString previewText = new SpannableString(item.getThreadPreview());
        previewText.setSpan(span, 0, previewText.length(), 0);
        tbPreview.setText(previewText);

        return result;
    }
}

我不明白为什么所有列表项仍然包装它们的内容并且不保持 300dip 的高度。它们可能比 300dip 更小或更大。我正在使用 android 2.3.3,在 HTC Evo 3D 设备和模拟器上进行测试(都显示相同的结果)。

提前非常感谢。

升级版:

感谢米格尔和山姆。解决方案是将 maxHeight 设置为 textView,这会使我的列表项增长(即+id/thread_item_preview)并将 RelativeLayout 的 minHeight 设置为 300dip,以防止其缩小。

4

7 回答 7

41

当为 convertView 充气时,而不仅仅是

result = inf.inflate(R.layout.thread_item, null);

result = inf.inflate(R.layout.thread_item, parent, false);

有问题的方法是inflater.inflate(int viewId, ViewGroup parent, boolean attachToRoot)——因为你不尊重提供的parent(在这种情况下是 ListView),你提供给 listview 项的任何维度默认设置为 layout_width=fill_parent,layout_height=wrap_content,忽略 300dip您在 xml 中指定的高度。通过提供父视图并传递false,充气机将遵守 300dip 高度,而不会将其附加到根(父)。

于 2012-04-30T17:50:59.273 回答
31

如果将行中的所有子视图高度从wrap_content更改为match_parent怎么办?


来自评论

您是否尝试过minHeightandmaxHeight属性?例如:

android:minHeight="300dp"

您还应该观看 Android 的 Romain Guy讨论适配器和getView().

于 2012-04-30T17:30:36.140 回答
7

尝试改变这个

android:layout_height="300dip"

android:minHeight="300dip"

这对我使用 ExpandableListView 有用,所以我想它适用于这种情况。

于 2012-04-30T17:51:03.347 回答
2

您可以通过为 Min 和 Max 指定相同的维度来实现此目的。这解决了我的问题。

<ImageView
    android:id="@+id/appIconImageView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_marginBottom="8dp"
    android:layout_marginLeft="8dp"
    android:layout_marginTop="8dp"
    android:adjustViewBounds="true"
    android:maxHeight="50dp"
    android:maxWidth="50dp"
    android:minHeight="50dp"
    android:minWidth="50dp"
    android:src="@drawable/ic_launcher" />

在此处输入图像描述

于 2014-08-10T17:26:08.863 回答
0
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:minHeight="60dp"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:gravity="center"
    android:weightSum="1"
    android:background="@color/main_color">

    <ImageView
        android:id="@+id/img_left_menu"
        android:layout_weight="0.4"
        android:focusable="false"
        android:maxHeight="50dp"
        android:maxWidth="50dp"
        android:minHeight="50dp"
        android:minWidth="50dp"
        android:layout_width="0dp"
        android:scaleType="centerInside"
        android:adjustViewBounds="true"
        android:layout_height="wrap_content"/>

    <TextView
        android:id="@+id/tx_left_menu"
        android:layout_width="0dp"
        android:textSize="18dp"
        android:layout_gravity="center_vertical"
        android:layout_weight="0.6"
        android:singleLine="true"
        android:layout_height="wrap_content"
        android:focusable="false"
        />
</LinearLayout>
于 2015-03-24T17:51:44.000 回答
0

尝试将内容 TextView 的高度设置为0dp,然后将其设置layout_alignParentBottomtrue.

于 2012-04-30T17:46:32.113 回答
0

如果我没记错的话,listView会自动将自定义视图的LayoutParams修改为wrap_content,wrap_content。但是,上面的答案是正确的,如果你设置了 minHeight 或 minWidth ,它会很好地工作。

于 2015-07-09T12:24:50.903 回答