Advertisement
Guest User

Untitled

a guest
Mar 4th, 2013
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         ActionBar actionBar = getSupportActionBar();
  2.         // actionBar.setHomeButtonEnabled(true);
  3.         actionBar.setDisplayHomeAsUpEnabled(true);
  4.  
  5.         // Set Title
  6.         // actionBar.setTitle(name);
  7.  
  8.         actionBar.setDisplayShowCustomEnabled(true);
  9.         // actionBar.setHomeButtonEnabled(true);
  10.         actionBar.setDisplayShowTitleEnabled(false);
  11.         TextView title = new TextView(getApplicationContext());
  12.         title.setText(name);
  13.         title.setTextColor(Color.WHITE);
  14.         title.setTextSize(TypedValue.COMPLEX_UNIT_SP, 18);
  15.         title.setGravity(Gravity.LEFT | Gravity.CENTER_VERTICAL);
  16.         actionBar.setCustomView(title);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement