Tạo một ScrollView tùy chỉnh và sử dụng nó bất cứ nơi nào bạn muốn.
class CustomScrollView extends ScrollView {
// true if we can scroll the ScrollView
// false if we cannot scroll
private boolean scrollable = true;
public void setScrollingEnabled(boolean scrollable) {
this.scrollable = scrollable;
}
public boolean isScrollable() {
return scrollable;
}
@Override
public boolean onTouchEvent(MotionEvent ev) {
switch (ev.getAction()) {
case MotionEvent.ACTION_DOWN:
// if we can scroll pass the event to the superclass
if (scrollable) return super.onTouchEvent(ev);
// only continue to handle the touch event if scrolling enabled
return scrollable; // scrollable is always false at this point
default:
return super.onTouchEvent(ev);
}
}
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
// Don't do anything with intercepted touch events if
// we are not scrollable
if (!scrollable) return false;
else return super.onInterceptTouchEvent(ev);
}
}
Điều này có thể được sử dụng trong cách bố trí
<com.packagename.CustomScrollView
android:id="@+id/scrollView"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
</com.packagename.CustomScrollView >
Sau đó gọi
((CustomScrollView)findViewById(R.id.scrollView)).setIsScrollable(false);
Nguồn
2013-09-06 08:07:04
Tôi đã dán giải pháp này, nó không muốn làm việc. –
hoạt động, nhưng bây giờ tôi không thể cuộn scrollview lồng nhau của tôi hoặc .. – DrNachtschatten