gpt4 book ai didi

android - 在 TextView 上调用 setText 会调用 requestLayout(),它会重置父 View 的 offsetTopAndBottom 位置

转载 作者:太空狗 更新时间:2023-10-29 12:44:27 27 4
gpt4 key购买 nike

enter image description here

我做了一个布局,它有两个 RelativeLayout,它们充当两个 slider (如状态栏上的通知),用户可以上下拖动,因此我必须更改顶部和底部文本值。

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black" >

<RelativeLayout
android:id="@+id/handle1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white" >

<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="40dp"
android:layout_marginLeft="95dp" >

<TextView
android:id="@+id/top_price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Top text"
android:textColor="@color/black"
android:textSize="18sp" />
</FrameLayout>
</RelativeLayout>

<RelativeLayout
android:id="@+id/handle2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white" >

<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginLeft="95dp"
android:layout_marginTop="40dp" >

<TextView
android:id="@+id/bottom_price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Bottom text"
android:textColor="@color/black"
android:textSize="18sp" />
</FrameLayout>
</RelativeLayout>

在布局期间,两个 RelativeLayout 位于彼此之上,我使用 offsetTopAndBottom(int offset) 将它们偏移到显示的初始位置

现在,我在两个 RelativeLayout 上跟踪 MotionEvents,并在 ACTION_MOVE 事件上调用此方法。

private void offsetHandle(View view, int distanceY) {
switch(view.getId()) {
case R.id.handle1:
mTopHandle.offsetTopAndBottom(distanceY);
mTopSliderPosition = mTopHandle.getBottom();
break;

case R.id.handle2:
mBottomHandle.offsetTopAndBottom(distanceY);
mBottomSliderPosition = mBottomHandle.getTop();
break;
}
}

这里mTopHandle和mBottomHandle就是两个白色的RelativeLayouts。

注意:我没有使用 LayoutParams 并在此处分别更改顶部和底部边距,因为它会重复调用 requestLayout 并且一点也不流畅。

enter image description here

现在,当父 RelativeLayout 在移动事件上偏移时,我必须更改顶部文本值(它是顶部 RelativeLayout 的子项)。但是,当我调用 setText 时,它会隐式调用 requestLayout() 来重置在两个句柄上完成的所有偏移量。

现在,这是一个大问题,因为到目前为止我已经制作了这些 slider 。我尝试重写 requestLayout() 以在 TextView 上不执行任何操作,但随后文本设置不正确 a.k.a 它显示随机行为。

即使我从 RelativeLayouts 中删除了两个 TextView ,对 requestLayout() 的调用也会强制父 FrameLayout 重新布局其所有 subview 。

有什么建议吗?

最佳答案

我刚刚遇到了一个类似的问题,我正在偏移一个 View ,每次我对周围 RelativeLayout 中的其他元素进行更改时,偏移都会重置。我能够通过设置 OnGlobalLayoutListener 来解决我的问题到我的根 RelativeLayout 的 ViewTreeObserver。然后在它的 onGlobalLayout() 方法中,我为我的 View 重置了正确的偏移量。因此,每次布局重绘自身时,都会恢复正确的偏移量。

为此,您必须在每次 View 更改时保存 View 的总偏移量。因此,在您的情况下,您需要类(class)中的一个字段(例如 int mTotalOffset),然后将其设置为 offsetHandle() 中的总偏移量:

private void offsetHandle(View view, int distanceY) {
mTotalOffset = mTotalOffset + distanceY;
switch(view.getId()) {
...
}

然后无论你在哪里膨胀你的布局,添加

rootView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {         
@Override
public void onGlobalLayout() {
mHandle1.offsetTopAndBottom(mTotalOffset);
mHandle2.offsetTopAndBottom(mTotalOffset);
...
}
});

希望这对您有所帮助。

干杯!

关于android - 在 TextView 上调用 setText 会调用 requestLayout(),它会重置父 View 的 offsetTopAndBottom 位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20782916/

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