Guest User

Untitled

a guest
Apr 19th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. @Override
  2. protected void onCreate(Bundle savedInstanceState) {
  3. super.onCreate(savedInstanceState);
  4. setContentView(R.layout.activity_tests_and_results);
  5.  
  6. trumpGothicEastBold = Typeface.createFromAsset(getAssets(), "fonts/trump_gothic_east_bold.ttf");
  7.  
  8. selectSat = (TextView)findViewById(R.id.select_sat);
  9. selectAct = (TextView)findViewById(R.id.select_act);
  10. caret = (ImageView)findViewById(R.id.caret);
  11. title = (TextView)findViewById(R.id.title_tests_and_results);
  12. line0 = findViewById(R.id.line0);
  13. networkRequests = new NetworkRequests(this);
  14. sharedPreferences = getSharedPreferences("UserData", Context.MODE_PRIVATE);
  15. editor = sharedPreferences.edit();
  16.  
  17.  
  18. Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
  19. setSupportActionBar(toolbar);
  20. getSupportActionBar().setDisplayShowTitleEnabled(false);
Add Comment
Please, Sign In to add comment