Tinko
Tinko

Reputation: 502

Android - invisible ActionBar with back button

I know how to implment ActionBar with back button. But I want to make ActionBar invisible or with no background, I want to have only visible back button arrow. Is it possible?

Upvotes: 0

Views: 1772

Answers (1)

BOUTERBIAT Oualid
BOUTERBIAT Oualid

Reputation: 1544

With a little of search you will find the response. Any way you can try this :

ActionBar actionBar = getSupportActionBar();
actionBar.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#00000000")));

If you want to have your tab background below your ActionBar add this too :

actionBar.setStackedBackgroundDrawable(new ColorDrawable(Color.parseColor("#00000000")));

Upvotes: 1

Related Questions