Skip to content

Instantly share code, notes, and snippets.

@skatldjs
Created September 9, 2010 03:58
Show Gist options
  • Select an option

  • Save skatldjs/571345 to your computer and use it in GitHub Desktop.

Select an option

Save skatldjs/571345 to your computer and use it in GitHub Desktop.
Context mContext = getApplicationContext();
Dialog dialog = new Dialog(mContext);
dialog.setContentView(R.layout.custom_dialog);
dialog.setTitle("커스텀 다이얼로그");
TextView text = (TextView) dialog.findViewById(R.id.text);
text.setText("Hello, this is a custom dialog!");
ImageView image = (ImageView) dialog.findViewById(R.id.image);
image.setImageResource(R.drawable.icon);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment