Android appwidget 运行时不启动服务

发布于 2024-10-20 10:40:45 字数 8060 浏览 0 评论 0原文

我遇到的问题是,当我调试小部件时,它会更改布局,但当我只是运行它时,它不起作用。根据我的调试消息,它设置了 setOnClickPendingIntent 但它不会启动我的服务。

简而言之,我的小部件仅在调试时起作用。

这是我的小部件代码:

    public class Widget extends AppWidgetProvider {

    public static String SWITCH_SCREEN1 = "1";
    public static String SWITCH_SCREEN2 = "2";

    public static final String ADD_NOTE = "addNote";
    public static final String MANAGE_REMINDERS = "manageReminders";
    public static String TAKE_PICTURE = "takePicture";


    private static int LAYOUTID = R.layout.widget_screen1;

    /**
     * This method is called when a widget is added to the home screen.
     * It sets the listeners on the items and updates the screen with info from the database
     */
    @Override
    public void onEnabled(Context context) {
        super.onEnabled(context);
        setListeners(context);
        updateScreenFromDatabase(context, AppWidgetManager.getInstance(context), AppWidgetManager.getInstance(context).getAppWidgetIds(new ComponentName(context, Widget.class)));
    }


    /**
     * This method is called to update the widget. The Widget is called when the timeout set in widget.xml occurs.
     */
    @Override
    public void onUpdate(Context context, AppWidgetManager appWidgetManager,int[] appWidgetIds) {
        super.onUpdate(context, appWidgetManager, appWidgetIds);
        updateScreenFromDatabase(context, appWidgetManager, appWidgetIds);
    }

    /**
     * This method fetches the data from the database and puts it in the 2 text elements on the screen
     * @param context
     * @param appWidgetManager
     * @param appWidgetIds
     */
    private static void updateScreenFromDatabase(Context context, AppWidgetManager appWidgetManager,int[] appWidgetIds) {
        if(LAYOUTID == R.layout.widget_screen1){
            RemoteViews views = new RemoteViews(context.getPackageName(), LAYOUTID);
            for(int i = 0 ; i < appWidgetIds.length ; i++){
                String currentLesson = "No current lesson";
                String nextLesson = "No next lesson";
                LessonHour[] hours = Database.getInstance(context).getCurrentAndNextLessonHour();
                if(hours[0] != null){
                    currentLesson = hours[0].getStart().get(GregorianCalendar.HOUR_OF_DAY) + ":" + Utils.adjustMinutes(hours[0].getStart().get(GregorianCalendar.MINUTE)) + " " + hours[0] .getLesson().getSummary();
                }
                if(hours[1] != null){
                    nextLesson = hours[1].getStart().get(GregorianCalendar.HOUR_OF_DAY) + ":" +  Utils.adjustMinutes(hours[1].getStart().get(GregorianCalendar.MINUTE)) + " " + hours[1] .getLesson().getSummary();
                }
                views.setTextViewText(R.id.txt_widget_lesson1, currentLesson);
                views.setTextViewText(R.id.txt_widget_lesson2, nextLesson);

                appWidgetManager.updateAppWidget(new ComponentName(context, Widget.class), views);  
            }
        }

    }



    /**
     * This method is called when the screen of the widget should change.
     * The action tells the method to which screen it should change. 
     * @param context
     * @param action: the screen the method should switch to. Either WIDGET_SCREEN1 or WIDGET_SCREEN2
     */
    public static void buildUpdate(Context context, String action){
        RemoteViews views;
        if(action.equals(SWITCH_SCREEN1)){
            views =  new RemoteViews(context.getPackageName(), R.layout.widget_screen1);
            AppWidgetManager.getInstance(context).updateAppWidget(new ComponentName(context, Widget.class), views);
            LAYOUTID = R.layout.widget_screen1;
            updateScreenFromDatabase(context, AppWidgetManager.getInstance(context), AppWidgetManager.getInstance(context).getAppWidgetIds(new ComponentName(context, Widget.class)));
        }
        else if(action.equals(SWITCH_SCREEN2)){
            views =  new RemoteViews(context.getPackageName(), R.layout.widget_screen2);
            AppWidgetManager.getInstance(context).updateAppWidget(new ComponentName(context, Widget.class), views);
            LAYOUTID = R.layout.widget_screen2;
        }
        setListeners(context);
    }
    /**
     * This methods sets the onclick listeners for the elements displayed on the screen
     * @param context
     */
    private static void setListeners(Context context){
        AppWidgetManager manager = AppWidgetManager.getInstance(context);
        int[] appWidgetIds = manager.getAppWidgetIds(new ComponentName(context, Widget.class));

        for (int i = 0 ; i < appWidgetIds.length; i++){

            if(LAYOUTID == R.layout.widget_screen1){
                Log.e("khlrooster", "setting listeners on widget screen 1");
                RemoteViews views = new RemoteViews(context.getPackageName(), LAYOUTID);

                Intent intent = new Intent(context, SwitchWidgetScreenService.class);
                intent.setAction(SWITCH_SCREEN2);
                intent.setData(Uri.parse("uri::" + Math.random()));
                Log.e("khlrooster", "action of listener for screen 1: " + intent.getAction());
                PendingIntent pi = PendingIntent.getService(context, 0, intent, Intent.FLAG_ACTIVITY_NEW_TASK);
                views.setOnClickPendingIntent(R.id.imgbtn_switchDown, pi);
                views.setOnClickPendingIntent(R.id.imgbtn_widget_notification, pi);

                manager.updateAppWidget(new ComponentName(context, Widget.class), views);
                Log.e("khlrooster", "listeners set on widget screen 1");
            }

            else if(LAYOUTID == R.layout.widget_screen2){
                Log.e("khlrooster", "setting listeners on widget screen 2");
                RemoteViews views = new RemoteViews(context.getPackageName(), LAYOUTID);
                Intent intent2 = new Intent(context, SwitchWidgetScreenService.class);
                intent2.setAction(SWITCH_SCREEN1);              
                PendingIntent pendingIntent = PendingIntent.getService(context, 0, intent2, 0);
                views.setOnClickPendingIntent(R.id.imgbtn_switchUp, pendingIntent);

                intent2 = new Intent(context, LessonDetail.class);
                intent2.setAction(ADD_NOTE);
                pendingIntent = PendingIntent.getActivity(context, 0, intent2, 0);
                views.setOnClickPendingIntent(R.id.imgbtn_notes, pendingIntent);

                intent2= new Intent(context, LessonDetail.class);
                intent2.setAction(TAKE_PICTURE);
                pendingIntent = PendingIntent.getActivity(context, 0, intent2, 0);
                views.setOnClickPendingIntent(R.id.imgbtn_photo, pendingIntent);                

                manager.updateAppWidget(new ComponentName(context, Widget.class), views);
                Log.e("khlrooster", "listeners set on widget screen 2");
            }

        }
    }


}

