Advertisement
minafaw3

MainActivity Parse

Dec 27th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. /*
  2. * Copyright (c) 2015-present, Parse, LLC.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the BSD-style license found in the
  6. * LICENSE file in the root directory of this source tree. An additional grant
  7. * of patent rights can be found in the PATENTS file in the same directory.
  8. */
  9. package com.parse.starter;
  10.  
  11. import android.os.Bundle;
  12. import android.support.v7.app.ActionBarActivity;
  13. import android.view.Menu;
  14. import android.view.MenuItem;
  15.  
  16. import com.parse.ParseAnalytics;
  17.  
  18.  
  19. public class MainActivity extends ActionBarActivity {
  20.  
  21. @Override
  22. protected void onCreate(Bundle savedInstanceState) {
  23. super.onCreate(savedInstanceState);
  24. setContentView(R.layout.activity_main);
  25.  
  26. ParseAnalytics.trackAppOpenedInBackground(getIntent());
  27. }
  28.  
  29. @Override
  30. public boolean onCreateOptionsMenu(Menu menu) {
  31. // Inflate the menu; this adds items to the action bar if it is present.
  32. getMenuInflater().inflate(R.menu.menu_main, menu);
  33. return true;
  34. }
  35.  
  36. @Override
  37. public boolean onOptionsItemSelected(MenuItem item) {
  38. // Handle action bar item clicks here. The action bar will
  39. // automatically handle clicks on the Home/Up button, so long
  40. // as you specify a parent activity in AndroidManifest.xml.
  41. int id = item.getItemId();
  42.  
  43. //noinspection SimplifiableIfStatement
  44. if (id == R.id.action_settings) {
  45. return true;
  46. }
  47.  
  48. return super.onOptionsItemSelected(item);
  49. }
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement