Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/178.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在android中使用alarm manager每小时更新一次服务_Android_Eclipse_Android Emulator - Fatal编程技术网

如何在android中使用alarm manager每小时更新一次服务

如何在android中使用alarm manager每小时更新一次服务,android,eclipse,android-emulator,Android,Eclipse,Android Emulator,我在使用alarm Manager更新服务时遇到问题,因为我不知道将这一大堆代码放在什么位置: SharedPreferences sp = getSharedPreferences("updateOptions", 0); int updatePeriod=sp.getInt("UpdatePeriod", -1); Calendar cal = Calendar.getInstance(); Intent i = new Intent(t

我在使用alarm Manager更新服务时遇到问题,因为我不知道将这一大堆代码放在什么位置:

SharedPreferences sp = getSharedPreferences("updateOptions", 0);
        int updatePeriod=sp.getInt("UpdatePeriod", -1);


        Calendar cal = Calendar.getInstance();

        Intent i = new Intent(this, UpdateWidgetService.class);
        PendingIntent pintent = PendingIntent.getService(this, 0, intent, 0);

        AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);

        alarm.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), updatePeriod, pintent);
package com.example.testfeeds;

import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.Random;

import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlPullParserFactory;

import android.annotation.SuppressLint;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.app.Service;
import android.appwidget.AppWidgetManager;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.graphics.Color;
import android.os.IBinder;
import android.util.Log;
import android.webkit.WebView.FindListener;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.RemoteViews;
import android.widget.TextView;


public class UpdateWidgetService extends Service {

  public static int numberOfItems=0;



  //numberOfItems=0;
    private static  String LOG = "testwidgets";



    ArrayList<String> feedsPubDate;

      @SuppressWarnings("deprecation")
    @Override
      public void onStart(Intent intent, int startId) {
        Log.i(LOG, "Called");
        // Create some random data

        feedsPubDate=new ArrayList<String>(); 


        /////////////////////////////////////////////////////////////////////


        SharedPreferences sp = getSharedPreferences("updateOptions", 0);
        int updatePeriod=sp.getInt("UpdatePeriod", -1);


        Calendar cal = Calendar.getInstance();

        Intent i = new Intent(this, UpdateWidgetService.class);
        PendingIntent pintent = PendingIntent.getService(this, 0, intent, 0);

        AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);

        alarm.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), updatePeriod, pintent);





        //////////////////////////////////////////////////////////////////////


        AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(this
            .getApplicationContext());

        int[] allWidgetIds = intent
            .getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS);

        ComponentName thisWidget = new ComponentName(getApplicationContext(),
            MyWidgetProvider.class);
        int[] allWidgetIds2 = appWidgetManager.getAppWidgetIds(thisWidget);
        Log.w(LOG, "From Intent" + String.valueOf(allWidgetIds.length));
        Log.w(LOG, "Direct" + String.valueOf(allWidgetIds2.length));

        for (int widgetId : allWidgetIds) {
          // Create some random data



///////////////////////////////////////////////////////////////////////////       

          RemoteViews remoteViews = new RemoteViews(this
              .getApplicationContext().getPackageName(),
              R.layout.widget_layout);

          Log.d("numberOfItems intially", String.valueOf(numberOfItems));

              try {
                numberOfItems=doTestFeed();
            } catch (MalformedURLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (ParseException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

          // Set the text
          remoteViews.setTextColor(R.id.title3,Color.WHITE);
          remoteViews.setTextViewText(R.id.title3,"  "+
              String.valueOf(numberOfItems));

          Log.w(LOG, String.valueOf(numberOfItems));


////////////////////////////////////////////////////////////////////////////          

          // Register an onClickListener
          Intent clickIntent = new Intent(this.getApplicationContext(),
              MyWidgetProvider.class);

          clickIntent.setAction(AppWidgetManager.ACTION_APPWIDGET_UPDATE);
          clickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS,
              allWidgetIds);

          PendingIntent pendingIntent = PendingIntent.getBroadcast(getApplicationContext(), 0, clickIntent,
              PendingIntent.FLAG_UPDATE_CURRENT);
          remoteViews.setOnClickPendingIntent(R.id.title3, pendingIntent);
          appWidgetManager.updateAppWidget(widgetId, remoteViews);
        }
        stopSelf();

        super.onStart(intent, startId);
      }

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


    int doTestFeed() throws MalformedURLException, ParseException

    {  
        Log.d("msg"," in do test feed");

        InputStream is = null;
        int x = 0;

        URL myURL = new URL("http://yunn.yu.edu.jo/index.php?option=com_content&view=category&id=55&layout=blog&Itemid=104&format=feed&type=rss");
        try {
            URLConnection conn = myURL.openConnection();
             is = conn.getInputStream();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        XmlPullParserFactory pullParserFactory;

        try {
            pullParserFactory = XmlPullParserFactory.newInstance();
            XmlPullParser parser = pullParserFactory.newPullParser();
                parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false);
                parser.setInput(is, null);
                Log.d("msg","before making parsing");
                x=parseXML(parser);
                Log.d("msg","after making parsing");
        } catch (XmlPullParserException e) {
            e.printStackTrace();
        } catch (IOException e) {

            e.printStackTrace();
        }


        Log.d("msg"," done testing");
        return x;
    }


