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