这是我的服务响应我的意图:

public class SwitchWidgetScreenService extends Service {

@Override
public IBinder onBind(Intent arg0) {
    // TODO Auto-generated method stub
    return null;
}

@Override
public void onCreate() {
    super.onCreate();
    Log.e("khlrooster", "Created the SwitchWidgetScreenService");
}

@Override
public void onStart(Intent intent, int startId) {
    //super.onStart(intent, startId);
    Log.e("khlrooster", "started the SwitchWidgetScreenService");
    handleEvent(intent);
}

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    handleEvent(intent);
    Log.e("khlrooster", "started the SwitchWidgetScreenService");
    return super.onStartCommand(intent, flags, startId);
}

private void handleEvent(Intent intent) {
    Log.e("khlrooster", "it works, the screen changes to: " + intent.getAction());
    if(intent.getAction().equals(Widget.SWITCH_SCREEN1)){
        Widget.buildUpdate(this, Widget.SWITCH_SCREEN1);
    }else if(intent.getAction().equals(Widget.SWITCH_SCREEN2)){
        Widget.buildUpdate(this, Widget.SWITCH_SCREEN2);
    }
}

}

The problem I am having is that when I debug my widget, it changes the layout, but when I simply run it, it doesn't work. According to my debug messages, it sets the setOnClickPendingIntent but it does not start my service.

