32

我正在研究安卓。我希望我的列表视图水平包装其内容而不是填充所有宽度。wrap_content 属性不起作用。该怎么办?

4

5 回答 5

60

为了达到wrap_content高度ListView,我们需要使用CustomListView我们extends的原生ListView

MyListView.java

public class MyListView extends ListView {

    public MyListView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public MyListView(Context context) {
        super(context);
    }

    public MyListView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
                MeasureSpec.AT_MOST);
        super.onMeasure(widthMeasureSpec, expandSpec);
    }

}

在您layout使用这样的自定义视图中,

布局.xml

<com.yourpackagename.MyListView
        ...       
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        ... />
于 2015-07-28T11:22:26.247 回答
39

正如Romain Guy(谷歌工程师在 UI 工具包上工作)在他的帖子中所说

通过将宽度设置为wrap_content您告诉 ListView 与其最宽的孩子一样宽。因此,ListView 必须测量其项目并获取它必须在适配器上调用 getView() 的项目。这可能会发生多次,具体取决于布局传递的数量、父布局的行为等。

因此,如果您将 ListView 的布局宽度或布局高度设置为wrap_contentListView 将尝试测量附加到它的每个视图 - 这绝对不是您想要的。

请记住:始终避免设置wrap_contentListViews 或 GridViews,有关详细信息,请参阅此Google I/O 视频谈论 listview 的世界

于 2012-07-02T14:03:15.543 回答
4

它可以通过使用LinearLayout来实现。

像这样创建示例:

public class LinearLayoutAdapter   {
    LinearLayout linearLayout;
    ArrayList<String>  arrayList 
    private View rootView;
    private static LayoutInflater inflater;

    public ChoicesAdapter_(ArrayList<String>  arrayList ,LinearLayout linearLayout)
    {
        this.index =index;
        this.arrayList=arrayList;
        this.linearLayout=linearLayout;
        notifyDataSetChanged();
    }
    private void notifyDataSetChanged() {
        linearLayout.removeAllViews();
        for (int i =0;i<getCount();i++){
            linearLayout.addView(getView(i,null,null));
        }
    }
    public int getCount() {
        return  arrayList.size();
    }
    public Object getItem(int position) {
        return null;
    }
    public long getItemId(int position) {
        return 0;
    }
    public View getView(final int position, View convertView, ViewGroup parent) {
       rootView = inflater.inflate(R.layout.row_list, null);
       TextView  textView = (TextView)rootView.findViewById(R.id.text);    
       textView.setText(arrayList.get(position));
        return rootView;
    }
}

MainActivity 示例:

public class MainActivity extends Activity    {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        ArrayList<String>  arrayList = new  ArrayList<String>();
        arrayList.add("Accent");
        arrayList.add("Acclaim");
        arrayList.add("Accord");
        arrayList.add("Achieva");
        arrayList.add("Aerio");
        arrayList.add("Aerostar");
        LinearLayout linearLayout = (LinearLayout)findViewById(R.id.linearLayout);
        linearLayoutAdapter= LinearLayoutAdapter(arrayList,linearLayout);
    }
}

XML 示例:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/text"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:gravity="center"
    android:textColor="@color/dark_gray"
    android:background="@color/white"
    android:textSize="20dp"
    android:text=""  />
于 2016-07-10T18:05:02.287 回答
3
I want my list view to wrap its content horizontally and not to fill all the width. 

在列表视图的情况下,您不能提供wrap_content,因为如果您为列表视图提供 wrap_content ,则只会显示前三个项目(行),其余的将被忽略。所以不要使用 wrap_content 。始终使用fill_parent或 match_parent列表显示

为了在 List View 上进行高效设计,您可以看到这个World of ListView

于 2012-07-02T14:03:06.127 回答
0

我知道我回答这个问题有点太晚了。但在我看来,如果您希望您的 ListView 具有某种 wrap_content 行为,您可以将其开始和结束边距设置为某个静态值。这在我的情况下有效。如果您担心为各种屏幕尺寸做这件事,那么有一个非常有用的库来处理这种情况。可扩展的 DP。请在 github 中检查一次。

于 2022-01-06T19:48:23.643 回答