0

コードにアラートダイアログボックスがあり、そのダイアログでキャンセルボタンが押されたときに、変数に値を割り当てたいと考えています。

私の実際のコードは-

private void clicked() {
    AlertDialog.Builder builder = new AlertDialog.Builder(Feedback.this);
    builder.setTitle("FEEDBACK");
    builder.setSingleChoiceItems(options, -1,
            new DialogInterface.OnClickListener() {

                public void onClick(DialogInterface dialog, int which) {
                    // TODO Auto-generated method stub
                    switch (which) {
                    case 0:
                        String url = "http://killmathsapp.blogspot.in/";
                        Intent i = new Intent(Intent.ACTION_VIEW);
                        i.setData(Uri.parse(url));
                        startActivity(i);
                        break;

                    case 1:
                        Intent s = new Intent(Intent.ACTION_SEND);
                        s.setType("plain/text");
                        s.putExtra(android.content.Intent.EXTRA_EMAIL,
                                new String[] { "pankaj_88_88@yahoo.com" });
                        s.putExtra(android.content.Intent.EXTRA_SUBJECT,
                                "feedback from app");
                        startActivity(s);
                        break;

                    }

                }
            });
    AlertDialog alert = builder.create();
    alert.setCancelable(true);
    alert.show();
}
4

3 に答える 3

1

ダイアログボックスのアラートメッセージの非常に簡単な方法...

       public void onClick(View v) 
        {
            if(somthing_wrong)
                          {
           Dialog d=new Dialog(AmitregistrationActivity.this);
           d.setContentView(R.layout.detail);
           d.setTitle("Warning....");
           d.show();
                  }
                else{
                  //Code that you want to execute 
                       }
             }

また、このようなdetail.xmlファイルを作成する必要があります

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:src="@drawable/detail" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_marginLeft="26dp"
    android:layout_marginTop="15dp"
    android:layout_toRightOf="@+id/imageView1"
    android:text="Please fill all Details..." android:textSize="20dp"/>
于 2012-06-02T09:22:26.503 に答える
0
AlertDialog.Builder alert=new AlertDialog.Builder(this);
        alert.setTitle("FeedBack");
        alert.setNegativeButton("No",
                new DialogInterface.OnClickListener() {

                    @Override
                    public void onClick(DialogInterface dialog,
                            int which) {
                        // TODO Auto-generated method stub
                       dialog.dismiss();
                    //do Set variable here or any other code    
                    }
                });
        alert.setPositiveButton("Yes",
                new DialogInterface.OnClickListener() {

                    @Override
                    public void onClick(DialogInterface dialog,
                            int which) {
                    //do Set variable here or any other code    
                    }
                }).show();
于 2012-04-09T04:12:07.383 に答える