gpt4 book ai didi

android - 如何在android constraintLayout中设置 View 的最大宽度?

转载 作者:IT老高 更新时间:2023-10-28 23:26:58 26 4
gpt4 key购买 nike

我的布局如下所示:

<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.plarke.proto1.QuizActivity">

<Button
android:id="@+id/compare_settings"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="16dp"
android:layout_marginRight="16dp"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginEnd="16dp" />

<TextView
android:id="@+id/compare_score"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="16dp"
android:layout_marginLeft="16dp"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginStart="16dp" />

<SeekBar
android:id="@+id/compare_pitchbar"
android:layout_width="0dp"
android:layout_height="23dp"
android:layout_marginBottom="50dp"
android:layout_marginEnd="16dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_marginStart="16dp"
android:progressBackgroundTint="@color/colorAccent"
android:progressBackgroundTintMode="src_over"
app:layout_constraintBottom_toTopOf="@+id/textView"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent" />

<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:text="Button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp" />

<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="50dp"
app:layout_constraintBottom_toTopOf="@+id/button2"
tools:text="The seekbar is all the way to the left."
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginRight="0dp"
android:layout_marginLeft="0dp" />

我想改变它,使 seekBar 默认为某个宽度,但如果屏幕不够宽,它只会填满屏幕(有边距)。我试过设置layout_width,但如果太宽,它就会离开屏幕。使用 max_width 什么都不做。在 ConstrainstLayout 中我想要什么?如果不是我应该使用什么?

最佳答案

我认为您正在寻找的是 matchConstraintMaxWidth属性。

如果您将其添加到您的 SeekBar 中,其值为 200dp,保持对父级的左右约束和 0dp,它会将 View 的宽度拉伸(stretch)到 200dp,但如果有更多空间,它将保持在 200dp。

所以你的 xml 应该是这样的:

<SeekBar
...
android:layout_width="0dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintWidth_max="200dp" />

您还应该能够以编程方式设置它

ConstraintLayout.LayoutParams layoutParams = new ConstraintLayout.LayoutParams(0, 0);
layoutParams.matchConstraintMaxWidth = ...

关于android - 如何在android constraintLayout中设置 View 的最大宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45019048/

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