Home | History | Annotate | Download | only in dreamtheater
      1 package com.android.dreamtheater;
      2 
      3 import android.app.Activity;
      4 import android.content.Intent;
      5 
      6 public class DreamTheaterActivity extends Activity {
      7     @Override
      8     public void onStart() {
      9         super.onStart();
     10 
     11         startActivity(Intent.createChooser(new Intent(Intent.ACTION_MAIN)
     12                     .addCategory("android.intent.category.DREAM"),
     13                 "Choose a screen saver:"));
     14         finish();
     15     }
     16 }
     17