gpt4 book ai didi

Android ConstraintLayout View 在其他 View 的右侧,但留在父边界内

转载 作者:行者123 更新时间:2023-12-04 16:03:19 25 4
gpt4 key购买 nike

我在 ConstraintLayout 中有两个 TextViews。一个在左上角,另一个在第一个的右边。没什么疯狂的。现在,第一个 View 可以变宽,从而将第二个 View 向右推。不过,我想要的是第二个 View 始终位于父 View 的范围内。

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="20dp"
android:background="#FFFFFF"
android:paddingEnd="20dp">

<TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text 1"
android:ellipsize="end"
android:maxLines="1"
android:background="#FF0000"/>

<TextView
android:id="@+id/text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintStart_toEndOf="@id/text1"
android:text="Text 2"
android:maxLines="1"
android:background="#00FF00"/>

...

我得到的是这样的 enter image description here

但是当我增加文本长度时,第二个 View 被推出 View enter image description here

应该发生的是第二个 View 位于父 View 的右上角,而第一个 View 占据了剩余的可用空间。有什么办法可以在 ConstraintLayout 中做到这一点?

最佳答案

你可以在activity_main.xml中使用android:maxWidth固定的数字,但是这样不好,因为每个手机的屏幕尺寸不同,所以我推荐你用代码设置它,你可以setMaxWidth for text1 following width of text2 and constraintLayout:

        txt1 = (TextView) findViewById(R.id.text1);
txt2 = (TextView) findViewById(R.id.text2);
constraintLayout = (ConstraintLayout) findViewById(R.id.constraintLayout);

ViewTreeObserver vto = constraintLayout.getViewTreeObserver();
vto.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
constraintLayout.getViewTreeObserver().removeGlobalOnLayoutListener(this);
} else {
constraintLayout.getViewTreeObserver().removeOnGlobalLayoutListener(this);
}
int text2Width = txt2.getWidth();
int layoutWidth = constraintLayout.getWidth();
txt1.setMaxWidth(layoutWidth-text2Width);
}
});

关于Android ConstraintLayout View 在其他 View 的右侧,但留在父边界内,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49910829/

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