Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. android.support.v7.app.ActionBar actionBar = getSupportActionBar();
  2. actionBar.setBackgroundDrawable(new ColorDrawable(getColor(R.color.colorVelocity))); **//<<Error NullPointerException**
  3.  
  4. android.support.v7.app.ActionBar actionBar = getSupportActionBar();
  5. if (actionBar != null) {
  6. actionBar.setBackgroundDrawable(new ColorDrawable(getColor(R.color.colorVelocity)));
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement