如何使 MaterialTextView 的宽度 wrap_content 但不大于 ConstraintLayout 中的 MaterialButton?
How can I make the width of MaterialTextView wrap_content but no larger than MaterialButton in ConstraintLayout?
<?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:layout_width="match_parent"
android:layout_height="wrap_content"
tools:ignore="HardcodedText">
<com.google.android.material.textview.MaterialTextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:text="abcdefghijklmn"
android:textSize="17.5sp"
app:layout_constraintEnd_toStartOf="@id/btn"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:text="do something"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
如何在 ConstraintLayout
中使宽度 MaterialTextView
wrap_content
但不大于 MaterialButton
?
我在上面的 XML
中做到了,但是 MaterialTextView
不是 wrap_content
看起来像 match_parent
.
我看过这个 但这对我没有帮助,或者我可能错过了什么。
要将 MaterialTextView
的宽度设置为其内容,但不大于 MaterialButton
,您需要在 MaterialTextView xml 布局中添加以下属性:android:layout_width="wrap_content"
、app:layout_constrainedWidth="true"
和 app:layout_constraintHorizontal_bias="0"
.
例子如下:
<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:text="Small Text"
android:background="@color/teal_200"
android:textSize="17.5sp"
app:layout_constrainedWidth="true"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintEnd_toStartOf="@id/btn"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
小文字:
长文本:
<?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:layout_width="match_parent"
android:layout_height="wrap_content"
tools:ignore="HardcodedText">
<com.google.android.material.textview.MaterialTextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:text="abcdefghijklmn"
android:textSize="17.5sp"
app:layout_constraintEnd_toStartOf="@id/btn"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.google.android.material.button.MaterialButton
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:text="do something"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
如何在 ConstraintLayout
中使宽度 MaterialTextView
wrap_content
但不大于 MaterialButton
?
我在上面的 XML
中做到了,但是 MaterialTextView
不是 wrap_content
看起来像 match_parent
.
我看过这个
要将 MaterialTextView
的宽度设置为其内容,但不大于 MaterialButton
,您需要在 MaterialTextView xml 布局中添加以下属性:android:layout_width="wrap_content"
、app:layout_constrainedWidth="true"
和 app:layout_constraintHorizontal_bias="0"
.
例子如下:
<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:text="Small Text"
android:background="@color/teal_200"
android:textSize="17.5sp"
app:layout_constrainedWidth="true"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintEnd_toStartOf="@id/btn"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
小文字:
长文本: