0

In a widget I've to set two different actions, I've got a Widget.class and a WidgetConfig.class

onUpdate (then I will change the refresh rate from provider.xml) I've to call a function on WidgetConfig.class like WidgetConfig.routine(parameter1,parameter2)

On button_click I've to call another routine in WidgetConf.class like WidgetConf.routine2(parameter1,parameter2)

How could I call that routine from the widget Button?

Example: Every X time the widget autoupdates (change color by returned function value) Only on click the widget must call another function and then do an update

4

2 に答える 2

0

この投稿の私の回答に従って解決しました: 解決済み : Android ウィジェット - クリックしてアクション、30 分以内に更新、個別のインスタンス

呼び出された 2 つの異なる意図...

于 2013-04-05T19:16:16.300 に答える
0

それは非常に簡単ですブール変数を取り、uが呼び出すメソッドの1つにtrueまたはfalseを設定します。それがtrueの場合はmethod1を呼び出し、そうでない場合はmethod2を呼び出し、関数宣言の最後の値も変更します

于 2013-04-03T08:18:59.790 に答える