だから私は3行を表示するポップアップウィンドウを構築しようとしています:-時間-インシデントタイプ-場所
次に、[OK](ポップアップを閉じる)と[地図に送信](これはGoogleマップに明示的なインテントを送信し、場所を送信します。このコードはまだ記述していません)の2つのボタンがあります。
奇妙な理由で、Eclipseで「AlertDialog.Builderを型に解決できません」というエラーが表示されます。正しくインポートし、何度もクリーニングしたと思います。どうすればいいのかわからない。ご協力いただきありがとうございます。
import android.R;
import android.app.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;
public class AlertDialog
{
public Dialog onCreateDialog(Bundle savedInstanceState)
{
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Time: " + SMSReceiver.getTime() + "\nIncident: " +
SMSReceiver.getCallType() + "\nLocation: " + SMSReceiver.getAddress())
.setPositiveButton(R.string.ok, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
}
})
.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
}
});
return builder.create();
}
}