Android :: Simple Calendar Widget Wont Update?
Nov 5, 2010
this works fine on my Droid X but on my wifes ALLY i cant get it to show new calendar entries for some reason? i hit refresh in top left corner after adding new event but it wont show up?
View 2 Replies
May 3, 2010
I started using Pure Calendar today and love it.here is a "Select Update Frequency" setting that can change from 6 hours to "When Calendar is Modified."I left mine on 6 hours to begin with, but I have noticed that when I modify my Exchange or my Google Calendar (on my phone OR on my computer), the Pure Calendar widget updates almost instantly.Anybody know why? Is it a bug in the Widget? Or is it supposed to update the Widget instantly despite being set to 6 hours?
View 4 Replies
View Related
Nov 18, 2009
now, when you press a date on the calendar, instead of a list of times of the day to imput event, you see event (if one is scheduled), Add event at top, and a weather widget for the specified day at the bottom. seems to be a week's worth of forecasts.that's all i've found so far, not bad for an incremental update
View 11 Replies
View Related
Oct 26, 2010
My calendar widget will not update to the current date. Right now it is showing that today is yesterday (which is when i placed the widget on my desktop). When I open the widget, the calendar shows the correct date, but on my desktop it doesn't.
View 8 Replies
View Related
Feb 10, 2010
Is there any calendar widget or app that closely resembles the HTC Calendar Widget?I'd like the full screen month view. Also, is there a slide-to-unlock app or screen to replace the default lock screen on 1.6?
View 3 Replies
View Related
Nov 12, 2010
I'm creating a android.text.format.Time Object from a java.util.Calendar Instance, and I read it out field by field.
View 1 Replies
View Related
Aug 24, 2010
Im looking for a digital clock widget that is just the clock. No weather or anything like that. Sounds simple enough? Well, the problem is, I find all these nice clocks but theyre all 1x2 or even 1x1. Im looking for something atleast 1x4. 2x4 is fine also. I like beautiful widgets but I dont want the weather.
View 11 Replies
View Related
Sep 23, 2010
Is there a widget that exists that will simply display the high and low temperatures for the previous day. And possibly also precipitation totals for the previous day, if any...
View 3 Replies
View Related
Jul 31, 2010
I'm looking for an extremely simple and non intrusive battery widget thing... like on the iPhone. I just want a percent showing battery life to the left of the battery on the top bar.
View 6 Replies
View Related
May 16, 2012
I'm looking for a replacement for the Motorola Blur Notes widget. I don't think this exists as an app, just a widget. Since updating to CM9, I have this 4x2 gaping hole where I used to be able to press and type, and what I typed would sit there. I don't want a text editor (I have a few), and I don't want a to-do list (don't need one). Just something to jot down notes on the home screen.
View 1 Replies
View Related
Jan 10, 2010
So the large calendar widget that I placed on my home screen used to show dark little tabs in the corner of everyday that I had an event. While I was looking through it, all of the little tabs disappeared and I have no idea what days I have events unless I go into the actual calendar app. Is there any way to keep them there permanently?
View 2 Replies
View Related
Sep 11, 2010
I played with the Fascinate today for more than an hour at VZW. I LOVE IT. My only question is related to the calendar. On my D1 I have many more widget choices including the calendar. This widget displays on my home screen and always shows my next appointment whether it is today or in a week. The next calender entry always shows. This is not the case for the Fascinate. It has a nice widget that shows weather, stocks, and at the bottom appointments. It only shows today's appointments. I downloaded a calender widget app that was nice and may work but it would not open so I don't know.
Now the question: Can any of you guys with the fascinate comment on a widget that allows the widget to display the next entry on the calendar. To be clear on my D1, if I have no calendar entries for today, my 10am meeting tomorrow shows up on the widget with a time and date. Can one do this with the Fascinate.
View 15 Replies
View Related
May 3, 2010
I have a question about the Calendar widget (the HTC one). I want to use the smaller of the widgets since I don't want the calendar to take up a full screen.
Is there any way to see more than one appointment without opening up the full calendar? You would think if you have multiple appointments in a day that you'd be able to flip through them from the widget, but you can't from what I can tell.
View 1 Replies
View Related
Mar 20, 2012
I am using ICS with Nova Launcher.I miss the old bookmark widget in Launcher Pro Plus, I used it in text only mode with a transparent skin and it looked good.
The bookmark widget that comes in ICS is ok but I want something with just a scrollable list of the bookmark names. I have looked at a few different apps on the market and they are mostly thumbnails of the webpage.
View 1 Replies
View Related
Aug 25, 2010
I'm new to Android so have probably missed something. I'm running a Droid X and looking for a simple way to get a snapshot reading of the battery (% charge mostly). I haven't found it yet on the standard phone, and the battery widgets from the marketplace do far more than I'm looking for and seem to have the side effect of draining the battery anyway.
View 7 Replies
View Related
Jul 30, 2010
Anyone know of a simple 1X1 widget that will show me the phones temperature in Fahrenheit?
I use my Dinc a lot in the car for hours at a time using GPS, Pandora and maybe other apps. Running all of them can really heat up the phone so I like to keep an eye on it. I can see the temp if I pull the notification bar down using Battery Indicator but I'd like to be able to watch this with just a glance
View 2 Replies
View Related
May 5, 2009
I am creating a simple application of database... I am first time using it.. I tried sample program, But it has lot of errors... Can any one tell me how can write simple INSERT DELETE UPDATE quries...?ans also Is there any settings for the database in eclipse...?
View 2 Replies
View Related
Dec 21, 2012
I'm only finding what i'd call "big apps" when i search. I just want a widget to enable or disable incoming private calls.
View 1 Replies
View Related
May 1, 2010
I can create a static widget without thinking, I can even create a widget like the analogue clock widget that will update itself, however, I can not for the life of me figure out how to create a widget that reacts to when a user clicks on it. Here is the best code sample that the developer documentation gives to what a widget activity should contain (the only other hint being the API demos, which only creates a static widget):
public class ExampleAppWidgetProvider extends AppWidgetProvider {
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
final int N = appWidgetIds.length;
// Perform this loop procedure for each App Widget that belongs to this provider
for (int i=0; i<N; i++) {
int appWidgetId = appWidgetIds[i];
// Create an Intent to launch ExampleActivity
Intent intent = new Intent(context, ExampleActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
// Get the layout for the App Widget and attach an on-click listener to the button
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.appwidget_provider_layout);
views.setOnClickPendingIntent(R.id.button, pendingIntent);................
View 2 Replies
View Related
Sep 10, 2010
I've been looking for an agenda tool/widget for my Android phone. I've narrowed it down to these two (PLEASE don't post suggesting other alternatives!! And note that I don't mean the Pure Grid version!). I've been searching for half an hour, but I can not find anything that compares these 2 apps or shows any diffs between them. The best I've seen is comments like " beats hands down", with no explanation as to WHY.As far as I can see, for my purposes (using Google Calendar & Astrid), the only difference between the 2 is the PRICE! Both come in numerous widget sizes, both integrate with Astrid & Google, both are scrollable, both are skinnable. So why choose one over the other? (Or, really, why choose Pure Calendar over Android Agenda, given that the latter is free?) I wish I could just test both out but the Pure widget series has no demos
View 3 Replies
View Related
Mar 15, 2010
I haven't found one yet. Looking for something that is similar to HTC's calendar widget (not the full one, the 1x4 that just shows your events for 1 day) that will show what I have scheduled for the current day.
View 7 Replies
View Related
May 6, 2009
I have a new firmware 1.5. I am looking forward to the calendar widget. But it is pretty bad, because it shows only one of the following event. Is there any other calendar widget?
View 2 Replies
View Related
Feb 13, 2010
I'm looking for a Calendar Widget. I don't like the stock one that much. I've heard a lot about Beautiful Calendar, but I don't see it in the Market. Is it not available for 1.5? I'm also in Canada, and I can't seem to see any paid apps. Anyone know a great one that will work with 1.5?
View 5 Replies
View Related
Nov 20, 2010
I just got LauncherPro plus and i need a free weather widget that is simple and "elegant" ( i am a girl) to go with the look i am trying to achieve on my phone.. I'm new to all the apps and stuff.. i've had my phone since feb and i never really got into really personalizing my UI layout.
View 4 Replies
View Related
May 27, 2010
I am looking for a calendar UI. Something like the Calendar UI of the Calendar Android Application but only with the view. (I know that's open source so I can extract the UI but it's a long process to remove all the staff unnecessary) Is there any open source Calendar UI project for android ?
View 2 Replies
View Related
Mar 9, 2010
I am the Pure calendar developer.Pure calendar widget can show on your home screen all your Google calendar informations and even tasks from Astrid or gTasks.From the widget, you can open official applications (Google calendar, Moto Corporate calendar, Astrid, gTasks), add events or tasks.You have a lot of widget sizes available from 2x2 to 4x4.It is fully skinnable to fit your Home screen design.
View 49 Replies
View Related
Feb 11, 2010
I was wondering how I can get my Pure Calendar Widget.
View 3 Replies
View Related
Sep 28, 2010
I don't know if any of you use this already, but this is the most useful calendar app I've ever used. I can see this easily adapting to an Android widget, and think it would be very useful to many.
iCalViewer home page | Mac iCal calendar events and to do's on your desktop
It uses a timeline in order to see upcoming events. The vertical line is "now", and events in your calendar move across the screen towards the line the closer the events come to happening.
I already use this on my Mac, and would freaking LOVE it if someone stepped up to make something similar for Android.
View 1 Replies
View Related
Mar 15, 2010
I just noticed that Reqall is a calendar option within Pure Calendar Widget. Anyone know how this works? I'm a user of Reqall and have been waiting patiently for them to develop an Android application.
View 1 Replies
View Related
Oct 15, 2009
This is in reference to the one that comes with the phone. I like it because you can select a single calendar to show events from. I sync 8 calendars on the account I have my phone associated with but only want to see events from one or two on a widget. This widget seemed to answer that issue however anytime the phone is turned off and back on all that shows is the widget background with no data. If I delete and re-add the widget everything is back to good.
View 1 Replies
View Related