gpt4 book ai didi

android - ScrollView 溢出其 FrameLayout 父级

转载 作者:行者123 更新时间:2023-11-30 01:19:32 37 4
gpt4 key购买 nike

我有一个复杂的 LinearLayout(垂直)和一个 FrameLayout 在其他一些东西(一个 TextView 和一个 EditText框)。 FrameLayout 包含两件事:a) map 和 b) ScrollView 包含“覆盖” map 的半透明 LinearLayout。 ScrollView 最初是 GONE,但我以编程方式呈现它可见。我还以编程方式将 View 添加到 ScrollView 中嵌入的 LinearLayout

使用 onMeasure() 设置 FrameLayout 尺寸,以便高度和宽度相等。这使得 FrameLayout 占据设备屏幕的顶部,而 TextViewEditText 位于下方。

public static class MyFrameLayout extends FrameLayout {

public FrameLayoutWithMap(Context context, AttributeSet attrs) {
super(context, attrs);
}

@Override
public void onMeasure(int widthSpec, int heightSpec) {
super.onMeasure(widthSpec, heightSpec);
int size = Math.min(getMeasuredWidth(), getMeasuredHeight());
setMeasuredDimension(size, size);
}
}

一开始实际上一切都很好。但是,当我将足够的 View 添加到 ScrollView 中嵌入的 LinearLayout 时,ScrollView 最终会扩展 behind TextViewFrameLayout 下方。换句话说,ScrollView 溢出了它的 FrameLayout 父级,然后隐藏了它的底部。当我继续向 ScrollView 中嵌入的 LinearLayout 添加 View 时,ScrollView 最终将开始滚动。一旦 ScrollView 是设备屏幕的高度,这似乎就会发生。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activityRoot"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#323232"
tools:context=".MainActivity" >

<FrameLayout
class="com.myapp.main.MyFrameLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#070707" >

<com.myapp.main.MapView
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<ScrollView
android:id="@+id/overlayScrollView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:layout_gravity="left"
android:scrollbars="vertical"
android:fillViewport="false"
android:visibility="gone" >
<LinearLayout
android:id="@+id/overlayLinearLayout"
android:orientation="vertical"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:padding="1dp"
android:background="#AA000000" >
</LinearLayout>
</ScrollView>

</FrameLayout>

<TextView
android:id="@+id/tvMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:textColor="#FFFFFF"
android:textSize="14sp" />

<EditText android:id="@+id/entry"
android:background="@drawable/entry_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:lines="1"
android:singleLine="true"
android:textSize="16sp"
android:textColor="#ffffff"
android:hint="@string/entry" />

</LinearLayout>

我希望 ScrollView 在达到其父级 FrameLayout 的高度时立即开始滚动。换句话说,我希望 ScrollView 在其 FrameLayout 父级中保持包含

enter image description here

知道我在这里做错了什么吗?

最佳答案

更新:

ConstraintLayout library 可以让你细粒度地控制 View 相对于父 View 和其他 View 的大小。它还支持宽高比,因此您可以(例如)强制 View 始终为正方形。

原始回复:

问题在于您如何测量特殊的 FrameLayout。当您调用 super.onMeasure() 时,此 View 及其所有 subview 将根据给定的度量规范进行 self 度量。之后,您限制了该 View 的维度,但它的子项都不知道这一点;只有此 View 及其父级 知道这一点。它的子项已自行测量,认为此 View 的大小不受您额外调用 setMeasuredDimension() 的限制。

再次调用 super.onMeasure() 将强制它的 child 再次测量自己,从而通知他们新的尺寸。

@Override
public void onMeasure(int widthSpec, int heightSpec) {
super.onMeasure(widthSpec, heightSpec);
int size = Math.min(getMeasuredWidth(), getMeasuredHeight());
int spec = MeasureSpec.makeMeasureSpec(size, MeasureSpec.EXACTLY);
super.onMeasure(spec, spec);
}

请注意,这将导致此 View 及其所有子项在每次测量过程中测量两倍的次数,因此它可能不是性能最高的方法,但它会完成您想要的。

关于android - ScrollView 溢出其 FrameLayout 父级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37338053/

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