1

ボタンのあるTextViewerアクティビティがあり、それをクリックすると、AlertDialogとリストがポップアップ表示されます。このリンクをたどりましたが、機能しません(ポップアップなし)。文脈が間違っていると思います。次のコードを使用しました。

    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.resources);
    ImageButton btnlist = (ImageButton)findViewById(R.id.list);
    btnlist.setOnClickListener(new View.OnClickListener() {
             public void onClick (View v){                  

              if (Vars.bookchapter>1){
               final CharSequence[] items = {"Red", "Green", "Blue"};
               Context mContext = getBaseContext();
               AlertDialog.Builder builder = new AlertDialog.Builder(mContext);
               builder.setTitle("Pick a color");
               builder.setItems(items, new DialogInterface.OnClickListener() {
                   public void onClick(DialogInterface dialog, int item) {
                       Toast.makeText(getApplicationContext(), items[item], Toast.LENGTH_SHORT).show();
                   }
               });
               AlertDialog alert = builder.create();
              }else{
               //Nothing
              }
             }});         
     }
        }
4

1 に答える 1

5

show()メソッドを呼び出していません。これを行う:

AlertDialog alert = builder.create();
alert.show();
于 2010-07-01T17:36:31.053 に答える