gpt4 book ai didi

java - 在某些卡片 android 中,recyclerview 中的删除按钮位置不正确

转载 作者:行者123 更新时间:2023-12-02 10:21:34 27 4
gpt4 key购买 nike

我必须从 recyclerview 中删除图像,因此,我在卡片 View 的右上角添加了一个删除按钮。但在某些卡片中,删除按钮的位置正确,而在某些卡片中则不然。

这是我的 XML 文件代码:

    <?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/cardview"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="4dp">

<android.support.constraint.ConstraintLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<ImageView
android:id="@+id/imageview"
android:layout_width="wrap_content"
android:layout_height="150dp"
android:src="@drawable/android"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:text="1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/imageview"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toEndOf="@+id/imageview" />

<ImageButton
android:id="@+id/bt_delete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_delete" />

</android.support.constraint.ConstraintLayout>
</android.support.v7.widget.CardView>

下面是输出

此处删除按钮在顶部三张卡片中未正确显示,但在底部卡片中正确显示

在纵向模式下也能正确显示: enter image description here

请告诉我我必须做什么才能解决这个问题

最佳答案

内部ConstraintLayout有

android:layout_width="wrap_content"

应该是

android:layout_width="match_parent"

看看这是否有帮助:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/cardview"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="4dp">

<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<ImageView
android:id="@+id/imageview"
android:layout_width="wrap_content"
android:layout_height="150dp"
android:src="@mipmap/ic_launcher"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:text="1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/imageview"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toEndOf="@+id/imageview" />

<ImageButton
android:id="@+id/bt_delete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@mipmap/ic_launcher" />

</android.support.constraint.ConstraintLayout>
</android.support.v7.widget.CardView>

关于java - 在某些卡片 android 中,recyclerview 中的删除按钮位置不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54313508/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com