我有一个Edittext。当用户点击它时,我会根据键入的关键字在回收站视图中显示建议。包含edittext(以及其他项)的父视图是可滚动的。我希望在回收器视图可见时禁用父滚动,并在回收器视图不可见时再次启用。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/parent_scroll_view"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
..
..
..
..
</EditText
<android.support.v7.widget.RecyclerView
android:id="@+id/mentions_grid"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<ScrollView>
当回收者视图作为edittext的下拉列表显示时,如何禁用主父滚动视图。?
答案 0 :(得分:0)
试试这种方式
import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.ScrollView;
public class MyScrollView extends ScrollView {
private boolean enableScrolling = true;
public boolean isEnableScrolling() {
return enableScrolling;
}
public void setEnableScrolling(boolean enableScrolling) {
this.enableScrolling = enableScrolling;
}
public MyScrollView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public MyScrollView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MyScrollView(Context context) {
super(context);
}
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
if (isEnableScrolling()) {
return super.onInterceptTouchEvent(ev);
} else {
return false;
}
}
@Override
public boolean onTouchEvent(MotionEvent ev) {
if (isEnableScrolling()) {
return super.onTouchEvent(ev);
} else {
return false;
}
}
}
并像这样制作xml
<yourpackage.MyScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/parent_scroll_view"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
.. .. .. ..
</yourpackage.MyScrollView>
<android.support.v7.widget.RecyclerView
android:id="@+id/mentions_grid"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
根据您的要求,您可以启用或禁用滚动 像这样
MyScrollView myScrollView = (MyScrollView) findViewById(R.id.myScroll);
if(yourrecyclerview adapter item count > 0)//or you can make condition like if(yourrecyclerview.isShown())
{
myScrollView.setEnableScrolling(false);
}else
{
myScrollView.setEnableScrolling(true);
}