怎么设置HorizontalScrollView的滚动条件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么设置HorizontalScrollView的滚动条件相关的知识,希望对你有一定的参考价值。

现在是这样,有一个tabhost的页面,4个切换选项,这4个切换选择向右滑动都能出现像人人那样的拓展页面,现在我只想第一个页面可以滑出拓展页面,其它三个页面不能滑动,急啊

参考技术A 滑动前先做判断 当前是哪个Tab 如果是1就滑动 否则不 参考技术B 关键是怎么设置他不滑动呢,这个控件有设置不滑动这个方法吗?我看了API里没有啊 参考技术C 你用的什么控件啊 滑动你是怎么实现的啊?

如果ListView中嵌套HorizontalScrollView怎么解决滑动错乱

最近在开发中遇到HorizontalScrollView嵌套ScrollView导致滑动卡的情况,急横向水平滑动的View和垂直水平滑动的View,都在接收处理滑动时间,但是这种情况下触摸事件就会发生冲突。导致滑动非常卡,甚至出现程序停止响应。这种情况下我们需要重写view。下面是两个简单的例子,重写水平滑动View只接收水平方向上滑动的事件。我们使用手势GestureDetector来作区分。

<em>import android.content.Context;
import android.util.AttributeSet;
import android.view.GestureDetector;
import android.view.GestureDetector.SimpleOnGestureListener;
import android.view.MotionEvent;
import android.view.View;
import android.widget.HorizontalScrollView;

public class CustomHScrollView extends HorizontalScrollView
private GestureDetector mGestureDetector;
private View.OnTouchListener mGestureListener;

private static final String TAG = "CustomHScrollView";

/**
* @function CustomHScrollView constructor
* @param context Interface to global information about an application environment.
*
*/
public CustomHScrollView(Context context)
super(context);
// TODO Auto-generated constructor stub
mGestureDetector = new GestureDetector(new HScrollDetector());
setFadingEdgeLength(0);


/**
* @function CustomHScrollView constructor
* @param context Interface to global information about an application environment.
* @param attrs A collection of attributes, as found associated with a tag in an XML document.
*/
public CustomHScrollView(Context context, AttributeSet attrs)
super(context, attrs);
// TODO Auto-generated constructor stub
mGestureDetector = new GestureDetector(new HScrollDetector());
setFadingEdgeLength(0);


/**
* @function CustomHScrollView constructor
* @param context Interface to global information about an application environment.
* @param attrs A collection of attributes, as found associated with a tag in an XML document.
* @param defStyle style of view
*/
public CustomHScrollView(Context context, AttributeSet attrs,
int defStyle)
super(context, attrs, defStyle);
// TODO Auto-generated constructor stub
mGestureDetector = new GestureDetector(new HScrollDetector());
setFadingEdgeLength(0);


@Override
public boolean onInterceptTouchEvent(MotionEvent ev)
return super.onInterceptTouchEvent(ev) && mGestureDetector.onTouchEvent(ev);


// Return false if we\'re scrolling in the y direction
class HScrollDetector extends SimpleOnGestureListener
@Override
public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY)
if(Math.abs(distanceX) > Math.abs(distanceY))
return true;


return false;



</em>
参考技术A ListView 中嵌套HorizontalScrollView会让listView丢焦点

你的采纳是我前进的动力,还有不懂的地方,请继续“追问”。
如你还有别的问题,可另外向我求助;答题不易,互相理解,互相帮助。

以上是关于怎么设置HorizontalScrollView的滚动条件的主要内容,如果未能解决你的问题,请参考以下文章

如果ListView中嵌套HorizontalScrollView怎么解决滑动错乱

HorizontalScrollView水平滚动控件

Android控件之HorizontalScrollView 去掉滚动条

Android控件之HorizontalScrollView 去掉滚动栏

HorizontalScrollView整体滑块,实现列表效果

使用HorizontalScrollView 就是不滑动是啥原因