SlideShare a Scribd company logo
ToolBar In Android Example
● Toolbar is a view introduced in Android Lollipop(API 21)
the spiritual successor of the ActionBar(Actionbar is
replaced with Toolbar)
● Appearance and behaviour can be more easily
customized than the ActionBar.
● Works well with app’s targeted to API 21 and above.
● Android has updated the AppCompat support libraries
so the Toolbar can be used on lower Android OS
devices as well.
Toolbar Advantages
● Toolbar is a View included in a layout like any
other View
● As a regular View, the toolbar is easier to
position, animate and control
Using Toolbar as Action-Bar
● To use Toolbar as an ActionBar, first ensure the AppCompat-
v7 support library is added to your application
build.gradle (Module:app) file:
● dependencies {
compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:design:25.2.0'
}
disable the theme-provided
ActionBar
● res/styles.xml file:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>
Now add a Toolbar to your Activity
in layout file
● <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android">
<android.support.v7.widget.Toolbar
android:id="@+id/tb_toolbarmain"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimaryDark"
>
</android.support.v7.widget.Toolbar>
<View
android:layout_width="match_parent"
android:layout_height="10dp"
android:background="@drawable/toolbar_dropshadow" />
</LinearLayout>
Toolbarexample

More Related Content

Viewers also liked (17)

PPTX
Exception handling in java
yugandhar vadlamudi
 
PDF
Java quick reference v2
Christopher Akinlade
 
PPTX
Core java online training
Glory IT Technologies Pvt. Ltd.
 
PPT
09events
Waheed Warraich
 
PDF
Java Basic Operators
Shahid Rasheed
 
DOC
Non ieee java projects list
Mumbai Academisc
 
ODP
Singleton pattern
yugandhar vadlamudi
 
PPSX
DIWE - Using Extensions and Image Manipulation
Rasan Samarasinghe
 
PPSX
DIWE - Multimedia Technologies
Rasan Samarasinghe
 
PDF
Yaazli International Java Training
Arjun Sridhar U R
 
PPT
java swing
Waheed Warraich
 
PPTX
Java notes 1 - operators control-flow
Mohammed Sikander
 
DOC
Short definitions of all testing types
Garuda Trainings
 
DOCX
Loadrunner interview questions and answers
Garuda Trainings
 
PDF
9-java language basics part3
Amr Elghadban (AmrAngry)
 
PDF
SAP BI 7.0 Info Providers
Garuda Trainings
 
Exception handling in java
yugandhar vadlamudi
 
Java quick reference v2
Christopher Akinlade
 
Core java online training
Glory IT Technologies Pvt. Ltd.
 
09events
Waheed Warraich
 
Java Basic Operators
Shahid Rasheed
 
Non ieee java projects list
Mumbai Academisc
 
Singleton pattern
yugandhar vadlamudi
 
DIWE - Using Extensions and Image Manipulation
Rasan Samarasinghe
 
DIWE - Multimedia Technologies
Rasan Samarasinghe
 
Yaazli International Java Training
Arjun Sridhar U R
 
java swing
Waheed Warraich
 
Java notes 1 - operators control-flow
Mohammed Sikander
 
Short definitions of all testing types
Garuda Trainings
 
Loadrunner interview questions and answers
Garuda Trainings
 
9-java language basics part3
Amr Elghadban (AmrAngry)
 
SAP BI 7.0 Info Providers
Garuda Trainings
 

Similar to Toolbarexample (20)

PPTX
Intro to AngularJS
Sparkhound Inc.
 
PDF
A Comprehensive Guide of Flutter AppBar Widget.pdf
getwidget
 
PDF
Android app material design from dev's perspective
DeSmart Agile Software House
 
PPTX
ActionBarCompat Tutorial-Part 1(Prepare and Setup)
Haining Lee
 
PDF
Mobile Programming - 8 Progress Bar, Draggable Music Knob, Timer
AndiNurkholis1
 
PDF
What are The Top Features of Angular 7?
NCode Technologies, Inc.
 
PDF
Android for Cars App Library design guidelines.pdf
MarceloTinoco5
 
PPTX
Top Features Of Angular 13 You Must Know
simonedaniels3
 
PPTX
Material design Android L
uzair khan
 
PDF
The Action Bar: Front to Back
CommonsWare
 
PPTX
What’s New in Angular 15.pptx
Albiorix Technology
 
PPTX
Presentation on octobercms
Ramesh Adhikari
 
PDF
Dagger for android
Kan-Han (John) Lu
 
PPTX
Unit 2 part for information technology1 4.pptx
shambelworku8
 
