gpt4 book ai didi

java - Android ListView 项目太大不知道为什么

转载 作者:行者123 更新时间:2023-12-01 16:58:37 25 4
gpt4 key购买 nike

我正在测试我的应用程序并发现了这个错误。 This is how UI looks

在 Android 5.1 上运行,但在更高版本中不会发生这种情况...这是完整的 XML 代码 XML Code

目前的源代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:minHeight="80dp"
android:layout_height="wrap_content"
android:background="?attr/rowTareaBackGround">

<TextView
android:id="@+id/tituloTarea"
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:textSize="30sp"
android:padding="8dp"/>

<Button
android:id="@+id/btnEliminarTarea"
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_width="0dp"
android:layout_height="match_parent"
android:background="@drawable/papelera"
android:scaleX="0.5"
android:scaleY="0.5" />

</LinearLayout>

最佳答案

将 Textview android:layout_weight="4" 更改为 android:layout_weight="1"

并从 Button 中删除 android:layout_weight="1"

根据此更改您的代码

<?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:gravity="center"
android:background="@android:color/white"
android:orientation="horizontal">

<TextView
android:id="@+id/tituloTarea"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toLeftOf="@id/btnEliminarTarea"
android:padding="8dp"
android:textSize="30sp" />

<Button
android:id="@+id/btnEliminarTarea"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_alignParentRight="true"
android:background="@mipmap/ic_launcher"
android:focusable="false"
android:focusableInTouchMode="false"
android:scaleX="0.5"
android:scaleY="0.5" />

</RelativeLayout>

关于java - Android ListView 项目太大不知道为什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61548921/

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