document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package osvaldo.poderoso;
  2.  
  3. import android.app.Activity;
  4. import android.os.Bundle;
  5. import android.view.Window;
  6.  
  7. public class BotonHola extends Activity {
  8.  
  9.     public void onCreate(Bundle savedInstanceState) {
  10.         super.onCreate(savedInstanceState);
  11.         getWindow().requestFeature(Window.FEATURE_NO_TITLE);
  12.  
  13.         setContentView(R.layout.hola);
  14.     }
  15.    
  16. }
');