所以我正在学习android编程。我正在尝试制作一个读取所有文件并将其显示在列表中的应用程序。因此,我进行列表项的布局,起初我使用权重使用线性布局,但是android studio建议嵌套权重不好。因此,经过一番搜索,我发现更好的选择是约束布局。所以我尝试使用约束布局这样的方式
list_item.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="80dp"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_margin="4dp"
android:orientation="horizontal">
<ImageView
android:id="@+id/thumbnail_imageview"
android:layout_width="80dp"
android:layout_height="match_parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"/>
<TextView
android:id="@+id/filename_textview"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintHeight_default="percent"
app:layout_constraintHeight_percent="0.5"
android:gravity="center_vertical"
android:paddingStart="8dp"
android:paddingLeft="8dp"
android:paddingEnd="8dp"
android:paddingRight="8dp"
android:text="File Name"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toRightOf="@+id/thumbnail_imageview"
app:layout_constraintRight_toRightOf="parent" />
<TextView
android:id="@+id/filesize_textview"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintHeight_default="percent"
app:layout_constraintHeight_percent="0.5"
app:layout_constraintWidth_default="percent"
app:layout_constraintWidth_percent="0.5"
android:gravity="center_vertical"
android:paddingStart="8dp"
android:paddingLeft="8dp"
android:paddingEnd="8dp"
android:paddingRight="8dp"
android:text="File Size"
app:layout_constraintTop_toBottomOf="@id/filename_textview"
app:layout_constraintLeft_toRightOf="@+id/thumbnail_imageview"/>
<TextView
android:id="@+id/filetype_textview"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintHeight_default="percent"
app:layout_constraintHeight_percent="0.5"
app:layout_constraintWidth_default="percent"
app:layout_constraintWidth_percent="0.5"
android:gravity="center_vertical"
android:paddingStart="8dp"
android:paddingLeft="8dp"
android:paddingEnd="8dp"
android:paddingRight="8dp"
android:text="File Type"
app:layout_constraintTop_toBottomOf="@id/filename_textview"
app:layout_constraintLeft_toRightOf="@+id/filesize_textview"
app:layout_constraintRight_toRightOf="parent" />
</android.support.constraint.ConstraintLayout>
问题是文件大小和文件类型的百分比分别为50%,但它们重叠且溢出。我不明白自己在做什么错。
答案 0 :(得分:0)
这是因为layout_constraintWidth_percent
的值(以及高度)基于父容器的宽度-但是,项目左侧是缩略图thumbnail_imageview
空间。因此,两个宽度分别为50%的小部件的剩余水平空间不足100%。
要修复此问题,请将您的两个项目包装在一个容器中(例如另一个ConstraintLayout
),然后将该容器与缩略图的右侧对齐。