Android - 包含 ExpandableListView 的 NestedScrollView 在展开时不会滚动
Posted
技术标签:
【中文标题】Android - 包含 ExpandableListView 的 NestedScrollView 在展开时不会滚动【英文标题】:Android - NestedScrollView which contains ExpandableListView doesn't scroll when expanded 【发布时间】:2016-10-02 23:58:07 【问题描述】:我在NestedScrollView
中有一个ExpandableListView
(是的,我知道,在另一个滚动视图中有一个滚动视图不好,但我不知道还能做什么,如果有人知道,请告诉我更好的方法)。
NestedScrollView
中的内容大小仍在屏幕内,因此不会滚动,但是当ExpandableListView
展开时,内容会泄漏到屏幕外,但NestedScrollView
仍然不会滚动。 . 为什么会这样?
这是我的NestedScrollView
布局:
<NestedScrollView>
<LinearLayout>
<LinearLayout></LinearLayout>
... // About 3 of the LinearLayouts
<ExpandableListView/>
</LinearLayout>
</NestedScrollView>
【问题讨论】:
参考此链接thedeveloperworldisyours.com/android/… 【参考方案1】:您可以使用NonScrollExpandableListView
,您可以通过覆盖以下方法来实现任何Lisview
或GridView
或ExpandableListView
的非滚动属性。
@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_
android:layout_ />
编码愉快。
【讨论】:
这会导致性能问题吗?顺便说一句,它工作但我担心性能问题(有 NestedScrollview 父母 RecyclerView 和哦该死的,内存使用......) 一点也不。感染建议在像您这样的情况下使用它。 效果很好,但我可以只使用 expandableListView.onMeasure() 而不创建新课程吗?我在制作这些自定义类方面还是新手。哦,顺便说一句,它是“事实上”而不是“感染”lol 谢谢它工作正常,我已经尝试了很多我想避免添加页眉或页脚的事情。你给了我完美的解决方案。 把它放进你的摇杆然后射击。繁荣!成功了!【参考方案2】:将android:nestedScrollingEnabled="true"
添加到您的 ExpandalbleListView 布局中。
【讨论】:
【参考方案3】:V-rund Puro-hit 的答案对我有用。但是需要一些修改才能使用支持 API >19 的 Kotlin。所以为了节省时间,这里是:
新建类文件NonScrollExpandableListView
:
import android.content.Context
import android.util.AttributeSet
import android.widget.ExpandableListAdapter
import android.widget.ExpandableListView
class NonScrollExpandableListView : ExpandableListView
constructor(context: Context) : super(context)
constructor(context: Context, attrs: AttributeSet) : super(context, attrs)
constructor(context: Context, attrs: AttributeSet, defStyle: Int) : super(context, attrs, defStyle)
override fun setAdapter(adapter: ExpandableListAdapter?)
super.setAdapter(adapter)
override fun setOnChildClickListener(onChildClickListener: OnChildClickListener)
super.setOnChildClickListener(onChildClickListener)
override fun expandGroup(groupPos: Int) : Boolean
return super.expandGroup(groupPos)
override fun expandGroup(groupPos: Int, animate: Boolean) : Boolean
return super.expandGroup(groupPos, animate)
override fun isGroupExpanded(groupPosition: Int): Boolean
return super.isGroupExpanded(groupPosition)
public override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int)
val heightMeasureSpec_custom = MeasureSpec.makeMeasureSpec(
Integer.MAX_VALUE shr 2, MeasureSpec.AT_MOST)
super.onMeasure(widthMeasureSpec, heightMeasureSpec_custom)
val params = layoutParams
params.height = measuredHeight
...我是这样使用它的:
<ScrollView
android:layout_
android:layout_>
<LinearLayout
android:layout_
android:layout_
android:orientation="vertical"
>
<com.example.you.kotlinlistview.NonScrollExpandableListView
android:id="@+id/expandableCategories"
android:layout_
android:layout_
/>
<Button
android:id="@+id/add_new_feed"
android:drawableStart="@drawable/ic_add"
android:layout_
android:layout_
android:text="Add new feed"
/>
<Button
android:id="@+id/settings_button"
android:drawableStart="@drawable/ic_settings"
android:layout_
android:layout_
android:text="Settings"
/>
<Button
android:id="@+id/logout_button"
android:drawableStart="@drawable/ic_exit"
android:layout_
android:layout_
android:text="Log Out"
/>
</LinearLayout>
</ScrollView>
因此,我可以轻松地将按钮和其他元素添加到NavigationView
侧抽屉),并且所有这些都可以在一个常见的ScrollView
中很好地工作。这里的主要用途是当您需要将多个ListView
s 和ExpandableListView
s 组合到一个共同的ScrollView
中,这将负责滚动。
【讨论】:
如何为 ListView 而不是 ExpandableListView 做同样的事情?请帮忙? @KJEjava48 同理,只需要覆盖ListView
类,不需要覆盖所有expand...
类。如果您认为拥有该案例的代码是有益的,您可以发布一个新问题(如果您这样做,请不要忘记参考这个问题)。
好的,谢谢。你能解释一下这在你的代码 Integer.MAX_VALUE shr 2 中是什么意思吗?这里的 2 代表什么??
对我来说,它只有在我将 Integer.MAX_VALUE >> 2 更改为 Integer.MAX_VALUE >> 21 后才起作用。为什么会这样?它也适用于 ScrollView 而不是 NestedScrollView。
@KJEjava48 在 Kotlin 中,shr
是 shift right operation 的关键字。关于 MeasureSpec,最好从 docs 开始。但通常这允许可扩展列表视图根据其状态(扩展组)更改高度,而不是具有固定高度并变为可滚动。【参考方案4】:
使用此方法将在运行时计算 ExpendableListSize。
private void setListViewHeight(ExpandableListView listView,
int group)
ExpandableListAdapter listAdapter = (ExpandableListAdapter) listView.getExpandableListAdapter();
int totalHeight = 0;
int desiredWidth = View.MeasureSpec.makeMeasureSpec(listView.getWidth(),
View.MeasureSpec.EXACTLY);
for (int i = 0; i < listAdapter.getGroupCount(); i++)
View groupItem = listAdapter.getGroupView(i, false, null, listView);
groupItem.measure(desiredWidth, View.MeasureSpec.UNSPECIFIED);
totalHeight += groupItem.getMeasuredHeight();
if (((listView.isGroupExpanded(i)) && (i != group))
|| ((!listView.isGroupExpanded(i)) && (i == group)))
for (int j = 0; j < listAdapter.getChildrenCount(i); j++)
View listItem = listAdapter.getChildView(i, j, false, null,
listView);
listItem.measure(desiredWidth, View.MeasureSpec.UNSPECIFIED);
totalHeight += listItem.getMeasuredHeight();
ViewGroup.LayoutParams params = listView.getLayoutParams();
int height = totalHeight
+ (listView.getDividerHeight() * (listAdapter.getGroupCount() - 1));
if (height < 10)
height = 200;
params.height = height;
listView.setLayoutParams(params);
listView.requestLayout();
在你的 setOnGroupClickListener.like 下面调用这个方法
mExpandableListView.setOnGroupClickListener(new ExpandableListView.OnGroupClickListener()
@Override
public boolean onGroupClick(ExpandableListView parent, View v, int groupPosition, long id)
setListViewHeight(parent, groupPosition);
return false;
);
【讨论】:
【参考方案5】:我们不能在滚动视图中使用列表视图、网格视图或可扩展列表视图。如果您不想在滚动视图中使用可扩展列表视图,则必须为可扩展列表视图提供一些固定高度。
【讨论】:
哦,我明白了,所以它必须是一个固定的高度。如果我给一个固定的高度,例如 40 dp,即使它被扩展它会占用那么多空间吗?人们如何在另一个滚动视图中制作ExpandableListView
?我见过几个这样的应用程序..
@KevinMurvie 默认情况下,android 不会完全支持另一个可滚动视图中的一个可滚动视图。但是我们可以做一些事情,并且可以做到。但它不会是完美的。 For your reference
实际上我已经看到并应用了它(RecyclerView inside NestedScrollView).. 但太糟糕了,它有性能问题,我用 recyclerview.. 所以这些应用程序实际上没有播放遵守规则?
没错,我们可以做点什么,我们可以实现那种类型的滚动,但它会有性能和滚动问题。
我明白了。。谢谢你的信息,我会找到最好的方法来减少性能问题。希望能尽快完成:D以上是关于Android - 包含 ExpandableListView 的 NestedScrollView 在展开时不会滚动的主要内容,如果未能解决你的问题,请参考以下文章