0

以前の返信に感謝します。私はウィジェットでアプリケーションを実行しています。私の考えは、ウィジェットをクリックするとアクティビティを開くことです。このコードを使用してアクティビティを取得しました

try {
    WidgetActivity.Widget.onUpdate(context, appWidgetManager, appWidgetIds);
    Toast.makeText(context, "Update Widget", Toast.LENGTH_SHORT).show();
} catch (Exception e) {
    e.toString();
}
Intent myIntent = new Intent(context, Test.class);
startActivity(myIntent);

しかし、強制終了エラーが発生しています。私はウィジェットの概念が初めてです。開始アクティビティ メソッドを呼び出す場所がわかりません。Plsは私を案内します

4

1 に答える 1

1

Have a look at the documentation for AppWidgets. Specifically the part where onUpdate() is discussed, as the example shows how to call an Activity from the widget.

于 2012-10-15T12:42:12.010 に答える