//////////////////////////////////////////////////////////////////////////////////

    @SuppressLint("SimpleDateFormat")
    private int parseXML(XmlPullParser parser) throws XmlPullParserException,IOException, ParseException
    {

        Log.d("msg"," in parser");

        int eventType = parser.getEventType();
        int getElement=0;
        String pubDate=null;






        while (eventType != XmlPullParser.END_DOCUMENT){

            String tagName = null;


            switch (eventType){

            //----------------------------------//
            case XmlPullParser.START_DOCUMENT: 
                {
                    // do nothing
                }
                break;
           //----------------------------------//
             case XmlPullParser.START_TAG:
             { tagName = parser.getName();
                 if ("item".equals(tagName)){
                      getElement=1;
                 } else if (getElement!=0){

                      if ("pubDate".equals(tagName)){
                         pubDate= parser.nextText();

                         feedsPubDate.add(pubDate);
                         Log.d("value",pubDate);
                     }
                 }
             }
                 break;                     
           //----------------------------------//
             case XmlPullParser.END_TAG:
             { tagName = parser.getName();
                 if (tagName.equalsIgnoreCase("item") && getElement != 0){

                 }
             }
                 break;

          //----------------------------------//


            }// end-switch.


            eventType= parser.next();

        }// end-while.

        int i=0;

        SharedPreferences sp = getSharedPreferences("tempData", 0);
        String dateStringA=sp.getString("recentPubDate", null);

        Log.d("oldest date",dateStringA);

        for(String s : feedsPubDate )

        {

        String dateStringB = feedsPubDate.get(i);
        SimpleDateFormat parserSDF = new SimpleDateFormat("EEE, DD MMM yyyy HH:mm:ss");
        Date dateA = parserSDF.parse(dateStringA);
        Date dateB = parserSDF.parse(dateStringB);
        if (dateA.compareTo(dateB) < 0) {


            Log.d("imp msg","one new item");

            numberOfItems++;
        }

        i++;

        }


        Log.d("update result", String.valueOf(numberOfItems));


      // Toast.makeText(GeneralNews.this,"The size of the list"+feedsTitles.size() , Toast.LENGTH_LONG).show();

   return numberOfItems;

    } //end xmlParser method.

//////////////////////////////////////////////////////////////////////////////////

}
package com.example.testfeeds;

import android.os.Bundle;
import android.app.Activity;
import android.app.AlarmManager;
import android.view.Menu;

import java.util.Calendar;
import java.util.Random;

import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.widget.RemoteViews;

public class MyWidgetProvider extends AppWidgetProvider {

     private static final String LOG = "testwidgets";

      @Override
      public void onUpdate(Context context, AppWidgetManager appWidgetManager,
          int[] appWidgetIds) {



        Log.w(LOG, "onUpdate method called");
        // Get all ids
        ComponentName thisWidget = new ComponentName(context,
            MyWidgetProvider.class);
        int[] allWidgetIds = appWidgetManager.getAppWidgetIds(thisWidget);

        // Build the intent to call the service
        Intent intent = new Intent(context.getApplicationContext(),
            UpdateWidgetService.class);
        intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, allWidgetIds);

        // Update the widgets via the service
        context.startService(intent);
      }

} 
事实上,如果xml文件(新闻提要)中有新项目,我的任务是根据新项目的总数更新我的应用程序小部件:

SharedPreferences sp = getSharedPreferences("updateOptions", 0);
        int updatePeriod=sp.getInt("UpdatePeriod", -1);


        Calendar cal = Calendar.getInstance();

        Intent i = new Intent(this, UpdateWidgetService.class);
        PendingIntent pintent = PendingIntent.getService(this, 0, intent, 0);

        AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);

        alarm.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), updatePeriod, pintent);
