Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
1k views

Update android widget on condition

I'm just starting with android development and have written an application to show details about the battery status. Now I wanted to put the whole thing into an widget - and here's the question: Do I ...
3
votes
2answers
5k views

Force Android widget to update

I respond to a button press on my appwidget in the onreceive method. When the button I pressed, I want to force the widget to call the onupdate method. How do I accomplish this? Thanks in advance!
1
vote
0answers
147 views

Why is my widget not loading on Ice Cream Sandwich

So here is my WidgetProvider public class MessagesWidgetProvider extends AppWidgetProvider { public static final String EXTRA_WIDGET_MESSAGE = "widget_message"; public static final ...
1
vote
2answers
1k views

Android Widget Refresh

I have implemented a widget but have problems refreshing it. I get the initial onUpdate , and again if I leave it for ages. However I want changes in my main application to be automatically reflected ...
1
vote
1answer
583 views

Enabling field visibility from combo box selection in Access 2007

I have a form in Microsoft Access 2007 called System, and a combo box called Utility within this form. Below this is yet another combo box called Utility_FOO, and I have disabled its visibility by ...
1
vote
1answer
112 views

Is it possible to figure out if a specific field has been updated, in a Sql Server Trigger?

if i have a simple table and I want to do something (say .. execute a stored proc) when a field (and i know the field i wish to look at) has changed. Is this possible? Version: Sql Server 2008 R2. ...
0
votes
2answers
239 views

onUpgrade database Android version number not increasing

I am trying to update my database in my Android application. When I update the version number, onUpgrade gets called, but the version number doesn't increase, so every time I access the database, ...
0
votes
2answers
135 views

cakePHP - creating new user account, several problems

I have two tables, users and tokens. Each user have a activated field and each token have the {id, token, user_id, created} fields. The way the app should work is: On the creation, the app will - ...
0
votes
2answers
153 views

How test onUpdate method of my widget not waiting 30min

After 3 days learning widgets, I finally understand about setOnClickPendingIntent,RemoteViews... and I've done my widget. It has been done with help of a lot of tutorials. But now I'd like to test if ...
0
votes
1answer
464 views

Call widget's onUpdate method from the app's main activity

I'm working on an Android application which includes a widget. The main interface of the app is a simple activity, but some of the things users can do in the activity make it necessary to update the ...
0
votes
2answers
419 views

Just update a widget RemoteViews instead of completly creating a new one?

So in my onUpdate method in my AppWidgetProvider class, I ended up executing a non-trivial amount of code so that I can completely recreate a new RemoteViews object. The reality is I really only need ...
0
votes
0answers
75 views

Why Castle ActiveRecord's OnUpdate is called twice?

I have override OnUpdate and do some logging with it. But unfortunately it is called twice. Why such thing happens? How it could be corrected? Thanks in Advance UPDATE: I have extended ...
0
votes
1answer
196 views

Why Castle Active Record's `FindAllByProperty` calls `OnUpdate`?

When I call FindAllByProperty it calls OnUpdate in castle Active Record, This causes an stack overflow because I do some duplicating check on OnUpdate an instance. Consider following code. Why it ...
0
votes
2answers
293 views

NHibernate: why ILifecycle.OnUpdate is not called every time?

NHibernate_reference.pdf, page 26: Note that ILifecycle.OnUpdate() is not called every time the object's persistent state is updated. It is called only when a transient object is passed to ...
0
votes
2answers
635 views

Will MySQL InnoDB ON UPDATE CASCADE constraints update properly during a MySQL REPLACE command?

If I have table B with foreign key references to table A (set to ON UPDATE CASCADE) and I run a LOAD DATA INFILE file.txt REPLACE INTO TABLE A; command, will the references update properly? ...
0
votes
2answers
2k views

Get DataItem when updating GridView

How can I get the underlying DataItem from a GridView row that is in edit mode and the user clicks on "Update"? I have an editable GridView. I've added a CustomValidator to the Edit view of one of ...