Last active
August 29, 2015 14:19
-
-
Save bkurzius/bc77bda168b1b3ab08e3 to your computer and use it in GitHub Desktop.
Android Custom Dialog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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