gpt4 book ai didi

Android - 包含 ExpandableListView 的 NestedScrollView 在展开时不会滚动

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

我在 NestedScrollView 中有一个 ExpandableListView (是的,我知道,在另一个 ScrollView 中有一个 ScrollView 不好,但我不知道还有什么要做,请告诉我是否有人知道更好的方法)。

NestedScrollView中内容的大小还在屏幕内所以不会滚动,但是当ExpandableListView展开时,内容会漏出屏幕但是NestedScrollView 仍然不会滚动.. 为什么会这样?

这是我的 NestedScrollView 布局:

<NestedScrollView>
<LinearLayout>
<LinearLayout></LinearLayout>
... // About 3 of the LinearLayouts
<ExpandableListView/>
</LinearLayout>
</NestedScrollView>

最佳答案

您可以使用 NonScrollExpandableListView 来实现任何 LisviewGridViewExpandableListView 的非滚动属性覆盖以下方法。

@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int heightMeasureSpec_custom = MeasureSpec.makeMeasureSpec(
Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, heightMeasureSpec_custom);
ViewGroup.LayoutParams params = getLayoutParams();
params.height = getMeasuredHeight();
}

因此,要使用 NonScrollExpandableListView,您需要创建一个自定义类。

public class NonScrollExpandableListView extends ExpandableListView {

public NonScrollExpandableListView(Context context) {
super(context);
}

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

public NonScrollExpandableListView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}

@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int heightMeasureSpec_custom = MeasureSpec.makeMeasureSpec(
Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, heightMeasureSpec_custom);
ViewGroup.LayoutParams params = getLayoutParams();
params.height = getMeasuredHeight();
}
}

并像使用它一样。

<com.example.extraclasses.NonScrollExpandableListView 

android:layout_width="match_parent"
android:layout_height="wrap_content" />

编码愉快。

关于Android - 包含 ExpandableListView 的 NestedScrollView 在展开时不会滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37605545/

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