In short, my widget only works when debugging.

Here is my widget code:

    public class Widget extends AppWidgetProvider {

    public static String SWITCH_SCREEN1 = "1";
    public static String SWITCH_SCREEN2 = "2";

    public static final String ADD_NOTE = "addNote";
    public static final String MANAGE_REMINDERS = "manageReminders";
    public static String TAKE_PICTURE = "takePicture";


    private static int LAYOUTID = R.layout.widget_screen1;

    /**
     * This method is called when a widget is added to the home screen.
     * It sets the listeners on the items and updates the screen with info from the database
     */
    @Override
    public void onEnabled(Context context) {
        super.onEnabled(context);
        setListeners(context);
        updateScreenFromDatabase(context, AppWidgetManager.getInstance(context), AppWidgetManager.getInstance(context).getAppWidgetIds(new ComponentName(context, Widget.class)));
    }


    /**
     * This method is called to update the widget. The Widget is called when the timeout set in widget.xml occurs.
     */
    @Override
    public void onUpdate(Context context, AppWidgetManager appWidgetManager,int[] appWidgetIds) {
        super.onUpdate(context, appWidgetManager, appWidgetIds);
        updateScreenFromDatabase(context, appWidgetManager, appWidgetIds);
    }

    /**
     * This method fetches the data from the database and puts it in the 2 text elements on the screen
     * @param context
     * @param appWidgetManager
     * @param appWidgetIds
     */
    private static void updateScreenFromDatabase(Context context, AppWidgetManager appWidgetManager,int[] appWidgetIds) {
        if(LAYOUTID == R.layout.widget_screen1){
            RemoteViews views = new RemoteViews(context.getPackageName(), LAYOUTID);
            for(int i = 0 ; i < appWidgetIds.length ; i++){
                String currentLesson = "No current lesson";
                String nextLesson = "No next lesson";
                LessonHour[] hours = Database.getInstance(context).getCurrentAndNextLessonHour();
                if(hours[0] != null){
                    currentLesson = hours[0].getStart().get(GregorianCalendar.HOUR_OF_DAY) + ":" + Utils.adjustMinutes(hours[0].getStart().get(GregorianCalendar.MINUTE)) + " " + hours[0] .getLesson().getSummary();
                }
                if(hours[1] != null){
                    nextLesson = hours[1].getStart().get(GregorianCalendar.HOUR_OF_DAY) + ":" +  Utils.adjustMinutes(hours[1].getStart().get(GregorianCalendar.MINUTE)) + " " + hours[1] .getLesson().getSummary();
                }
                views.setTextViewText(R.id.txt_widget_lesson1, currentLesson);
                views.setTextViewText(R.id.txt_widget_lesson2, nextLesson);

                appWidgetManager.updateAppWidget(new ComponentName(context, Widget.class), views);  
            }
        }

    }



    /**
     * This method is called when the screen of the widget should change.
     * The action tells the method to which screen it should change. 
     * @param context
     * @param action: the screen the method should switch to. Either WIDGET_SCREEN1 or WIDGET_SCREEN2
     */
    public static void buildUpdate(Context context, String action){
        RemoteViews views;
        if(action.equals(SWITCH_SCREEN1)){
            views =  new RemoteViews(context.getPackageName(), R.layout.widget_screen1);
            AppWidgetManager.getInstance(context).updateAppWidget(new ComponentName(context, Widget.class), views);
            LAYOUTID = R.layout.widget_screen1;
            updateScreenFromDatabase(context, AppWidgetManager.getInstance(context), AppWidgetManager.getInstance(context).getAppWidgetIds(new ComponentName(context, Widget.class)));
        }
        else if(action.equals(SWITCH_SCREEN2)){
            views =  new RemoteViews(context.getPackageName(), R.layout.widget_screen2);
            AppWidgetManager.getInstance(context).updateAppWidget(new ComponentName(context, Widget.class), views);
            LAYOUTID = R.layout.widget_screen2;
        }
        setListeners(context);
    }
    /**
     * This methods sets the onclick listeners for the elements displayed on the screen
     * @param context
     */
    private static void setListeners(Context context){
        AppWidgetManager manager = AppWidgetManager.getInstance(context);
        int[] appWidgetIds = manager.getAppWidgetIds(new ComponentName(context, Widget.class));

        for (int i = 0 ; i < appWidgetIds.length; i++){

            if(LAYOUTID == R.layout.widget_screen1){
                Log.e("khlrooster", "setting listeners on widget screen 1");
                RemoteViews views = new RemoteViews(context.getPackageName(), LAYOUTID);

                Intent intent = new Intent(context, SwitchWidgetScreenService.class);
                intent.setAction(SWITCH_SCREEN2);
                intent.setData(Uri.parse("uri::" + Math.random()));
                Log.e("khlrooster", "action of listener for screen 1: " + intent.getAction());
                PendingIntent pi = PendingIntent.getService(context, 0, intent, Intent.FLAG_ACTIVITY_NEW_TASK);
                views.setOnClickPendingIntent(R.id.imgbtn_switchDown, pi);
                views.setOnClickPendingIntent(R.id.imgbtn_widget_notification, pi);

                manager.updateAppWidget(new ComponentName(context, Widget.class), views);
                Log.e("khlrooster", "listeners set on widget screen 1");
            }

            else if(LAYOUTID == R.layout.widget_screen2){
                Log.e("khlrooster", "setting listeners on widget screen 2");
                RemoteViews views = new RemoteViews(context.getPackageName(), LAYOUTID);
                Intent intent2 = new Intent(context, SwitchWidgetScreenService.class);
                intent2.setAction(SWITCH_SCREEN1);              
                PendingIntent pendingIntent = PendingIntent.getService(context, 0, intent2, 0);
                views.setOnClickPendingIntent(R.id.imgbtn_switchUp, pendingIntent);

                intent2 = new Intent(context, LessonDetail.class);
                intent2.setAction(ADD_NOTE);
                pendingIntent = PendingIntent.getActivity(context, 0, intent2, 0);
                views.setOnClickPendingIntent(R.id.imgbtn_notes, pendingIntent);

                intent2= new Intent(context, LessonDetail.class);
                intent2.setAction(TAKE_PICTURE);
                pendingIntent = PendingIntent.getActivity(context, 0, intent2, 0);
                views.setOnClickPendingIntent(R.id.imgbtn_photo, pendingIntent);                

                manager.updateAppWidget(new ComponentName(context, Widget.class), views);
                Log.e("khlrooster", "listeners set on widget screen 2");
            }

        }
    }


}