PDF
Material Theme
Anuchit Chalothorn
 
PPTX
Best practices: embedding interactive reports & visualizations in your app
TIBCO Jaspersoft
 
PPTX
Android ui with xml
Egerton University
 
PDF
Progressive Web Application by Citytech
Ritwik Das
 
PDF
How To Build and Deploy Android App Bundles.pdf
RipenApps Technologies Pvt. Ltd.
 
PDF
Innovation Generation - The Mobile Meetup: Android Best Practices
Solstice Mobile Argentina
 
Intro to AngularJS
Sparkhound Inc.
 
A Comprehensive Guide of Flutter AppBar Widget.pdf
getwidget
 
Android app material design from dev's perspective
DeSmart Agile Software House
 
ActionBarCompat Tutorial-Part 1(Prepare and Setup)
Haining Lee
 
Mobile Programming - 8 Progress Bar, Draggable Music Knob, Timer
AndiNurkholis1
 
What are The Top Features of Angular 7?
NCode Technologies, Inc.
 
Android for Cars App Library design guidelines.pdf
MarceloTinoco5
 
Top Features Of Angular 13 You Must Know
simonedaniels3
 
Material design Android L
uzair khan
 
The Action Bar: Front to Back
CommonsWare
 
What’s New in Angular 15.pptx
Albiorix Technology
 
Presentation on octobercms
Ramesh Adhikari
 
Dagger for android
Kan-Han (John) Lu
 
Unit 2 part for information technology1 4.pptx
shambelworku8
 
Material Theme
Anuchit Chalothorn
 
Best practices: embedding interactive reports & visualizations in your app
TIBCO Jaspersoft
 
Android ui with xml
Egerton University
 
Progressive Web Application by Citytech
Ritwik Das
 
How To Build and Deploy Android App Bundles.pdf
RipenApps Technologies Pvt. Ltd.
 
Innovation Generation - The Mobile Meetup: Android Best Practices
Solstice Mobile Argentina
 
Ad

More from yugandhar vadlamudi (13)

PPT
Object Relational model for SQLIite in android
yugandhar vadlamudi
 
DOCX
JButton in Java Swing example
yugandhar vadlamudi
 
PPTX
Collections framework in java
yugandhar vadlamudi
 
PPTX
Packaes & interfaces
yugandhar vadlamudi
 
DOCX
JMenu Creation in Java Swing
yugandhar vadlamudi
 
DOCX
Adding a action listener to button
yugandhar vadlamudi
 
PPTX
Dynamic method dispatch
yugandhar vadlamudi
 
PPTX
Operators in java
yugandhar vadlamudi
 
PPTX
Inheritance
yugandhar vadlamudi
 
PPTX
Control flow statements in java
yugandhar vadlamudi
 
PPTX
Closer look at classes
yugandhar vadlamudi
 
PPTX
java Applet Introduction
yugandhar vadlamudi
 
PPTX
Class introduction in java
yugandhar vadlamudi
 
Object Relational model for SQLIite in android
yugandhar vadlamudi
 
JButton in Java Swing example
yugandhar vadlamudi
 
Collections framework in java
yugandhar vadlamudi
 
Packaes & interfaces
yugandhar vadlamudi
 
JMenu Creation in Java Swing
yugandhar vadlamudi
 
Adding a action listener to button
yugandhar vadlamudi
 
Dynamic method dispatch
yugandhar vadlamudi
 
Operators in java
yugandhar vadlamudi
 
Inheritance
yugandhar vadlamudi
 
Control flow statements in java
yugandhar vadlamudi
 
Closer look at classes
yugandhar vadlamudi
 
java Applet Introduction
yugandhar vadlamudi
 
Class introduction in java
yugandhar vadlamudi
 
Ad

Recently uploaded (20)

PDF
Tips for Writing the Research Title with Examples
Thelma Villaflores
 
PPTX
K-Circle-Weekly-Quiz12121212-May2025.pptx
Pankaj Rodey
 
PPTX
The Future of Artificial Intelligence Opportunities and Risks Ahead
vaghelajayendra784
 
PPTX
Applications of matrices In Real Life_20250724_091307_0000.pptx
gehlotkrish03
 
PPTX
LDP-2 UNIT 4 Presentation for practical.pptx
abhaypanchal2525
 
PPTX
Python-Application-in-Drug-Design by R D Jawarkar.pptx
Rahul Jawarkar
 
PPTX
Gupta Art & Architecture Temple and Sculptures.pptx
Virag Sontakke
 
