Android: Shapes.

Slides:



Advertisements
Similar presentations
Features and How-to’s Introduction to Computers Mr. Jain
Advertisements

How to Use This Template Copy the presentation to your hard drive. Open the slides using slide sorter and copy slides #3, 4 and 5 for each question you.
Styles and Themes. Tell me about this XML snippet
©Sara Duncan 1998 Instructions for the game... Click on the text box that says “your text here. Enter your text in the box. Add pizzazz by using graphics.
Lecture HTML Images. Use for Images Photos and Graphics Buttons for Navigation Bullets for Lists Backgrounds Symbols and Icons Logos.
Web Page Design Tips & Tricks Layering Choose Insert – Layout Objects – Layer Click anywhere along the outline of the layer box to select it Click &
4/16/2007Declare a Schema File I1. 4/16/2007Declare a Schema File I2 Declare a Schema File A collection of semantic validation rules designed to constrain.
© 2008 The McGraw-Hill Companies, Inc. All rights reserved. M I C R O S O F T ® Customizing Themes and Master Slides Lesson 11.
Graphic Design YOUR NAME Elements & Principles of.
(MICROSOFT WORD) Screen Elements Special Keys Spelling & Grammar Check Font Face, Size, Style Alignment & Spacing Saving A File Closing MS Word DAY 1.
Agenda Book Cover & Golf outing Instructions & Images on webpage
Chapter 10: Move! Creating Animation
6-2 2D Graphics CSNB544 Mobile Application Development Thanks to Utexas Austin.
Favorite Twitter® Searches App Android How to Program © by Pearson Education, Inc. All Rights Reserved.
Basic Presentation Design Concepts and Functions.
XP New Perspectives on Microsoft Office FrontPage 2003 Tutorial 4 1 Microsoft Office FrontPage 2003 Tutorial 4 – Using Shared Borders and Themes.
(Put the titles of both stories and their authors here) A Fairy Tale, Folk Tale, or Legend Comparing and Contrasting Project By (put both of your names.
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Introduction to Android (Part.
Android Hello World 1. Click on Start and type eclipse into the textbox 2.
LCG AA Meeting 30 June 2004 Valeriy Onuchin GUI Builder.
ANDROID – DRAWING IMAGES – SIMPLE EXAMPLE IN INTERFACE AND EVENT HANDLING L. Grewe.
Course ILT Building custom presentations Unit objectives Modify the designs in a template Build a custom template from a blank presentation, and add graphic.
PowerPoint 2007 Basics Review and Practice File. Insert a Shape 1.Insert any shape 2.Change the shape’s color 3.Change the shape’s style and add a bevel.
Android ImageView and Splash Screen 1. After copying an image file (Ctrl-c or right click copy), right click and paste it into one of the res/drawable.
1.Click on “Start” menu 2.Click on “ 1. Choose a different layout for your slide.
What is PowerPoint? By Kettina L. Robinson. Unit Questions What do I want to accomplish? What do I want to accomplish? What content do I need to cover?
Define WSDL from LDAP Server. Create BPEL Module File -> New Project File -> New Project Choose SOA Choose SOA Choose BPEL Module Choose BPEL Module.
© 2016 Cengage Learning®. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in whole or in part. Android Boot Camp.
50 /1003 / 9120 /12021 / 35 2 / 103 / 618 / 245 / /10011 / 3317 / 345 / 10 2 / 610 / 1524 / 482 / 12.
Simple Copying an Android project in Eclipse Reference: existing-project-with-a-new-name 1.
PowerPoint Lesson 4 Part A - Slide Transitions Save this to your computer folder. Go to the Animations ribbon. Choose a transition to this slide.
Card Design How to Mrs Ras. Open Illustrator File>New.
Frank Xu Gannon University. A dialog is always created and displayed as a part of an Activity. You should normally create dialogs from within.
1 Open Microsoft office word. Create a new blank document.
TCS Internal Maps. 2 TCS Internal Objective Objective :  MAPS o Integration of Maps.
CHOOSE 1 OF THESE.
Creating a Zip File with a Password. 1.Right Click on the File or Folder you want to Zip. 2.Choose “Add to Zip”
Basic 2D Graphics in Android. Android Graphics Programming There are many ways to do graphics programming in Android – 2D vs. 3D – static vs. dynamic.
Android Boot Camp for Developers Using Java, Comprehensive: A Guide to Creating Your First Android Apps Chapter 10: Move! Creating Animation 1 Android.
Android Mobile Application Development
Android Application 2D Graphics cs.
Lecture 3: Animation & Graphics
Lecture 3: Animation & Graphics
Document Generation QRG
XML Mihail L. Sichitiu.
Creating Documents with Word 2013
Politeknik Elektronika Negeri Surabaya
Digital painting intro
Android Introduction Camera.
Android Layout Basics Topics
A NEW look at PowerPoint
Android ListView Demo.
CS 3870/CS 5870 Prog 6 Site Map.
Tree Growth Static Add Subtitle Here Your Text Here Your Text Here
Android: Shapes.
Android Developer Fundamentals V2 Lesson 4
Basic Presentation Design
Mobile Applications (Android Programming)
Practice Activity – Part 1
My Portfolio ABC reading writing math art & music social studies
Interactive Graphic Organizers
Creating a Business Letter
Faded background picture (Basic)
PowerPoint Lesson 4 Slide Transitions & Custom Animation
Interactive Graphic Organizers
Website File Management
Basic Presentation Design
Interactive Graphic Organizers
Data Base.
Creating a PowerPoint Presentation
Presentation transcript:

Android: Shapes

Right click on res/drawable select New/Android XML

Supply a filename (small letters) Choose shape as the root element Supply a filename (small letters) Choose shape as the root element. Click Finish.

Enter a gradient element, supply its startColor and endColor attributes. <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" > <gradient android:startColor="#cccccc" android:endColor="#333333" /> </shape>

In your layout add a background attribute and set its value to the xml file you just placed in drawable

The result in Graphical Layout mode.