当字体很大时,为什么listview中的相对布局无法正确扩展内容

时间:2017-03-15 10:27:10

标签: android android-layout listview relativelayout

我有一个列表视图,每个项目需要显示图像,书名,作者和价格。在正常情况下我的输出很好,看起来像下面的

enter image description here

我的客户有很大一部分客户需要将字体大小设置为巨大。完成后,作者姓名很长,我的输出如下所示

enter image description here

这是不对的,我希望它看起来像这样

enter image description here

换句话说,列表视图和内部元素的高度增长以适应更大量的文本。

以下是复制我的问题的代码。

书类

public class Book {
    public String name;
    public String author;
    public String price;

    public  Book(String name, String author, String price){
        this.name = name;
        this.author = author;
        this.price = price;
    }
}

主要活动代码

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.ListView;
import java.util.ArrayList;

public class MainActivity extends AppCompatActivity {

    ListView listView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        listView = (ListView) findViewById(R.id.list);

        ArrayList<Book> bookList = new ArrayList<Book>();
        bookList.add(new Book("Book 1", "By Christopher Christopheson",       "£0.50"));
        bookList.add(new Book("Book 2", "Author 2", "£0.75"));
        BookAdapter adapter = new BookAdapter(this, R.layout.row, bookList);

        listView.setAdapter(adapter);
    }
}

图书清单视图适配器

import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import java.util.ArrayList;
import android.widget.TextView;


public class BookAdapter extends ArrayAdapter<Book> {

    private ArrayList<Book> items;   
    private LayoutInflater lInflater;

    public BookAdapter(Context context, int textViewResourceId, ArrayList<Book> items){
        super(context, textViewResourceId, items);
        lInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        this.items = items;     
    }

     @Override
    public View getView(int position, View convertView,   ViewGroup parent){
        View v = convertView;

        if(v == null){
            v = lInflater.inflate(R.layout.row, null);
        }
        Book b = items.get(position);

        if(b!= null){
            TextView bookName = (TextView)v.findViewById(R.id.book_name);
            TextView bookPrice = (TextView)v.findViewById(R.id.book_price);
            TextView bookAuthor =   (TextView)v.findViewById(R.id.book_author);

            if(bookName != null){
                bookName.setText(b.name);
            }

            if(bookPrice != null){
                bookPrice.setText(b.price);
            }

            if(bookAuthor != null){
                bookAuthor.setText(b.author);
            }
        }

        return v;

    }

}

activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="barnetttabs.com.basiclistview.MainActivity">

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#000"
        android:orientation="vertical" >

        <ListView
            android:id="@+id/list"
            android:layout_height="wrap_content"
            android:layout_width="match_parent">
        </ListView>
    </LinearLayout>

</android.support.constraint.ConstraintLayout>

row.xml

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="150dp"
    android:paddingTop="4dp"
    android:paddingBottom="4dp"
    >

    <TextView
        android:id="@+id/price_background"
        android:layout_width="150dp"
        android:layout_height="wrap_content"
        android:minHeight="150dp"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
        android:layout_alignParentTop="true"
        android:background="#0000ff"
        />

    <TextView
        android:id="@+id/book_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="17sp"
        android:minHeight="150dp"
        android:layout_toLeftOf="@id/price_background"
        android:layout_alignParentLeft="true"
        android:gravity="top"
        android:background="#d3d3d3"
        android:layout_alignParentTop="true"
        android:layout_alignParentBottom="true"
        android:paddingLeft="110dp"
        android:paddingRight="4dp"
        />

   <ImageView
        android:id="@+id/book_image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:src="@drawable/lvplaceholderimage"
    />



    <TextView
        android:id="@+id/book_price"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@id/book_image"
        android:textSize="17sp"
        android:layout_alignLeft="@id/price_background"
        android:layout_alignParentRight="true"
        android:textColor="#fff"
        android:paddingLeft="4dp"
        android:paddingRight="4dp"
        android:paddingTop="4dp"
        />

    <TextView
        android:id="@+id/book_author"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="17sp"
        android:layout_alignLeft="@id/price_background"
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
        android:layout_below="@id/book_price"
        android:paddingLeft="4dp"
        android:paddingRight="4dp"
        android:paddingBottom="4dp"
        />

</RelativeLayout>

我尝试修复row.xml中相对布局的layout_height。这样可以保持高度一致,但是当作者太长时,会隐藏一些文本。当我在这个问题上搜索解决方案时,大多数事情都说解决方法是将高度设置为我已经完成的wrap_content,但它没有解决问题。

有没有办法通过更改xml布局或java代码来解决这个问题?也许我在row.xml中使用的相对布局不是正确的方法?

1 个答案:

答案 0 :(得分:1)

Chetan的建议是要走的路。基本思想是从相对布局更改为水平线性布局。中间部分的权重为0,2个结束位的长度如前所述。唯一的缺点是该方法需要有一个嵌套的布局才能使蓝色位工作,但希望不会太多的性能损失。

在activity_main.xml中,将listview代码更改为

  <ListView
        android:id="@+id/list"
        android:layout_height="wrap_content"
        android:divider="@android:color/transparent"
        android:dividerHeight="5.0sp"
        android:layout_width="match_parent">
    </ListView>

将row.xml更改为

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="150dp"
    android:layout_marginTop="8dp"
    android:layout_marginBottom="8dp"
    android:orientation="horizontal"
    android:background="#d3d3d3"
    >

    <ImageView
        android:id="@+id/book_image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/lvplaceholderimage"
        android:layout_gravity="top"
        />

    <TextView
        android:id="@+id/book_name"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:textSize="17sp"
        android:layout_gravity="top"
        android:paddingLeft="4dp"
        android:paddingRight="4dp"
        android:layout_weight="1"
        />

    <RelativeLayout
        android:layout_width="150dp"
        android:layout_height="wrap_content"
        android:minHeight="150dp"
        android:background="#0000ff">

        <TextView
            android:id="@+id/book_price"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="17sp"
            android:layout_alignParentTop="true"
            android:textColor="#fff"
            android:paddingLeft="4dp"
            android:paddingRight="4dp"
            android:paddingTop="4dp"
            />

        <TextView
            android:id="@+id/book_author"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="17sp"
            android:layout_below="@id/book_price"
            android:layout_alignParentBottom="true"
            android:paddingLeft="4dp"
            android:paddingRight="4dp"
            android:paddingBottom="4dp"
             />
    </RelativeLayout>
</LinearLayout>

然后看起来像这样 enter image description here