package com.example.testfeeds;

import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.Random;

import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlPullParserFactory;

import android.annotation.SuppressLint;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.app.Service;
import android.appwidget.AppWidgetManager;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.graphics.Color;
import android.os.IBinder;
import android.util.Log;
import android.webkit.WebView.FindListener;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.RemoteViews;
import android.widget.TextView;


public class UpdateWidgetService extends Service {

  public static int numberOfItems=0;



  //numberOfItems=0;
    private static  String LOG = "testwidgets";



    ArrayList<String> feedsPubDate;

      @SuppressWarnings("deprecation")
    @Override
      public void onStart(Intent intent, int startId) {
        Log.i(LOG, "Called");
        // Create some random data

        feedsPubDate=new ArrayList<String>(); 


        /////////////////////////////////////////////////////////////////////


        SharedPreferences sp = getSharedPreferences("updateOptions", 0);
        int updatePeriod=sp.getInt("UpdatePeriod", -1);


        Calendar cal = Calendar.getInstance();

        Intent i = new Intent(this, UpdateWidgetService.class);
        PendingIntent pintent = PendingIntent.getService(this, 0, intent, 0);

        AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);

        alarm.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), updatePeriod, pintent);





        //////////////////////////////////////////////////////////////////////


        AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(this
            .getApplicationContext());

        int[] allWidgetIds = intent
            .getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS);

        ComponentName thisWidget = new ComponentName(getApplicationContext(),
            MyWidgetProvider.class);
        int[] allWidgetIds2 = appWidgetManager.getAppWidgetIds(thisWidget);
        Log.w(LOG, "From Intent" + String.valueOf(allWidgetIds.length));
        Log.w(LOG, "Direct" + String.valueOf(allWidgetIds2.length));

        for (int widgetId : allWidgetIds) {
          // Create some random data



///////////////////////////////////////////////////////////////////////////       

          RemoteViews remoteViews = new RemoteViews(this
              .getApplicationContext().getPackageName(),
              R.layout.widget_layout);

          Log.d("numberOfItems intially", String.valueOf(numberOfItems));

              try {
                numberOfItems=doTestFeed();
            } catch (MalformedURLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (ParseException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

          // Set the text
          remoteViews.setTextColor(R.id.title3,Color.WHITE);
          remoteViews.setTextViewText(R.id.title3,"  "+
              String.valueOf(numberOfItems));

          Log.w(LOG, String.valueOf(numberOfItems));


////////////////////////////////////////////////////////////////////////////          

          // Register an onClickListener
          Intent clickIntent = new Intent(this.getApplicationContext(),
              MyWidgetProvider.class);

          clickIntent.setAction(AppWidgetManager.ACTION_APPWIDGET_UPDATE);
          clickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS,
              allWidgetIds);

          PendingIntent pendingIntent = PendingIntent.getBroadcast(getApplicationContext(), 0, clickIntent,
              PendingIntent.FLAG_UPDATE_CURRENT);
          remoteViews.setOnClickPendingIntent(R.id.title3, pendingIntent);
          appWidgetManager.updateAppWidget(widgetId, remoteViews);
        }
        stopSelf();

        super.onStart(intent, startId);
      }

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


    int doTestFeed() throws MalformedURLException, ParseException

    {  
        Log.d("msg"," in do test feed");

        InputStream is = null;
        int x = 0;

        URL myURL = new URL("http://yunn.yu.edu.jo/index.php?option=com_content&view=category&id=55&layout=blog&Itemid=104&format=feed&type=rss");
        try {
            URLConnection conn = myURL.openConnection();
             is = conn.getInputStream();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        XmlPullParserFactory pullParserFactory;

        try {
            pullParserFactory = XmlPullParserFactory.newInstance();
            XmlPullParser parser = pullParserFactory.newPullParser();
                parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false);
                parser.setInput(is, null);
                Log.d("msg","before making parsing");
                x=parseXML(parser);
                Log.d("msg","after making parsing");
        } catch (XmlPullParserException e) {
            e.printStackTrace();
        } catch (IOException e) {

            e.printStackTrace();
        }


        Log.d("msg"," done testing");
        return x;
    }


