Home | History | Annotate | Download | only in app
      1 /*
      2  * Copyright (C) 2008 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 package com.example.android.apis.app;
     18 
     19 // Need the following import to get access to the app resources, since this
     20 // class is in a sub-package.
     21 import com.example.android.apis.R;
     22 
     23 import android.app.Activity;
     24 import android.os.Bundle;
     25 
     26 /**
     27  * <h3>Dialog Activity</h3>
     28  *
     29  * <p>This demonstrates the how to write an activity that looks like
     30  * a pop-up dialog with a custom theme using a different text color.</p>
     31  */
     32 public class CustomDialogActivity extends Activity {
     33     /**
     34      * Initialization of the Activity after it is first created.  Must at least
     35      * call {@link android.app.Activity#setContentView setContentView()} to
     36      * describe what is to be displayed in the screen.
     37      */
     38     @Override
     39 	protected void onCreate(Bundle savedInstanceState) {
     40         // Be sure to call the super class.
     41         super.onCreate(savedInstanceState);
     42 
     43         // See assets/res/any/layout/dialog_activity.xml for this
     44         // view layout definition, which is being set here as
     45         // the content of our screen.
     46         setContentView(R.layout.custom_dialog_activity);
     47     }
     48 }
     49