
ðąAndroid Studio Part 22 : Image DialogBox
Channel:
Subscribers:
330
Published on ● Video Link: https://www.youtube.com/watch?v=IAxi53Jy_YQ
#androidstudio #android
āļāļēāļĢāļŠāļĢāđāļēāļ DialogBox āļāļąāđāļ§āđāļ
== Code Example ==
AlertDialog.Builder x = new AlertDialog.Builder(MainActivity.this);
x.setTitle("test");
ImageView imageView = new ImageView(MainActivity.this);
imageView.setImageResource(R.drawable.raven);
x.setPositiveButton("Okay", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
});
x.setView(imageView);
x.show();
Other Videos By Ikapayabaht
Tags:
āđāļāļāļāļĢāļāļĒāļāđ
android
android studio