発生している問題・エラーメッセージ
エラーは出ていません。
javaソースコード
package com.example.kankyousettei; import android.os.Bundle; import android.app.Activity; import android.view.Menu; import android.view.View; import android.app.AlertDialog; import android.content.DialogInterface; import android.widget.*; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.setteigamen); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.option, menu); return true; } public void JPEG_click(View view) { /* AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setTitle("ダイアログのタイトル"); builder.setMessage("ダイアログのメッセージ"); AlertDialog dialog = builder.create(); dialog.show(); */ AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setTitle("ダイアログのタイトル"); builder.setMessage("ダイアログのメッセージ"); builder.setPositiveButton("YES", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { // TODO Auto-generated method stub TextView textView2 = (TextView) findViewById(R.id.textView2); textView2.setText("YESボタンが押されました。"); } }); builder.setNegativeButton("NO", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { // TODO Auto-generated method stub TextView textView2 = (TextView) findViewById(R.id.textView2); textView2.setText("NOボタンが押されました。"); } }); builder.setNeutralButton("Cancel", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { // TODO Auto-generated method stub TextView textView2 = (TextView) findViewById(R.id.textView2); textView2.setText("Cancelボタンが押されました。"); } }); AlertDialog dialog = builder.create(); dialog.show(); } }
XMLソースコード
<TextView android:id="@+id/JPEG" android:layout_width="139dp" android:layout_height="42dp" android:layout_below="@+id/保存設定" android:layout_marginStart="122dp" android:layout_marginLeft="122dp" android:layout_marginTop="39dp" android:layout_toEndOf="@+id/画像サイズ" android:layout_toRightOf="@+id/画像サイズ" android:clickable="true" android:onClick="onkeishikitogashitsu" android:text="@string/jpeg" android:textSize="18sp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.921" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintVertical_bias="0.333" android:focusable="true" tools:ignore="OnClick" />