ScrollView
动态修改margin值 如果ScrollView 的parent布局是LinearLayout 则用LinearLayout RelativeLayout.LayoutParams layoutParams = (RelativeLayout.LayoutParams) svScroll.getLayoutParams(); layoutParams.setMargins(0, 0, 0, ScreenUtil.dip2px(mContext, 100));
嵌套NestListView不置顶问题 同时
在ScrollView上添加 android:focusable="true" android:focusableInTouchMode="true"
代码中添加 svScroll.fullScroll(View.FOCUS_UP);
ScrollView动态设置margin
RelativeLayout.LayoutParams layoutParams = (RelativeLayout.LayoutParams) svScroll.getLayoutParams(); layoutParams.setMargins(0, 0, 0, ScreenUtil.dip2px(mContext, 48));