ウィジェット(AppWidgetProvider)からのテキストビューでポップアップウィンドウを作成したいのですが、下部の[更新]と[閉じる]に2つのボタンが必要です。AlertDialogを使用してみましたが、ウィジェットがクラッシュします。
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setMessage("Sample text")
.setCancelable(false)
.setPositiveButton("Update", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
CallUpdate(context);
}
})
.setNegativeButton("Close", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
builder.show();
スパンテキストを使用できるようにしたい。
ありがとう。