Home | History | Annotate | Download | only in content
      1 package com.example.android.apis.content;
      2 
      3 import android.app.Activity;
      4 import android.os.Bundle;
      5 import android.view.Menu;
      6 
      7 //Need the following import to get access to the app resources, since this
      8 //class is in a sub-package.
      9 import com.example.android.apis.R;
     10 
     11 public class ProcessTextLauncher extends Activity {
     12 
     13     @Override
     14     protected void onCreate(Bundle savedInstanceState) {
     15         super.onCreate(savedInstanceState);
     16         setContentView(R.layout.process_text_send);
     17     }
     18 
     19     @Override
     20     public boolean onCreateOptionsMenu(Menu menu) {
     21         return false;
     22     }
     23 
     24 }
     25