PDF
Virat Kohli- the Pride of Indian cricket
kushpar147
 
PPTX
Rules and Regulations of Madhya Pradesh Library Part-I
SantoshKumarKori2
 
PPTX
Cleaning Validation Ppt Pharmaceutical validation
Ms. Ashatai Patil
 
PPTX
Introduction to pediatric nursing in 5th Sem..pptx
AneetaSharma15
 
PPTX
Virus sequence retrieval from NCBI database
yamunaK13
 
PPTX
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
PDF
My Thoughts On Q&A- A Novel By Vikas Swarup
Niharika
 
PDF
Module 2: Public Health History [Tutorial Slides]
JonathanHallett4
 
PPTX
Applied-Statistics-1.pptx hardiba zalaaa
hardizala899
 
PPTX
INTESTINALPARASITES OR WORM INFESTATIONS.pptx
PRADEEP ABOTHU
 
PPTX
Sonnet 130_ My Mistress’ Eyes Are Nothing Like the Sun By William Shakespear...
DhatriParmar
 
DOCX
Modul Ajar Deep Learning Bahasa Inggris Kelas 11 Terbaru 2025
wahyurestu63
 
PPTX
TOP 10 AI TOOLS YOU MUST LEARN TO SURVIVE IN 2025 AND ABOVE
digilearnings.com
 
Tips for Writing the Research Title with Examples
Thelma Villaflores
 
K-Circle-Weekly-Quiz12121212-May2025.pptx
Pankaj Rodey
 
The Future of Artificial Intelligence Opportunities and Risks Ahead
vaghelajayendra784
 
Applications of matrices In Real Life_20250724_091307_0000.pptx
gehlotkrish03
 
LDP-2 UNIT 4 Presentation for practical.pptx
abhaypanchal2525
 
Python-Application-in-Drug-Design by R D Jawarkar.pptx
Rahul Jawarkar
 
Gupta Art & Architecture Temple and Sculptures.pptx
Virag Sontakke
 
Virat Kohli- the Pride of Indian cricket
kushpar147
 
Rules and Regulations of Madhya Pradesh Library Part-I
SantoshKumarKori2
 
Cleaning Validation Ppt Pharmaceutical validation
Ms. Ashatai Patil
 
Introduction to pediatric nursing in 5th Sem..pptx
AneetaSharma15
 
Virus sequence retrieval from NCBI database
yamunaK13
 
Dakar Framework Education For All- 2000(Act)
santoshmohalik1
 
My Thoughts On Q&A- A Novel By Vikas Swarup
Niharika
 
Module 2: Public Health History [Tutorial Slides]
JonathanHallett4
 
Applied-Statistics-1.pptx hardiba zalaaa
hardizala899
 
INTESTINALPARASITES OR WORM INFESTATIONS.pptx
PRADEEP ABOTHU
 
Sonnet 130_ My Mistress’ Eyes Are Nothing Like the Sun By William Shakespear...
DhatriParmar
 
Modul Ajar Deep Learning Bahasa Inggris Kelas 11 Terbaru 2025
wahyurestu63
 
TOP 10 AI TOOLS YOU MUST LEARN TO SURVIVE IN 2025 AND ABOVE
digilearnings.com
 

Toolbarexample

  • 2. ● Toolbar is a view introduced in Android Lollipop(API 21) the spiritual successor of the ActionBar(Actionbar is replaced with Toolbar) ● Appearance and behaviour can be more easily customized than the ActionBar. ● Works well with app’s targeted to API 21 and above. ● Android has updated the AppCompat support libraries so the Toolbar can be used on lower Android OS devices as well.
  • 3. Toolbar Advantages ● Toolbar is a View included in a layout like any other View ● As a regular View, the toolbar is easier to position, animate and control
  • 4. Using Toolbar as Action-Bar ● To use Toolbar as an ActionBar, first ensure the AppCompat- v7 support library is added to your application build.gradle (Module:app) file: ● dependencies { compile 'com.android.support:appcompat-v7:25.2.0' compile 'com.android.support:design:25.2.0' }
  • 5. disable the theme-provided ActionBar ● res/styles.xml file: <resources> <!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style> </resources>
  • 6. Now add a Toolbar to your Activity in layout file ● <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"> <android.support.v7.widget.Toolbar android:id="@+id/tb_toolbarmain" android:layout_height="?attr/actionBarSize" android:background="@color/colorPrimaryDark" > </android.support.v7.widget.Toolbar> <View android:layout_width="match_parent" android:layout_height="10dp" android:background="@drawable/toolbar_dropshadow" /> </LinearLayout>