Skip to content

Instantly share code, notes, and snippets.

@joeykrim
joeykrim / WhatsNewDialog.java
Created August 27, 2012 10:30 — forked from koush/poop.java
Whats New Dialog with Follow on Twitter Button
//Credits:
//http://www.helloandroid.com/tutorials/how-display-custom-dialog-your-android-application
//https://gist.github.com/3087486
private void whatsNewDialog() {
//requestWindowFeature(Window.FEATURE_NO_TITLE);
//Dialog dialog = new Dialog(main.this);
final Dialog dialog = new Dialog(this, R.style.NoTitleDialog);
dialog.setContentView(R.layout.whatsnew);
//dialog.setTitle(getString(R.string.app_name) + " v" + currentAppVersion);
dialog.setCancelable(false);