Skip to content

Instantly share code, notes, and snippets.

@bkurzius
Last active August 29, 2015 14:19
Show Gist options
  • Save bkurzius/bc77bda168b1b3ab08e3 to your computer and use it in GitHub Desktop.
Save bkurzius/bc77bda168b1b3ab08e3 to your computer and use it in GitHub Desktop.
Android Custom Dialog
final Dialog dialog = new Dialog(this);
// remove the title
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
// set the layout
dialog.setContentView(R.layout.dialog_series_info);
// do whatever you need to with the data
TextView title = (TextView)dialog.findViewById(R.id.series_title);
title.setText(mSeriesTitle);
dialog.show();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment