Android Widget检测点按和双击

时间:2013-04-09 16:09:00

标签: java android widget gesture tap

好的,这是问题所在。我已经创建了一个小部件,现在需要检测它并点击它,当触发它时应该显示不同的视图。出于测试目的,我使用了日志记录,以查看它是否正常工作。以下是我的代码:

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.GestureDetector;
import android.view.GestureDetector.OnDoubleTapListener;
import android.view.GestureDetector.OnGestureListener;
import android.view.MotionEvent;
import android.widget.Toast;

/**
 * @Author Jan Zivkovic
 * 
 * NE DELA, OVERRIDA AMPAK NE DELA!
 */

public class UpdateWidget extends Activity implements OnGestureListener{

    private GestureDetector gesture;

    public void onCreate(Bundle savedInstanceState)  
    {  
        super.onCreate(savedInstanceState);  
        //setContentView(R.layout.main);  
        Log.w("TEST", "started");


        gesture = new GestureDetector(this);  

        //set the on Double tap listener  
        gesture.setOnDoubleTapListener(new OnDoubleTapListener()  
        {  
            @Override  
            public boolean onDoubleTap(MotionEvent e)  
            {  
                //set text color to green  
                //tvTap.setTextColor(0xff00ff00);  
                //print a confirmation message  
                //tvTap.setText("The screen has been double tapped.");  
                Log.w("TEST", "Double tap");
                return false;  
            }  

            @Override  
            public boolean onDoubleTapEvent(MotionEvent e)  
            {  
                //if the second tap hadn't been released and it's being moved  
                if(e.getAction() == MotionEvent.ACTION_MOVE)  
                {  
                    //set text to blue  
                    //tvTapEvent.setTextColor(0xff0000ff);  
                    //print a confirmation message and the position  
                    //tvTapEvent.setText("Double tap with movement. Position:\n"  
                    //        + "X:" + Float.toString(e.getRawX()) +  
                    //        "\nY: " + Float.toString(e.getRawY()));  
                }  
                else if(e.getAction() == MotionEvent.ACTION_UP)//user released the screen  
                {  
                    //setContentView();  
                }  
                return false;  
            }  

            @Override  
            public boolean onSingleTapConfirmed(MotionEvent e)  
            {  
                //set text color to red  
                //tvTap.setTextColor(0xffff0000);  
                //print a confirmation message and the tap position  
                //tvTap.setText("Double tap failed. Please try again.");  
                Log.w("TEST", "Single tap");
                return false;  
            }  
        });  
    }

    @Override
    public boolean onDown(MotionEvent arg0) {
        // TODO Auto-generated method stub
        return false;
    }

    @Override
    public boolean onFling(MotionEvent arg0, MotionEvent arg1, float arg2,
            float arg3) {
        // TODO Auto-generated method stub
        return false;
    }

    @Override
    public void onLongPress(MotionEvent arg0) {
        // TODO Auto-generated method stub

    }

    @Override
    public boolean onScroll(MotionEvent arg0, MotionEvent arg1, float arg2,
            float arg3) {
        // TODO Auto-generated method stub
        return false;
    }

    @Override
    public void onShowPress(MotionEvent arg0) {
        // TODO Auto-generated method stub

    }

    @Override
    public boolean onSingleTapUp(MotionEvent arg0) {
        // TODO Auto-generated method stub
        return false;
    }

}

Widget Provider类,onUpdate方法(每5分钟触发一次)

@Override
    public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
        for (int i = 0; i < appWidgetIds.length; i++) {
            int appWidgetId = appWidgetIds[i];
            Intent updateIntent = new Intent(context, UpdateWidget.class);
            // Identifies the particular widget...
            updateIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
            updateIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            // Make the pending intent unique...
            updateIntent.setData(Uri.parse(updateIntent.toUri(Intent.URI_INTENT_SCHEME)));
            PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, updateIntent, 0);


            //context.startActivity(updateIntent);

            RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget_layout);//R.layout.widget_layout
            views.setTextViewText(R.id.subject1, "subject1 test");
            views.setOnClickPendingIntent(R.id.widget_layout, pendingIntent);
            appWidgetManager.updateAppWidget(appWidgetId, views);
            Log.w("Schedule", "Widget Updated = " + appWidgetId);
        }
        super.onUpdate(context, appWidgetManager, appWidgetIds);
    }

但是到目前为止它到底是什么。当您点击或双击小部件时,Normaly手机会振动。使用它,手机在敲击时不再振动,也不会在logcat中打印任何东西。在过去的几天里,这个问题让我烦恼。希望其他人知道我做错了什么。

编辑:忘了最重要的事情。我正在使用Android 2.2 api level 8(Froyo)并使用Android 2.3.6在三星Galaxy Ace VE上进行测试

1 个答案:

答案 0 :(得分:1)

  

我制作了一个小部件

鉴于您的代码,我将假设您的意思是其他Android开发人员称之为“应用小部件”。

  

现在需要检测点击并双击它

双击很难被发现。

  

以下是我的代码

您的第一个代码块是针对某个活动,而不是应用小部件。

当用户点击应用小部件时,您的第二个代码块会调用一个活动。这很好,但这不会帮助你检测双击。实际上,它通常会阻止用户首先进行双击,因为活动将在第一次点击后接管屏幕。

我会建议您避免尝试使用应用小部件的双击。在app小部件中有两个不同的项目来区分不同的事件(无论你想要点击一下,还是想要双击一下)。