gpt4 book ai didi

android - 如何防止约束 View 中的 textView 离开屏幕

转载 作者:行者123 更新时间:2023-11-29 02:19:30 28 4
gpt4 key购买 nike

我在约束布局中有一个 TextView ,它将其约束保留在模拟器中。但是当我在实体手机上运行该应用程序时,textview 会消失在屏幕上

这是完整的xml

 <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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:id="@+id/constraintLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
xmlns:app="http://schemas.android.com/apk/res-auto">


<TextView
android:id="@+id/tvTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/Text_Margin_Standard"
android:layout_marginTop="@dimen/Text_Margin_Standard"
android:gravity="start"
android:text="Title"
android:textAlignment="textStart"
android:textSize="@dimen/title_large"
app:layout_constraintStart_toEndOf="@+id/imageDeal"
app:layout_constraintTop_toTopOf="parent" />

<ImageView
android:id="@+id/imageDeal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/Text_Margin_Standard"
android:layout_marginTop="@dimen/Text_Margin_Standard"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@mipmap/ic_launcher"
android:layout_marginLeft="@dimen/Text_Margin_Standard"/>

<TextView
android:id="@+id/tvDescription"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/Text_Margin_Standard"
android:layout_marginTop="@dimen/Text_Margin_Standard"
android:text="TextView"
app:layout_constraintStart_toEndOf="@+id/imageDeal"
app:layout_constraintTop_toBottomOf="@+id/tvTitle" />

<TextView
android:id="@+id/tvPrice"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/Text_Margin_Standard"
android:layout_marginEnd="@dimen/Text_Margin_Standard"
android:layout_marginBottom="8dp"
android:gravity="end"
android:text="TextView"
android:textColor="@color/colorAccent"
android:textSize="@dimen/text_price"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tvDescription" />

</androidx.constraintlayout.widget.ConstraintLayout>

id 为 tvprice 的 Textview 是从物理设备运行时屏幕显示的内容

最佳答案

将宽度更改为 0dp,这将在编辑器中将其设置为 match_constraint,这意味着 TextView 在设置其宽度时将遵守其约束条件。

将宽度设置为 wrap_content 将使 TextView 根据内容更改其宽度,而不管布局宽度如何。

  app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:layout_width="0dp"

关于android - 如何防止约束 View 中的 textView 离开屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57303886/

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