//////////////////////////////////////////////////////////////////////////////////

    @SuppressLint("SimpleDateFormat")
    private int parseXML(XmlPullParser parser) throws XmlPullParserException,IOException, ParseException
    {

        Log.d("msg"," in parser");

        int eventType = parser.getEventType();
        int getElement=0;
        String pubDate=null;






        while (eventType != XmlPullParser.END_DOCUMENT){

            String tagName = null;


            switch (eventType){

            //----------------------------------//
            case XmlPullParser.START_DOCUMENT: 
                {
                    // do nothing
                }
                break;
           //----------------------------------//
             case XmlPullParser.START_TAG:
             { tagName = parser.getName();
                 if ("item".equals(tagName)){
                      getElement=1;
                 } else if (getElement!=0){

                      if ("pubDate".equals(tagName)){
                         pubDate= parser.nextText();

                         feedsPubDate.add(pubDate);
                         Log.d("value",pubDate);
                     }
                 }
             }
                 break;                     
           //----------------------------------//
             case XmlPullParser.END_TAG:
             { tagName = parser.getName();
                 if (tagName.equalsIgnoreCase("item") && getElement != 0){

                 }
             }
                 break;

          //----------------------------------//


            }// end-switch.


            eventType= parser.next();

        }// end-while.

        int i=0;

        SharedPreferences sp = getSharedPreferences("tempData", 0);
        String dateStringA=sp.getString("recentPubDate", null);

        Log.d("oldest date",dateStringA);

        for(String s : feedsPubDate )

        {

        String dateStringB = feedsPubDate.get(i);
        SimpleDateFormat parserSDF = new SimpleDateFormat("EEE, DD MMM yyyy HH:mm:ss");
        Date dateA = parserSDF.parse(dateStringA);
        Date dateB = parserSDF.parse(dateStringB);
        if (dateA.compareTo(dateB) < 0) {


            Log.d("imp msg","one new item");

            numberOfItems++;
        }

        i++;

        }


        Log.d("update result", String.valueOf(numberOfItems));


      // Toast.makeText(GeneralNews.this,"The size of the list"+feedsTitles.size() , Toast.LENGTH_LONG).show();

   return numberOfItems;

    } //end xmlParser method.

//////////////////////////////////////////////////////////////////////////////////

}
package com.example.testfeeds;

import android.os.Bundle;
import android.app.Activity;
import android.app.AlarmManager;
import android.view.Menu;

import java.util.Calendar;
import java.util.Random;

import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.widget.RemoteViews;

public class MyWidgetProvider extends AppWidgetProvider {

     private static final String LOG = "testwidgets";

      @Override
      public void onUpdate(Context context, AppWidgetManager appWidgetManager,
          int[] appWidgetIds) {



        Log.w(LOG, "onUpdate method called");
        // Get all ids
        ComponentName thisWidget = new ComponentName(context,
            MyWidgetProvider.class);
        int[] allWidgetIds = appWidgetManager.getAppWidgetIds(thisWidget);

        // Build the intent to call the service
        Intent intent = new Intent(context.getApplicationContext(),
            UpdateWidgetService.class);
        intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, allWidgetIds);

        // Update the widgets via the service
        context.startService(intent);
      }

} 

为了实现这一点,我使用了两个类:

SharedPreferences sp = getSharedPreferences("updateOptions", 0);
        int updatePeriod=sp.getInt("UpdatePeriod", -1);


        Calendar cal = Calendar.getInstance();

        Intent i = new Intent(this, UpdateWidgetService.class);
        PendingIntent pintent = PendingIntent.getService(this, 0, intent, 0);

        AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);

        alarm.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), updatePeriod, pintent);
package com.example.testfeeds;

import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.Random;

import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlPullParserFactory;

import android.annotation.SuppressLint;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.app.Service;
import android.appwidget.AppWidgetManager;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.graphics.Color;
import android.os.IBinder;
import android.util.Log;
import android.webkit.WebView.FindListener;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.RemoteViews;
import android.widget.TextView;


public class UpdateWidgetService extends Service {

  public static int numberOfItems=0;



  //numberOfItems=0;
    private static  String LOG = "testwidgets";



    ArrayList<String> feedsPubDate;

      @SuppressWarnings("deprecation")
    @Override
      public void onStart(Intent intent, int startId) {
        Log.i(LOG, "Called");
        // Create some random data

        feedsPubDate=new ArrayList<String>(); 


        /////////////////////////////////////////////////////////////////////


        SharedPreferences sp = getSharedPreferences("updateOptions", 0);
        int updatePeriod=sp.getInt("UpdatePeriod", -1);


        Calendar cal = Calendar.getInstance();

        Intent i = new Intent(this, UpdateWidgetService.class);
        PendingIntent pintent = PendingIntent.getService(this, 0, intent, 0);

        AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);

