In my app I have ActionBar with tabs and I want to make tabs translucent, but not ActionBar. Is it possible to achive this via styles and themes?
Asked
Active
Viewed 223 times
1 Answers
0
You can use custom layout and inflate it to use it as tabs
Please find it here : https://stackoverflow.com/a/10013297/951045
and to hide actionbar use getSupportActionBar().hide(); // if you are using support lib otherwise use getActionBar().hide();
You can also hide actionbar by using Theme.Sherlock.NoActionBar (for support lib)

Community
- 1
- 1

techieWings
- 2,045
- 2
- 16
- 18