3

ダイアログに ImageView を表示しようとしています。いくつかの例に従いましたが、ダイアログを開くとアプリが閉じるため、どれも機能していないようです。

<ImageView android:id="@+id/image"
           android:contentDescription="@string/desc1"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content" />

これは私の MainActivity にあるものです

button1.setOnLongClickListener(new OnLongClickListener()
    {
        public boolean onLongClick(View v)
        {
            AlertDialog dialog = new AlertDialog.Builder(MainActivity.this).create();

            dialog.setTitle("Title");
            ImageView img = (ImageView) findViewById(R.id.image);
            img.setImageResource(R.drawable.dust);
            dialog.setView(img);

            dialog.show();
            return false;

        }


    });

}

この新しいコードを使用して、画像を含むダイアログを表示でき、画像を回転させることもできました

   button1.setOnLongClickListener(new OnLongClickListener()
    {
        public boolean onLongClick(View v)
        {
            Dialog dialog = new Dialog(MainActivity.this);
            LayoutInflater inflater = LayoutInflater.from(MainActivity.this);


            RotateAnimation anim = new RotateAnimation(0f, 360f, 200f, 200f);
            anim.setInterpolator(new LinearInterpolator());
            anim.setRepeatCount(Animation.INFINITE);
            anim.setDuration(10000);

            dialog.setTitle("You have found the easter egg!");
            View view = inflater.inflate(R.layout.activity_main2, null);
            dialog.setContentView(view);
            view.startAnimation(anim);

            dialog.show();
            return false;

        }


    });

}
4

2 に答える 2

3

カスタム ダイアログに AlertDialog を使用しないでください。通常の Dialog クラスを使用し、それは setContentView() メソッドです。または、DialogFragment を使用できます。

UPD: AlertDialog には setView() メソッドがあると言われました。あなたはそれを試すことができます。

于 2012-09-04T12:05:25.327 に答える
2
when I open the dialog the app closes. 

ダイアログImageView imgnullであるため

ImageView img = (ImageView) dialog.findViewById(R.id.image); // <--- img is not visible through dialog..
img.setImageResource(R.drawable.dust); // <--- this line throw exception

このようにコードを変更するだけで、

AlertDialog dialog = new AlertDialog.Builder(MainActivity.this).create();
LayoutInflater inflater = LayoutInflater.from(MainActivity.this);
dialog.setTitle("Title");
View view = inflater.inflate(R.layout.<xml_image>, null); // xml Layout file for imageView
ImageView img = (ImageView) view.findViewById(R.id.image);
img.setImageResource(R.drawable.dust);
dialog.setView(view);
dialog.show();
于 2012-09-04T12:14:08.473 に答える