列表项布局未将项目显示为全宽

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了列表项布局未将项目显示为全宽相关的知识,希望对你有一定的参考价值。

我正在尝试制作自定义列表布局,每件事情都很好(自定义类和列表适配器)........但是活动上的项目不知何故不会扩展到全屏。这是我的布局设计:

<?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"
    android:clickable="true"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <LinearLayout

        android:layout_width="match_parent"
        android:orientation="horizontal"
        android:layout_height="wrap_content">


        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="vertical">

            <TextView
                android:id="@+id/chapter_number"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Name" />

            <TextView
                android:id="@+id/chapter_description"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                />



        </LinearLayout>


        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="4"
            android:orientation="vertical">

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="right"
               android:src="@drawable/ic_arrow_right" />


        </LinearLayout>

    </LinearLayout>

</android.support.constraint.ConstraintLayout>

这是它的样子:

Output

我试图将箭头移动到屏幕的右上角。有什么建议?谢谢

答案

试试这个:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true">


<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <TextView
        android:id="@+id/chapter_number"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Name" />

    <TextView
        android:id="@+id/chapter_description"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />


</LinearLayout>


<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"
    android:src="@drawable/ic_arrow_right" />


</RelativeLayout>
另一答案

对于箭头,删除layout_weight并使其宽度为wrap_content。现在,所有剩余的重量都应该用章号+描述来消耗,它应该有效。

以上是关于列表项布局未将项目显示为全宽的主要内容,如果未能解决你的问题,请参考以下文章

RecyclerView 内容未使用片段父级的全宽

如何将AnimatedContainer设置为全宽?

使用 DialogFragment 和导航库时将对话框显示为全屏或对话框

css Beaver Builder为全宽,从Genesis的首页开始

在 Disclosure 指示器后面的 TableViewCell 中将 ImageView 设置为全宽

不要在片段中显示列表视图项