        alarm.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), updatePeriod, pintent);





        //////////////////////////////////////////////////////////////////////


        AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(this
            .getApplicationContext());

        int[] allWidgetIds = intent
            .getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS);

        ComponentName thisWidget = new ComponentName(getApplicationContext(),
            MyWidgetProvider.class);
        int[] allWidgetIds2 = appWidgetManager.getAppWidgetIds(thisWidget);
        Log.w(LOG, "From Intent" + String.valueOf(allWidgetIds.length));
        Log.w(LOG, "Direct" + String.valueOf(allWidgetIds2.length));

        for (int widgetId : allWidgetIds) {
          // Create some random data



///////////////////////////////////////////////////////////////////////////       

          RemoteViews remoteViews = new RemoteViews(this
              .getApplicationContext().getPackageName(),
              R.layout.widget_layout);

          Log.d("numberOfItems intially", String.valueOf(numberOfItems));

              try {
                numberOfItems=doTestFeed();
            } catch (MalformedURLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (ParseException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

          // Set the text
          remoteViews.setTextColor(R.id.title3,Color.WHITE);
          remoteViews.setTextViewText(R.id.title3,"  "+
              String.valueOf(numberOfItems));

          Log.w(LOG, String.valueOf(numberOfItems));


////////////////////////////////////////////////////////////////////////////          

          // Register an onClickListener
          Intent clickIntent = new Intent(this.getApplicationContext(),
              MyWidgetProvider.class);

          clickIntent.setAction(AppWidgetManager.ACTION_APPWIDGET_UPDATE);
          clickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS,
              allWidgetIds);

          PendingIntent pendingIntent = PendingIntent.getBroadcast(getApplicationContext(), 0, clickIntent,
              PendingIntent.FLAG_UPDATE_CURRENT);
          remoteViews.setOnClickPendingIntent(R.id.title3, pendingIntent);
          appWidgetManager.updateAppWidget(widgetId, remoteViews);
        }
        stopSelf();

        super.onStart(intent, startId);
      }

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


    int doTestFeed() throws MalformedURLException, ParseException

    {  
        Log.d("msg"," in do test feed");

        InputStream is = null;
        int x = 0;

        URL myURL = new URL("http://yunn.yu.edu.jo/index.php?option=com_content&view=category&id=55&layout=blog&Itemid=104&format=feed&type=rss");
        try {
            URLConnection conn = myURL.openConnection();
             is = conn.getInputStream();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        XmlPullParserFactory pullParserFactory;

        try {
            pullParserFactory = XmlPullParserFactory.newInstance();
            XmlPullParser parser = pullParserFactory.newPullParser();
                parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false);
                parser.setInput(is, null);
                Log.d("msg","before making parsing");
                x=parseXML(parser);
                Log.d("msg","after making parsing");
        } catch (XmlPullParserException e) {
            e.printStackTrace();
        } catch (IOException e) {

            e.printStackTrace();
        }


        Log.d("msg"," done testing");
        return x;
    }


//////////////////////////////////////////////////////////////////////////////////

    @SuppressLint("SimpleDateFormat")
    private int parseXML(XmlPullParser parser) throws XmlPullParserException,IOException, ParseException
    {

        Log.d("msg"," in parser");

        int eventType = parser.getEventType();
        int getElement=0;
        String pubDate=null;






        while (eventType != XmlPullParser.END_DOCUMENT){

            String tagName = null;


            switch (eventType){

            //----------------------------------//
            case XmlPullParser.START_DOCUMENT: 
                {
                    // do nothing
                }
                break;
           //----------------------------------//
             case XmlPullParser.START_TAG:
             { tagName = parser.getName();
                 if ("item".equals(tagName)){
                      getElement=1;
                 } else if (getElement!=0){

                      if ("pubDate".equals(tagName)){
                         pubDate= parser.nextText();

                         feedsPubDate.add(pubDate);
                         Log.d("value",pubDate);
                     }
                 }
             }
                 break;                     
           //----------------------------------//
             case XmlPullParser.END_TAG:
             { tagName = parser.getName();
                 if (tagName.equalsIgnoreCase("item") && getElement != 0){

                 }
             }
                 break;

          //----------------------------------//


            }// end-switch.


            eventType= parser.next();

        }// end-while.

        int i=0;

        SharedPreferences sp = getSharedPreferences("tempData", 0);
        String dateStringA=sp.getString("recentPubDate", null);

        Log.d("oldest date",dateStringA);

        for(String s : feedsPubDate )

        {

        String dateStringB = feedsPubDate.get(i);
        SimpleDateFormat parserSDF = new SimpleDateFormat("EEE, DD MMM yyyy HH:mm:ss");
        Date dateA = parserSDF.parse(dateStringA);
        Date dateB = parserSDF.parse(dateStringB);
        if (dateA.compareTo(dateB) < 0) {


            Log.d("imp msg","one new item");

            numberOfItems++;
        }

        i++;

        }


        Log.d("update result", String.valueOf(numberOfItems));


      // Toast.makeText(GeneralNews.this,"The size of the list"+feedsTitles.size() , Toast.LENGTH_LONG).show();

   return numberOfItems;

    } //end xmlParser method.

