Related questions
How to customize the width and height when show an Activity as a Dialog
If I have defined a Activity:
public class DialogActivity extends Activity{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(dialog_activity.xml);
}
}
I would like to display the above activity like a dialog, so in the AndroidManifest.xml …