and here is my service responding to my Intents:

public class SwitchWidgetScreenService extends Service {

@Override
public IBinder onBind(Intent arg0) {
    // TODO Auto-generated method stub
    return null;
}

@Override
public void onCreate() {
    super.onCreate();
    Log.e("khlrooster", "Created the SwitchWidgetScreenService");
}

@Override
public void onStart(Intent intent, int startId) {
    //super.onStart(intent, startId);
    Log.e("khlrooster", "started the SwitchWidgetScreenService");
    handleEvent(intent);
}

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    handleEvent(intent);
    Log.e("khlrooster", "started the SwitchWidgetScreenService");
    return super.onStartCommand(intent, flags, startId);
}

private void handleEvent(Intent intent) {
    Log.e("khlrooster", "it works, the screen changes to: " + intent.getAction());
    if(intent.getAction().equals(Widget.SWITCH_SCREEN1)){
        Widget.buildUpdate(this, Widget.SWITCH_SCREEN1);
    }else if(intent.getAction().equals(Widget.SWITCH_SCREEN2)){
        Widget.buildUpdate(this, Widget.SWITCH_SCREEN2);
    }
}

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

打小就很酷 2024-10-27 10:40:45

我解决了我的问题,从数据库获取数据后我再次调用 setListeners 。

I solved my problem, I called setListeners once more after getting the data from the DB.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文