FileDocCategorySizeDatePackage
CustomDialogActivity.javaAPI DocAndroid 1.5 API1717Wed May 06 22:41:08 BST 2009com.example.android.apis.app

CustomDialogActivity

public class CustomDialogActivity extends android.app.Activity

Dialog Activity

This demonstrates the how to write an activity that looks like a pop-up dialog with a custom theme using a different text color.

Fields Summary
Constructors Summary
Methods Summary
protected voidonCreate(android.os.Bundle savedInstanceState)
Initialization of the Activity after it is first created. Must at least call {@link android.app.Activity#setContentView setContentView()} to describe what is to be displayed in the screen.

        // Be sure to call the super class.
        super.onCreate(savedInstanceState);
        
        // See assets/res/any/layout/dialog_activity.xml for this
        // view layout definition, which is being set here as
        // the content of our screen.
        setContentView(R.layout.custom_dialog_activity);