SlideShare a Scribd company logo
Layout Style
Android Training
By Khaled Anaqwa
Styles and Themes





A style is a collection of properties that specify
the look and format for a View or window.
A style can specify properties such as height,
padding, font color, font size, background
color, and much more.
Styles in Android share a similar philosophy to
cascading stylesheets in web design—they
allow you to separate the design from the
content.
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#00FF00"
android:typeface="monospace"
android:text="@string/hello" />
Will be
<TextView
style="@style/CodeFont"
android:text="@string/hello" />
Defining Styles
 To

create a set of styles, save an XML file
in the res/values/ directory of your
project.
 The root node of the XML file must be
<resources>.
 For each style you want to create, add a
<style> element to the file with a name
that uniquely identifies the style (this
attribute is required).
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CodeFont" parent="@android:style/TextAppearance.Medium">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">#00FF00</item>
<item name="android:typeface">monospace</item>
</style>
</resources>
Inheritance
 The

parent attribute in the <style>
element lets you specify a style from
which your style should inherit properties.

<style name="GreenText" parent="@android:style/TextAppearance">
<item name="android:textColor">#00FF00</item>
</style>
Inheritance
 If

you want to inherit from styles that
you've defined yourself, you do not have
to use the parent attribute.

<style name="CodeFont.Red">
<item name="android:textColor">#FF0000</item>
</style>
Theme
A

theme is a style applied to an entire activity or
application, rather than an individual View.

android:theme="@android:style/Theme.Dialog”
 The

technique of defining a theme is the same
as defining a style.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyTheme" parent="android:Theme.Dialog">
<item name="android:windowNoTitle">true</item>
<item
name="android:windowBackground">@color/translucent_red</item>
<item name="android:textColor">#00FF00</item>
</style>
</resources>

 android:theme=”@style/MyTheme”

More Related Content

PPTX
Adobe Dreamweaver CS5 Basics
PPTX
CSS 3, Style and Beyond
PPTX
CSS Basic Introduction, Rules, And Tips
PPTX
Cascading style-sheet-
PDF
cascadingstylesheets
PPTX
CSS introduction
Adobe Dreamweaver CS5 Basics
CSS 3, Style and Beyond
CSS Basic Introduction, Rules, And Tips
Cascading style-sheet-
cascadingstylesheets
CSS introduction

What's hot (8)

PPTX
Css syntax, teachin presentation
PPT
Css class-01
PPTX
Css and its types
PPT
Introduction to CSS
PPT
Introduction to Cascading Style Sheets (CSS)
PPTX
Lecture 1
ODP
Css syntax, teachin presentation
Css class-01
Css and its types
Introduction to CSS
Introduction to Cascading Style Sheets (CSS)
Lecture 1
Ad

Viewers also liked (20)

PPTX
Android Training (Broadcast Receiver)
PPTX
Android Training (Services)
PPTX
Android Training (Touch)
PPTX
Android Training (android fundamental)
PPTX
Android Training (Notifications)
PPTX
Android Training (ScrollView , Horizontal ScrollView WebView)
PPT
Chapter 5 ms access-1
PPTX
Android Transition
PPTX
Android Training (Animation)
PPT
Uses of MS Access in Business
PPT
MS Access Training
PPTX
Content provider in_android
PPTX
Wi-Fi Direct
PPTX
Android Training (Content Provider)
PPTX
Android Training (Storing & Shared Preferences)
PPT
Wifi direct p2p app
PPT
Android Sensor System
PPT
Chapter 3 storage media and devices
PPT
Chapter 8 system analysis and design
PDF
Introduction to Wi-Fi Direct
Android Training (Broadcast Receiver)
Android Training (Services)
Android Training (Touch)
Android Training (android fundamental)
Android Training (Notifications)
Android Training (ScrollView , Horizontal ScrollView WebView)
Chapter 5 ms access-1
Android Transition
Android Training (Animation)
Uses of MS Access in Business
MS Access Training
Content provider in_android
Wi-Fi Direct
Android Training (Content Provider)
Android Training (Storing & Shared Preferences)
Wifi direct p2p app
Android Sensor System
Chapter 3 storage media and devices
Chapter 8 system analysis and design
Introduction to Wi-Fi Direct
Ad

Similar to Android training (android style) (20)

PPTX
Android styles and themes
PPT
Unit 2-CSS & Bootstrap.ppt
PDF
GDI Seattle Intermediate HTML and CSS Class 1
PPTX
Themes & Styles - Android Mubasher
PPTX
Cascading style sheet, CSS Box model, Table in CSS
PPT
New Css style
PPT
PPT
DW_lesson2 ntro_HTML_CSS_preso ntro_HTML_CSS_preso.ppt
PPT
DW_lesson2aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.ppt
PPTX
Beginners css tutorial for web designers
PPTX
Chapter_1_Web_Technologies_Basics (CSS)_Part_2.pptx
PDF
Organize Your Website With Advanced CSS Tricks
PPT
CSS Cascading Style Sheet Introduction slides
PPT
DW_lesson2.ppt
PPT
DW_lesson2.ppt
PPT
DW_lesson2.ppt
PPT
DW_lesson2.ppt
PPT
DW_lesson2.ppt
PPTX
Introduction to Cascading Style Sheets .
PDF
Webpage style with CSS
Android styles and themes
Unit 2-CSS & Bootstrap.ppt
GDI Seattle Intermediate HTML and CSS Class 1
Themes & Styles - Android Mubasher
Cascading style sheet, CSS Box model, Table in CSS
New Css style
DW_lesson2 ntro_HTML_CSS_preso ntro_HTML_CSS_preso.ppt
DW_lesson2aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.ppt
Beginners css tutorial for web designers
Chapter_1_Web_Technologies_Basics (CSS)_Part_2.pptx
Organize Your Website With Advanced CSS Tricks
CSS Cascading Style Sheet Introduction slides
DW_lesson2.ppt
DW_lesson2.ppt
DW_lesson2.ppt
DW_lesson2.ppt
DW_lesson2.ppt
Introduction to Cascading Style Sheets .
Webpage style with CSS

More from Khaled Anaqwa (7)

PPTX
Android Training (Storing data using SQLite)
PPTX
Android Training (Sensors)
PPTX
Android Training (Media)
PPTX
Android Training (AdapterView & Adapter)
PPTX
Android Training (Android UI)
PPTX
Android Training (Intro)
PPTX
Android Training (Java Review)
Android Training (Storing data using SQLite)
Android Training (Sensors)
Android Training (Media)
Android Training (AdapterView & Adapter)
Android Training (Android UI)
Android Training (Intro)
Android Training (Java Review)

Recently uploaded (20)

PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
Machine learning based COVID-19 study performance prediction
PPTX
Spectroscopy.pptx food analysis technology
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
cuic standard and advanced reporting.pdf
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
MYSQL Presentation for SQL database connectivity
Spectral efficient network and resource selection model in 5G networks
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Review of recent advances in non-invasive hemoglobin estimation
Digital-Transformation-Roadmap-for-Companies.pptx
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Machine learning based COVID-19 study performance prediction
Spectroscopy.pptx food analysis technology
Building Integrated photovoltaic BIPV_UPV.pdf
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Network Security Unit 5.pdf for BCA BBA.
sap open course for s4hana steps from ECC to s4
Dropbox Q2 2025 Financial Results & Investor Presentation
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
The AUB Centre for AI in Media Proposal.docx
cuic standard and advanced reporting.pdf
Encapsulation_ Review paper, used for researhc scholars
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx

Android training (android style)