框架布局设置高度与宽度相同

时间:2018-04-23 12:22:54

标签: android android-layout android-framelayout

在我的布局中,我使用FrameLayout,其宽度设置为wrap_content,它取决于其中TextView的宽度。现在我希望该布局的高度与宽度相同。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:1)

使用ConstraintLayout代替FrameLayout您的xml文件可能看起来像

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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">

    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="MyText"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintDimensionRatio="1:1"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>