//////////////////////////////////////////////////////////////////////////////////

}
package com.example.testfeeds;

import android.os.Bundle;
import android.app.Activity;
import android.app.AlarmManager;
import android.view.Menu;

import java.util.Calendar;
import java.util.Random;

import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.widget.RemoteViews;

public class MyWidgetProvider extends AppWidgetProvider {

     private static final String LOG = "testwidgets";

      @Override
      public void onUpdate(Context context, AppWidgetManager appWidgetManager,
          int[] appWidgetIds) {



        Log.w(LOG, "onUpdate method called");
        // Get all ids
        ComponentName thisWidget = new ComponentName(context,
            MyWidgetProvider.class);
        int[] allWidgetIds = appWidgetManager.getAppWidgetIds(thisWidget);

        // Build the intent to call the service
        Intent intent = new Intent(context.getApplicationContext(),
            UpdateWidgetService.class);
        intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, allWidgetIds);

        // Update the widgets via the service
        context.startService(intent);
      }

} 
1-UpdateWidgetService:

SharedPreferences sp = getSharedPreferences("updateOptions", 0);
        int updatePeriod=sp.getInt("UpdatePeriod", -1);


        Calendar cal = Calendar.getInstance();

        Intent i = new Intent(this, UpdateWidgetService.class);
        PendingIntent pintent = PendingIntent.getService(this, 0, intent, 0);

        AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);

        alarm.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), updatePeriod, pintent);
package com.example.testfeeds;

import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.Random;

import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlPullParserFactory;

import android.annotation.SuppressLint;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.app.Service;
import android.appwidget.AppWidgetManager;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.graphics.Color;
import android.os.IBinder;
import android.util.Log;
import android.webkit.WebView.FindListener;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.RemoteViews;
import android.widget.TextView;


public class UpdateWidgetService extends Service {

  public static int numberOfItems=0;



  //numberOfItems=0;
    private static  String LOG = "testwidgets";



    ArrayList<String> feedsPubDate;

      @SuppressWarnings("deprecation")
    @Override
      public void onStart(Intent intent, int startId) {
        Log.i(LOG, "Called");
        // Create some random data

        feedsPubDate=new ArrayList<String>(); 


        /////////////////////////////////////////////////////////////////////


        SharedPreferences sp = getSharedPreferences("updateOptions", 0);
        int updatePeriod=sp.getInt("UpdatePeriod", -1);


        Calendar cal = Calendar.getInstance();

        Intent i = new Intent(this, UpdateWidgetService.class);
        PendingIntent pintent = PendingIntent.getService(this, 0, intent, 0);

        AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);

