Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. @SuppressLint("SimpleDateFormat") public class Startbildschirm extends ActionBarActivity
  2. {
  3.  
  4.  
  5. final int PIC_CROP = 2;
  6. //private Uri picUri;
  7. static final int REQUEST_TAKE_PHOTO = 1;
  8.  
  9. @Override
  10. protected void onCreate(Bundle savedInstanceState)
  11. {
  12. super.onCreate(savedInstanceState);
  13. setContentView(R.layout.activity_startbildschirm);
  14. System.loadLibrary( Core.NATIVE_LIBRARY_NAME );
  15. }
  16.  
  17.  
  18. @Override
  19. public boolean onCreateOptionsMenu(Menu menu)
  20. {
  21. // Inflate the menu; this adds items to the action bar if it is present.
  22. getMenuInflater().inflate(R.menu.startbildschirm, menu);
  23. return true;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement