Android ListView固定高度项
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android ListView固定高度项相关的知识,希望对你有一定的参考价值。
有点问题。我想创建一个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设备和模拟器(两者都显示相同的结果)。
非常感谢提前。
UPD:
感谢Miguel和Sam。解决方案是将maxHeight设置为textView,使我的列表项增长(即+id/thread_item_preview
)并将RelativeLayout的minHeight设置为300dip,以防止缩小。
如果您将行中的所有子视图高度从wrap_content
更改为match_parent
怎么办?
来自评论
你试过minHeight
和maxHeight
属性吗?例如:
android:minHeight="300dp"
您还应该观看Android的Romain Guy discuss efficiency in adapters and getView()
。
为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,忽略您在xml中指定的300dip高度。通过提供父视图并传递false
,inflater将遵循300dip高度,而不将其附加到根(父)。
尝试改变这个
android:layout_height="300dip"
至
android:minHeight="300dip"
这对我来说使用ExpandableListView,所以我想它适用于这种情况。
您可以通过为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" />
尝试将内容TextView的高度设置为0dp
,然后将其layout_alignParentBottom
设置为true
。
<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>
如果我没弄错的话,listView会自动将自定义视图的LayoutParams修改为wrap_content,wrap_content。但是,上面的答案是正确的,如果你设置minHeight或minWidth它会很好地工作。
以上是关于Android ListView固定高度项的主要内容,如果未能解决你的问题,请参考以下文章
包装在 HorizontalScrollView 中的 Android Listview 高度不正确,其中列表项的高度不同