        alarm.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), updatePeriod, pintent);





        //////////////////////////////////////////////////////////////////////


        AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(this
            .getApplicationContext());

        int[] allWidgetIds = intent
            .getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS);

        ComponentName thisWidget = new ComponentName(getApplicationContext(),
            MyWidgetProvider.class);
        int[] allWidgetIds2 = appWidgetManager.getAppWidgetIds(thisWidget);
        Log.w(LOG, "From Intent" + String.valueOf(allWidgetIds.length));
        Log.w(LOG, "Direct" + String.valueOf(allWidgetIds2.length));

        for (int widgetId : allWidgetIds) {
          // Create some random data



///////////////////////////////////////////////////////////////////////////       

          RemoteViews remoteViews = new RemoteViews(this
              .getApplicationContext().getPackageName(),
              R.layout.widget_layout);

          Log.d("numberOfItems intially", String.valueOf(numberOfItems));

              try {
                numberOfItems=doTestFeed();
            } catch (MalformedURLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (ParseException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

          // Set the text
          remoteViews.setTextColor(R.id.title3,Color.WHITE);
          remoteViews.setTextViewText(R.id.title3,"  "+
              String.valueOf(numberOfItems));

          Log.w(LOG, String.valueOf(numberOfItems));


////////////////////////////////////////////////////////////////////////////          

          // Register an onClickListener
          Intent clickIntent = new Intent(this.getApplicationContext(),
              MyWidgetProvider.class);

          clickIntent.setAction(AppWidgetManager.ACTION_APPWIDGET_UPDATE);
          clickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS,
              allWidgetIds);

          PendingIntent pendingIntent = PendingIntent.getBroadcast(getApplicationContext(), 0, clickIntent,
              PendingIntent.FLAG_UPDATE_CURRENT);
          remoteViews.setOnClickPendingIntent(R.id.title3, pendingIntent);
          appWidgetManager.updateAppWidget(widgetId, remoteViews);
        }
        stopSelf();

        super.onStart(intent, startId);
      }

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


    int doTestFeed() throws MalformedURLException, ParseException

    {  
        Log.d("msg"," in do test feed");

        InputStream is = null;
        int x = 0;

        URL myURL = new URL("http://yunn.yu.edu.jo/index.php?option=com_content&view=category&id=55&layout=blog&Itemid=104&format=feed&type=rss");
        try {
            URLConnection conn = myURL.openConnection();
             is = conn.getInputStream();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        XmlPullParserFactory pullParserFactory;

        try {
            pullParserFactory = XmlPullParserFactory.newInstance();
            XmlPullParser parser = pullParserFactory.newPullParser();
                parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false);
                parser.setInput(is, null);
                Log.d("msg","before making parsing");
                x=parseXML(parser);
                Log.d("msg","after making parsing");
        } catch (XmlPullParserException e) {
            e.printStackTrace();
        } catch (IOException e) {

            e.printStackTrace();
        }


        Log.d("msg"," done testing");
        return x;
    }


//////////////////////////////////////////////////////////////////////////////////

    @SuppressLint("SimpleDateFormat")
    private int parseXML(XmlPullParser parser) throws XmlPullParserException,IOException, ParseException
    {

        Log.d("msg"," in parser");

        int eventType = parser.getEventType();
        int getElement=0;
        String pubDate=null;






        while (eventType != XmlPullParser.END_DOCUMENT){

            String tagName = null;


            switch (eventType){

            //----------------------------------//
            case XmlPullParser.START_DOCUMENT: 
                {
                    // do nothing
                }
                break;
           //----------------------------------//
             case XmlPullParser.START_TAG:
             { tagName = parser.getName();
                 if ("item".equals(tagName)){
                      getElement=1;
                 } else if (getElement!=0){

                      if ("pubDate".equals(tagName)){
                         pubDate= parser.nextText();

                         feedsPubDate.add(pubDate);
                         Log.d("value",pubDate);
                     }
                 }
             }
                 break;                     
           //----------------------------------//
             case XmlPullParser.END_TAG:
             { tagName = parser.getName();
                 if (tagName.equalsIgnoreCase("item") && getElement != 0){

                 }
             }
                 break;

          //----------------------------------//


            }// end-switch.


            eventType= parser.next();

        }// end-while.

        int i=0;

        SharedPreferences sp = getSharedPreferences("tempData", 0);
        String dateStringA=sp.getString("recentPubDate", null);

        Log.d("oldest date",dateStringA);

        for(String s : feedsPubDate )

        {

        String dateStringB = feedsPubDate.get(i);
        SimpleDateFormat parserSDF = new SimpleDateFormat("EEE, DD MMM yyyy HH:mm:ss");
        Date dateA = parserSDF.parse(dateStringA);
        Date dateB = parserSDF.parse(dateStringB);
        if (dateA.compareTo(dateB) < 0) {


            Log.d("imp msg","one new item");

            numberOfItems++;
        }

        i++;

        }


        Log.d("update result", String.valueOf(numberOfItems));


      // Toast.makeText(GeneralNews.this,"The size of the list"+feedsTitles.size() , Toast.LENGTH_LONG).show();

   return numberOfItems;

    } //end xmlParser method.

//////////////////////////////////////////////////////////////////////////////////

}
package com.example.testfeeds;

import android.os.Bundle;
import android.app.Activity;
import android.app.AlarmManager;
import android.view.Menu;

