本文主要是介绍王学岗约束性布局wrap_content失效的问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<?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"android:layout_width="match_parent"android:layout_height="match_parent"><TextViewandroid:id="@+id/magicIndicator"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginStart="10dp"android:layout_marginTop="10dp"android:layout_marginBottom="10dp"android:maxLines="1"app:layout_constrainedWidth="true"app:layout_constraintEnd_toStartOf="@+id/rgHomeVisit"app:layout_constraintStart_toStartOf="parent"app:layout_constraintTop_toTopOf="parent" /><RadioGroupandroid:id="@+id/rgHomeVisit"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="10dp"android:layout_marginEnd="10dp"android:orientation="horizontal"app:layout_constraintEnd_toEndOf="parent"app:layout_constraintStart_toEndOf="@+id/magicIndicator"app:layout_constraintTop_toTopOf="parent"><RadioButtonandroid:id="@+id/rbHome"android:layout_width="44dp"android:layout_height="22dp"android:gravity="center"android:text="霍去病"android:background="#098765"android:textSize="12dp" /><RadioButtonandroid:id="@+id/rbAway"android:layout_width="44dp"android:layout_height="22dp"android:layout_marginStart="5dp"android:background="#123456"android:gravity="center"android:text="aaaaaaaaaaaaaa"android:textSize="12dp" /></RadioGroup>
</androidx.constraintlayout.widget.ConstraintLayout>
运行大家会发现,TextView左侧超过了parent的start(也就是屏幕最左侧),RadioGroup右侧也不再屏幕内。这个时候需要在TextView中加入属性
app:layout_constrainedWidth="true"
这样,再次运行,界面就正常了。
这篇关于王学岗约束性布局wrap_content失效的问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!