Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1097913
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T00:30:08+00:00 2026-05-17T00:30:08+00:00

I have a Widget i am working on, that allows the user to have

  • 0

I have a Widget i am working on, that allows the user to have more then one instance of the widget on his screen. Each Widget id maintains its own configuration file. However for some odd reason my code that is responsible for setting up the buttons individually for each widget id is not working, only the first widget id is linked to each individual widget. below is the code that is responsible. Can anyone see where the problem is?

private void TieClicks(Context context){
  RemoteViews rViews;
  PendingIntent editPendingIntent= null;

//  Intent updateintent = new Intent(context,SyncNoteWidget.class);
//  updateintent.setAction(SyncNote_Action_Widget_Update);
//  PendingIntent pendingupdateintent = PendingIntent.getBroadcast(context, 0, updateintent, 0);
//  rViews.setOnClickPendingIntent(R.id.widgettextview , pendingupdateintent);
//  
  AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
  int[] ids = appWidgetManager.getAppWidgetIds(new ComponentName(context, SyncNoteWidget.class));
  for (int i =0;i< ids.length;i=i+1){
   int wId = ids[i];
   rViews = new RemoteViews(context.getPackageName(),R.layout.widget);

   editPendingIntent = makeControlPendingIntentActivity(context, wId);
   Log.v("syncnote", "tieing " + String.valueOf(wId));
   rViews.setOnClickPendingIntent(R.id.widgeteditbutton , editPendingIntent);
   appWidgetManager.updateAppWidget(wId, rViews);

   editPendingIntent= null;

  }
 }
 private PendingIntent makeControlPendingIntentActivity(Context context,int appWidgetId) {

     Intent active = new Intent(context, EditNote.class);
     active.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK );
     active.setAction(com.ntu.way2fungames.syncnote.SyncNoteWidget.SyncNote_Action_Edit); 
     active.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
     return(PendingIntent.getActivity(context, 0, active, 0 ));
    }
  • 1 1 Answer
  • 2 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T00:30:08+00:00Added an answer on May 17, 2026 at 12:30 am

    The problem was that for some reason “PendingIntent.getActivity” was re-using the first PendingIntent.. God knows why. The fix is below, simply add some random data to the call.

    private PendingIntent makeControlPendingIntentActivity(Context context,int appWidgetId) {
            Intent active = null;
            active = new Intent(context, EditNote.class);
            active.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK );
            active.addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK );
            active.setAction(com.ntu.way2fungames.syncnote.SyncNoteWidget.SyncNote_Action_Edit); 
            active.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
            PendingIntent pi =PendingIntent.getActivity(context,(int)(Math.random()*10000), active, 0 );
            Log.v("syncnote", "PI: "+pi.toString());
            return(pi);
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Gallery widget that allows a user to select from a variety
I have made a widget that is working fine on its part and also
I have a widget with a prefs activity. In that activity the user is
I have a widget that acts as a launcher on the home screen. How
I'm have a widget that is being updated from a service. When the user
I have a database that allows the user to query for books in the
I have a widget that will tell the user the capacity of a connected
I have a code base that has a working widget. The basic structure of
I have a widget that sits within a stacked widget and is used to
I have a widget that is a part of my main app. Usually when

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.