为什么我的onClickListener应该双击?

时间:2014-01-23 02:28:37

标签: android

我将onClickListener添加到我通过扩展LinearLayout编写的NavLinearLayout,每次它应该双击然后里面的函数可以工作。但是这个函数意味着它只能点击一次就能工作。为什么? 这是我的NavLinearLayout

public class NavLinearLayout extends LinearLayout{

public NavLinearLayout(Context context)
{
    super(context);
}

public NavLinearLayout(Context context, AttributeSet attrs)
{
    super(context, attrs);
}

@Override
public boolean onInterceptTouchEvent(MotionEvent ev)
{
    // do whatever you want with the event
    // and return true so that children don't receive it
    return true;
}}

这是MainActivity代码:

boutiqueLL.setOnClickListener(new OnClickListener()
    {
        @Override
        public void onClick(View arg0)
        {
            setFlagTrue(Navigation.Boutique.getPosition());
            setBtnLine();
        }

    });private void setFlagTrue(int position) {
    sousuoFlag = position == 4 ? true : false;
    dingyueFlag = position == 3 ? true : false;
    fenleiFlag = position == 2 ? true : false;
    boutiqueFlag = position == 1 ? true : false;
}private void setBtnLine() {
    Log.d("test",(boutiqueFlag?"true":"false")+" : "
            +(fenleiFlag?"true":"false")+" : "
            +(dingyueFlag?"true":"false")+" : "
            +(sousuoFlag?"true":"false"));
    if (sousuoFlag) {
        sousuoLine.setBackgroundColor(Color.RED);
        ft = fm.beginTransaction();
        ft.replace(R.id.main_page, new SearchFragment(mdb));
        ft.addToBackStack(null);
        ft.commit();

    } else {
        sousuoLine.setBackgroundColor(Color.argb(0, 0, 0, 0));
    }
    if (dingyueFlag) {
        dingyueLine.setBackgroundColor(Color.RED);
        ft = fm.beginTransaction();
        ft.replace(R.id.main_page, new SubscribeFragment(mdb));
        ft.addToBackStack(null);
        ft.commit();
    } else {
        dingyueLine.setBackgroundColor(Color.argb(0, 0, 0, 0));
    }
    if (fenleiFlag) {
        fenleiLine.setBackgroundColor(Color.RED);
        ft = fm.beginTransaction();
        ft.replace(R.id.main_page, new FenLeiFragment(hanlder,mdb));
        ft.addToBackStack(null);
        ft.commit();
    } else {
        fenleiLine.setBackgroundColor(Color.argb(0, 0, 0, 0));
    }
    if (boutiqueFlag) {
        boutiqueLine.setBackgroundColor(Color.RED);
        ft = fm.beginTransaction();
        ft.replace(R.id.main_page, new BoutFragmentNew(mdb));
        ft.commit();
    } else {
        boutiqueLine.setBackgroundColor(Color.argb(0, 0, 0, 0));
    }

}

2 个答案:

答案 0 :(得分:1)

对于你的问题,这可能是一个解释:
我可以看到你扩展了LinearLayout,它提供了InterceptTouchEvents(),它适用于触摸事件。
所以在这个布局上你有一个touchevent监听器和一个clickevent监听器,在这种情况下,当你点击布局时,首先调用触摸事件然后调用第二次点击事件。
这就是为什么你的touchevent工作。

答案 1 :(得分:0)

我使用OnTouchListener而不是OnClickListener.It有效,但我不知道为什么我的OnClickListener现在需要双击。