import java.util.Calendar;
import java.util.Random;

import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.widget.RemoteViews;

public class MyWidgetProvider extends AppWidgetProvider {

     private static final String LOG = "testwidgets";

      @Override
      public void onUpdate(Context context, AppWidgetManager appWidgetManager,
          int[] appWidgetIds) {



        Log.w(LOG, "onUpdate method called");
        // Get all ids
        ComponentName thisWidget = new ComponentName(context,
            MyWidgetProvider.class);
        int[] allWidgetIds = appWidgetManager.getAppWidgetIds(thisWidget);

        // Build the intent to call the service
        Intent intent = new Intent(context.getApplicationContext(),
            UpdateWidgetService.class);
        intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, allWidgetIds);

        // Update the widgets via the service
        context.startService(intent);
      }

} 
结果不正确:问题1-->更新周期为3600000毫秒时,每秒调用一次更新服务!! 问题2-->一旦调用更新服务,“numberOfItems”将递增1!!即使我的应用程序中没有最新的项目,它的日期也是最新的!!
事实上,我不能指出逻辑错误!是否使用报警管理器的位置是问题所在???

只需使用
处理程序,请参见以下内容:

private int mSampleDurationTime = 3600000; // 1 hour
private boolean continueToRun = true;

Handler mHandler = new Handler();

mHandler.postDelayed(mRunnable, mSampleDurationTime);
其中
mRunnable
是您的任务:

private final Runnable mRunnable = new Runnable() {

 //...
public void run() {

   // do your stuff here, like update
   // this block of code you going to reach every 1 hour

   if(continueToRun == true){
    mHandler.postDelayed(mRunnable, mSampleDurationTime);
   }

 }
    ...
};
第一次调用
postDelayed
并调用
newrunnable()
。之后,如果你想继续,
将相同的方法调用到
run()

只需使用
Handler
,如下所示:

private int mSampleDurationTime = 3600000; // 1 hour
private boolean continueToRun = true;

Handler mHandler = new Handler();

mHandler.postDelayed(mRunnable, mSampleDurationTime);
其中
mRunnable
是您的任务:

private final Runnable mRunnable = new Runnable() {

 //...
public void run() {

   // do your stuff here, like update
   // this block of code you going to reach every 1 hour

   if(continueToRun == true){
    mHandler.postDelayed(mRunnable, mSampleDurationTime);
   }

 }
    ...
};
第一次调用
postDelayed
并调用
newrunnable()
。之后,如果你想继续, 将相同的方法调用到
run()

问题1-->每秒钟调用一次更新服务,而 更新周期为3600000毫秒

你确定吗

int updatePeriod=sp.getInt(“updatePeriod”,-1)

返回
3600000
?如果它返回
-1
,则表示您的
更新周期在调用服务之前已正确保存,并且
setRepeating
将每隔
cal.getTimeInMillis()
调用一次

问题2-->一旦调用更新服务,“numberOfItems”将递增1!!即使我的应用程序中没有最新的项目,它的日期也是最新的
试试这个

if(日期a.compareTo(日期b)
问题1-->每秒钟调用一次更新服务,而
更新周期为3600000毫秒

你确定吗

int updatePeriod=sp.getInt(“updatePeriod”,-1)

返回
3600000
?如果返回
-1
,则表示在调用服务之前已正确保存了
UpdatePeriod
,并且
setRepeating
将每隔
cal.getTimeInMillis()
调用一次

problem 2-->一旦更新服务被调用,则“numberOfItems”将递增一个!!即使我的应用程序中没有最新的项目,它的日期也是!!
试试这个


if(日期a.compareTo(日期b)在任何类中,我应该放这一部分代码吗?我如何使用这一代码更新小部件?您可以在主活动中或从服务中使用handler。handler就像计时器,您可以在任何类中的某个时间段后运行任何命令。我应该放这一部分代码吗?我如何使用这一代码更新小部件?您可以在中使用handlermain Activity或from Service.Handler类似于计时器,您可以在一段时间后从中运行任何命令Yes its-1…如何解决问题以测试报警管理器是否工作,您可以使用int updatePeriod=sp.getInt(“updatePeriod”,3600000);因此,如果UpdatePeriod首选项不存在,它将返回3600000yes its-1…如何解决问题以测试报警管理器是否工作,您可以使用int UpdatePeriod=sp.getInt(“UpdatePeriod”,3600000);因此,如果UpdatePeriod首选项不存在,它将返回3600000