Android Lab Test : Creating a dialog Yes/No (english)
Video of tutorial on : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visit http://www.AndroidLabTest.com
This document provides instructions for a lab exercise on using an integrated development environment (IDE) for writing and debugging C programs. Students are asked to:
1. Write two C programs - one to display a person's name and age over years, and another to calculate the average of 5 numbers.
2. Compile and run the programs, noting and correcting any errors.
3. Use the IDE's debugging tools like breakpoints, stepping, and watches to debug errors in calculations or output.
The goal is to practice using an IDE for writing, compiling, running and debugging C programs from within the IDE's interface.
This document describes how to place a fake start button on Windows 8 by adding the "Program" folder from the Start Menu to the taskbar, which allows users to simulate the start button. It provides steps to right click the taskbar, select "Toolbar", click "New", choose the "Program" folder located at "C:¥ProgramData¥Microsoft¥Windows¥Start Menu", and click OK, which will add the "Program" folder to the right of the taskbar and allow users to access programs as if using the start button.
This document provides an introduction and overview of Android. It discusses the differences between Android and iPhone, describes what open source means as it relates to Android, outlines Android's architecture and versions over time, and summarizes key features and changes introduced in each version of Android from 1.0 to 4.1.
The document discusses various types of dialogs and user input options in Android programming, including:
- Toasts, alerts, buttons, text fields, switches, pickers, preferences, and gestures that can be used to prompt for and accept user input.
- Examples of implementing alerts, prompts, single and multi-choice dialogs, preferences, and popups are provided using AlertDialog.Builder.
- Techniques for detecting shake gestures and responding to touch events like taps, swipes and long presses are demonstrated using GestureDetector and a ShakeListener class.
This document discusses different types of dialogs in Android, including alert dialogs, single-choice dialogs, dialogs with buttons, and custom dialogs. It explains how to create alert dialogs using the AlertDialog.Builder class and set title, content, and buttons. Code examples are provided to demonstrate creating single-choice, button, and custom dialogs by setting different components and layouts.
Dialogs in Android are small windows that prompt users to take an action or enter information before proceeding. There are several types of dialogs including alerts, popups, and toasts. Alerts inform users and require a response while popups require a single selection. Toasts provide lightweight feedback. The example shows how to create an alert dialog using a Builder pattern to set the message, buttons, and listeners.
This document discusses XML web service responses. It covers default formatted responses, reshaping responses by modifying the underlying code to apply XML attributes to structure properties, and provides an example of code before and after reshaping that results in a changed XML structure in the response.
The document discusses different types of dialogs in Android, including AlertDialogs, ProgressDialogs, and custom dialogs. It provides details on how to create and customize each type of dialog. AlertDialogs can include titles, text messages, buttons, and lists. ProgressDialogs display progress animations like spinning wheels or progress bars. Creating a custom dialog involves designing an XML layout, setting it as the dialog content view, and populating the view elements.
Android basics – dialogs and floating activitiesinfo_zybotech
This document provides an overview of how to create dialog boxes and floating activities in Android application development. It discusses two main ways to create dialogs: using the Dialog class or its subclasses like AlertDialog, or applying a dialog theme to an Activity. Specific techniques covered include creating custom Dialogs, using AlertDialog features like buttons and lists, and managing dialogs through an Activity's lifecycle methods. The goal is to understand the different options available for displaying modal popups or secondary screens in an Android app.
The document discusses different types of dialog boxes in Android - ProgressDialog, AlertDialog, and custom dialog boxes.
It provides code samples and explanations for creating and customizing ProgressDialogs with features like setting titles, messages, progress styles (horizontal or spinner), and dismissing. It also covers creating AlertDialogs with options to set titles, icons, messages, buttons and listeners.
Finally, it demonstrates how to create a custom dialog box by designing a layout XML file and inflating it into a Dialog to add custom views, buttons and functionality.
Android Lab Test : Using the text-to-speech (english)Bruno Delb
Android Lab Test : Using the text-to-speech (english)
Video of tutorial on : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visit http://www.AndroidLabTest.com
This document provides a quick introduction to Android development. It discusses Android Studio as the primary IDE for Android development and its features. It also covers templates, running apps, building UIs with code and XML, using resources and the R class, basic event handling, Logcat for viewing logs, and best practices for logging.
Tips & tricks for sharing C# code on iOS, Android and Windows Phone by Jaime ....NET Conf UY
This document summarizes a presentation about building mobile apps for Windows Phone, iOS, and Android using C#. The presentation discusses using C# with the .NET Base Class Library and platform-specific APIs for each mobile platform. It also covers strategies for sharing code between platforms like Portable Class Libraries, Shared Projects, and Xamarin.Forms. The presenter advocates that Xamarin allows building truly native mobile apps while taking advantage of C# and .NET.
This document discusses different types of dialogs in Android, including alert dialogs, single-choice dialogs, dialogs with buttons, and custom dialogs. It explains how to create alert dialogs using the AlertDialog.Builder class and set title, content, and buttons. Code examples are provided to demonstrate creating single-choice, button, and custom dialogs by setting different components and layouts.
This document summarizes a session on activities and intents from the Android Academy. It covered:
1. Three ways to set listeners on buttons - declaring in XML, inline anonymous classes, and implementing an interface. The observer pattern was used for listeners.
2. Making toasts using the static factory method pattern. Toasts provide simple feedback to the user.
3. Using intents to navigate between activities both explicitly and implicitly. Intents can pass optional extras between activities.
4. Storing persistent data with SharedPreferences which can save data between sessions.
5. Broadcasting messages between loosely coupled components with broadcast receivers. Security concerns with broadcasts were also discussed.
Android activity, service, and broadcast recieversUtkarsh Mankad
The document provides an overview of creating a basic "Hello World" Android application. It discusses creating a new Android project, the typical project file structure including the src, res, assets, and AndroidManifest.xml files. It also summarizes the purpose of activities, services, and broadcast receivers as core Android application components.
The document discusses different types of notifications that can be used in Android applications, including alert dialogues, progress bars, date pickers, and time pickers. Alert dialogues are small pop-up windows that interrupt the user to notify them or request input. Progress bars and dialogs can be used to show indefinite or defined progress for a task. Date and time pickers allow users to select dates and times through widgets.
MOPCON 2014 - Best software architecture in app developmentanistar sung
Talking about how to build smart design and architecture for app development. Let your app can easy develop and deploy components on your app. And more topic of version control and quality improvement.
- Pebble was founded in 2011 and launched its first smartwatch in 2013 through a record breaking Kickstarter campaign. It has since launched additional models.
- There are two types of Pebble apps: PebbleFace apps developed using C SDK and PebbleApp apps developed using JavaScript. CloudPebble is an online IDE for developing PebbleFace apps without installing any software.
- Pebble apps utilize services like Bluetooth, battery, and time to respond to device events and update their UI. Common elements include windows, layers, and text layers. Buttons can be configured to handle click events.
The document discusses various types of dialogs in Eclipse including modal dialogs, message dialogs, confirmation dialogs, error dialogs, warning dialogs, tray dialogs, title area dialogs, and wizard dialogs. It provides details on how to create and use these different dialog types, including creating buttons, button bars, and wizard pages.
What do you mean it needs to be Java based? How jython saved the day.Mark Rees
The document discusses how Jython can be used to run Python code on the Java Virtual Machine (JVM). It provides examples of using Jython to:
1) Call Java code from Python and call Python code from Java by using Jython classes and interfaces.
2) Access databases using Python database APIs that bridge to JDBC like zxJDBC.
3) Build web applications using frameworks like Django that run on Jython and the Java web server.
This document provides an introduction and overview of Griffon, an open source framework for building desktop applications in Java and Groovy. It discusses key Griffon concepts like the MVC architecture, views, models, controllers and plugins. It also demonstrates common Griffon commands and shows code examples for building a basic todo application with a Griffon including adding tables, binding forms and handling threading.
This document summarizes the topics of menus and dialogs covered in Android application development session 3. It discusses the three types of menus: option menus, context menus, and popup menus. It provides code examples for creating and handling each type of menu. It also discusses the three types of dialogs: alert dialogs, progress dialogs, and custom dialogs. Code is shown for building each type of dialog and handling button clicks. Custom dialog creation involves separate layout files for the main screen and dialog, with code to display the custom dialog when a button is clicked.
The document outlines a session on mobile end-to-end testing using simulators. It discusses simulator basics for BlackBerry and Android, how to start and control simulators through commands and libraries. It then describes the Moet framework for defining a device-agnostic application interface and implementing it for different platforms using simulator libraries. Tests can then be written independently of devices and run by binding to the appropriate implementation at runtime. Logging and image comparison are available for test verification.
The document discusses various Android widgets such as TextView, ImageView, EditText, CheckBox, and RadioButton. It provides code examples for how to implement each widget in an Android application. For TextView, it demonstrates how to display simple text. For ImageView, it shows how to display an image. For EditText, it explains how to create an editable text field. For CheckBox, it provides an example of a checkbox that can be checked or unchecked. And for RadioButton, it discusses using radio buttons within a RadioGroup so that only one can be selected at a time.
Designing and implementing_android_uis_for_phones_and_tabletsTeddy Koornia
This document outlines design principles and patterns for Android user interfaces on phones and tablets. It discusses the introduction of tablets and goals for the Honeycomb visual design, including enabling flexible and dynamic UIs, simplifying designs, and enabling extensibility. UI patterns like the action bar, multi-pane layouts, and app navigation are covered. A case study of the Google I/O 2011 app demonstrates implementing these patterns.
La conférence « ProTips » de Mathias Seguy (Android2EE).
Cette conférence a eu lieu lors du BarCamp de la DroidCon Paris, Lundi 17 Juin 2013.
Si vous êtes un JUG ou un AUG et que cette conférence vous interesse, n'hésitez pas à me contacter.
Si vous souhaitez apprendre la technologie Android, contacter moi: [email protected], je suis formateur Android et les formations Android que je dispense sont exceptionnelles.
Speaker:Mathias est le fondateur de la société Android2ee spécialisée dans la technologie Android.
Il est :
• formateur Android,
• expert logiciel Android,
• speaker Android sur de grandes conférences Java : AndroidCon, Devoxx France, Eclipse Day Toulouse, JCertif Africa, Toulouse JUG, CocoAhead,…
• Rédacteur Android sur Developpez.com ;
• Programmateur Android : MyLight, MyTorch, MySensors, JCertifMobile disponibles sur GooglePlay ;
• Docteur en Mathématiques Fondamentales et Ingénieur de l’ENSEEIHT ;
• Expert technique de l’agence nationale de la recherche française ;
Il présentera au cours de cette conférence sa vision sur la mise en place d’une architecture d’une application Android pertinente et partagera les meilleurs pro-tips (astuces de pro) de sa connaissance. A ne pas manquez.
Mathias Séguy
[email protected]
Fondateur Android2EE
Formation – Expertise – Consulting Android.
Ebooks pour apprendre la programmation sous Android.
This document provides an introduction to the Swift programming language. It includes lessons on variables, constants, data types, operators, flow control, strings, arrays, dictionaries and other core concepts. Each concept is explained over multiple lines with examples provided for how to declare, assign values to, and manipulate various types of variables and objects in Swift code.
Android Lab Test : Storage of data with SharedPreferences (english)Bruno Delb
The document discusses using shared preferences in Android to store data. It explains opening shared preferences in private mode, reading and writing values to shared preferences using methods like getString(), edit(), and putString(). It provides code examples of getting and setting username, password, and a checkbox value from shared preferences. The code shows initializing shared preferences, retrieving values on startup to populate fields, and committing edited values on a button click.
Ad
More Related Content
Similar to Android Lab Test : Creating a dialog Yes/No (english) (20)
Android basics – dialogs and floating activitiesinfo_zybotech
This document provides an overview of how to create dialog boxes and floating activities in Android application development. It discusses two main ways to create dialogs: using the Dialog class or its subclasses like AlertDialog, or applying a dialog theme to an Activity. Specific techniques covered include creating custom Dialogs, using AlertDialog features like buttons and lists, and managing dialogs through an Activity's lifecycle methods. The goal is to understand the different options available for displaying modal popups or secondary screens in an Android app.
The document discusses different types of dialog boxes in Android - ProgressDialog, AlertDialog, and custom dialog boxes.
It provides code samples and explanations for creating and customizing ProgressDialogs with features like setting titles, messages, progress styles (horizontal or spinner), and dismissing. It also covers creating AlertDialogs with options to set titles, icons, messages, buttons and listeners.
Finally, it demonstrates how to create a custom dialog box by designing a layout XML file and inflating it into a Dialog to add custom views, buttons and functionality.
Android Lab Test : Using the text-to-speech (english)Bruno Delb
Android Lab Test : Using the text-to-speech (english)
Video of tutorial on : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visit http://www.AndroidLabTest.com
This document provides a quick introduction to Android development. It discusses Android Studio as the primary IDE for Android development and its features. It also covers templates, running apps, building UIs with code and XML, using resources and the R class, basic event handling, Logcat for viewing logs, and best practices for logging.
Tips & tricks for sharing C# code on iOS, Android and Windows Phone by Jaime ....NET Conf UY
This document summarizes a presentation about building mobile apps for Windows Phone, iOS, and Android using C#. The presentation discusses using C# with the .NET Base Class Library and platform-specific APIs for each mobile platform. It also covers strategies for sharing code between platforms like Portable Class Libraries, Shared Projects, and Xamarin.Forms. The presenter advocates that Xamarin allows building truly native mobile apps while taking advantage of C# and .NET.
This document discusses different types of dialogs in Android, including alert dialogs, single-choice dialogs, dialogs with buttons, and custom dialogs. It explains how to create alert dialogs using the AlertDialog.Builder class and set title, content, and buttons. Code examples are provided to demonstrate creating single-choice, button, and custom dialogs by setting different components and layouts.
This document summarizes a session on activities and intents from the Android Academy. It covered:
1. Three ways to set listeners on buttons - declaring in XML, inline anonymous classes, and implementing an interface. The observer pattern was used for listeners.
2. Making toasts using the static factory method pattern. Toasts provide simple feedback to the user.
3. Using intents to navigate between activities both explicitly and implicitly. Intents can pass optional extras between activities.
4. Storing persistent data with SharedPreferences which can save data between sessions.
5. Broadcasting messages between loosely coupled components with broadcast receivers. Security concerns with broadcasts were also discussed.
Android activity, service, and broadcast recieversUtkarsh Mankad
The document provides an overview of creating a basic "Hello World" Android application. It discusses creating a new Android project, the typical project file structure including the src, res, assets, and AndroidManifest.xml files. It also summarizes the purpose of activities, services, and broadcast receivers as core Android application components.
The document discusses different types of notifications that can be used in Android applications, including alert dialogues, progress bars, date pickers, and time pickers. Alert dialogues are small pop-up windows that interrupt the user to notify them or request input. Progress bars and dialogs can be used to show indefinite or defined progress for a task. Date and time pickers allow users to select dates and times through widgets.
MOPCON 2014 - Best software architecture in app developmentanistar sung
Talking about how to build smart design and architecture for app development. Let your app can easy develop and deploy components on your app. And more topic of version control and quality improvement.
- Pebble was founded in 2011 and launched its first smartwatch in 2013 through a record breaking Kickstarter campaign. It has since launched additional models.
- There are two types of Pebble apps: PebbleFace apps developed using C SDK and PebbleApp apps developed using JavaScript. CloudPebble is an online IDE for developing PebbleFace apps without installing any software.
- Pebble apps utilize services like Bluetooth, battery, and time to respond to device events and update their UI. Common elements include windows, layers, and text layers. Buttons can be configured to handle click events.
The document discusses various types of dialogs in Eclipse including modal dialogs, message dialogs, confirmation dialogs, error dialogs, warning dialogs, tray dialogs, title area dialogs, and wizard dialogs. It provides details on how to create and use these different dialog types, including creating buttons, button bars, and wizard pages.
What do you mean it needs to be Java based? How jython saved the day.Mark Rees
The document discusses how Jython can be used to run Python code on the Java Virtual Machine (JVM). It provides examples of using Jython to:
1) Call Java code from Python and call Python code from Java by using Jython classes and interfaces.
2) Access databases using Python database APIs that bridge to JDBC like zxJDBC.
3) Build web applications using frameworks like Django that run on Jython and the Java web server.
This document provides an introduction and overview of Griffon, an open source framework for building desktop applications in Java and Groovy. It discusses key Griffon concepts like the MVC architecture, views, models, controllers and plugins. It also demonstrates common Griffon commands and shows code examples for building a basic todo application with a Griffon including adding tables, binding forms and handling threading.
This document summarizes the topics of menus and dialogs covered in Android application development session 3. It discusses the three types of menus: option menus, context menus, and popup menus. It provides code examples for creating and handling each type of menu. It also discusses the three types of dialogs: alert dialogs, progress dialogs, and custom dialogs. Code is shown for building each type of dialog and handling button clicks. Custom dialog creation involves separate layout files for the main screen and dialog, with code to display the custom dialog when a button is clicked.
The document outlines a session on mobile end-to-end testing using simulators. It discusses simulator basics for BlackBerry and Android, how to start and control simulators through commands and libraries. It then describes the Moet framework for defining a device-agnostic application interface and implementing it for different platforms using simulator libraries. Tests can then be written independently of devices and run by binding to the appropriate implementation at runtime. Logging and image comparison are available for test verification.
The document discusses various Android widgets such as TextView, ImageView, EditText, CheckBox, and RadioButton. It provides code examples for how to implement each widget in an Android application. For TextView, it demonstrates how to display simple text. For ImageView, it shows how to display an image. For EditText, it explains how to create an editable text field. For CheckBox, it provides an example of a checkbox that can be checked or unchecked. And for RadioButton, it discusses using radio buttons within a RadioGroup so that only one can be selected at a time.
Designing and implementing_android_uis_for_phones_and_tabletsTeddy Koornia
This document outlines design principles and patterns for Android user interfaces on phones and tablets. It discusses the introduction of tablets and goals for the Honeycomb visual design, including enabling flexible and dynamic UIs, simplifying designs, and enabling extensibility. UI patterns like the action bar, multi-pane layouts, and app navigation are covered. A case study of the Google I/O 2011 app demonstrates implementing these patterns.
La conférence « ProTips » de Mathias Seguy (Android2EE).
Cette conférence a eu lieu lors du BarCamp de la DroidCon Paris, Lundi 17 Juin 2013.
Si vous êtes un JUG ou un AUG et que cette conférence vous interesse, n'hésitez pas à me contacter.
Si vous souhaitez apprendre la technologie Android, contacter moi: [email protected], je suis formateur Android et les formations Android que je dispense sont exceptionnelles.
Speaker:Mathias est le fondateur de la société Android2ee spécialisée dans la technologie Android.
Il est :
• formateur Android,
• expert logiciel Android,
• speaker Android sur de grandes conférences Java : AndroidCon, Devoxx France, Eclipse Day Toulouse, JCertif Africa, Toulouse JUG, CocoAhead,…
• Rédacteur Android sur Developpez.com ;
• Programmateur Android : MyLight, MyTorch, MySensors, JCertifMobile disponibles sur GooglePlay ;
• Docteur en Mathématiques Fondamentales et Ingénieur de l’ENSEEIHT ;
• Expert technique de l’agence nationale de la recherche française ;
Il présentera au cours de cette conférence sa vision sur la mise en place d’une architecture d’une application Android pertinente et partagera les meilleurs pro-tips (astuces de pro) de sa connaissance. A ne pas manquez.
Mathias Séguy
[email protected]
Fondateur Android2EE
Formation – Expertise – Consulting Android.
Ebooks pour apprendre la programmation sous Android.
This document provides an introduction to the Swift programming language. It includes lessons on variables, constants, data types, operators, flow control, strings, arrays, dictionaries and other core concepts. Each concept is explained over multiple lines with examples provided for how to declare, assign values to, and manipulate various types of variables and objects in Swift code.
Android Lab Test : Storage of data with SharedPreferences (english)Bruno Delb
The document discusses using shared preferences in Android to store data. It explains opening shared preferences in private mode, reading and writing values to shared preferences using methods like getString(), edit(), and putString(). It provides code examples of getting and setting username, password, and a checkbox value from shared preferences. The code shows initializing shared preferences, retrieving values on startup to populate fields, and committing edited values on a button click.
Android Lab Test : Using the sensor gyroscope (english)Bruno Delb
Android Lab Test : Using the sensor gyroscope (english)
Video of tutorial on : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visit http://www.AndroidLabTest.com
Android Lab Test : Using the network with HTTP (english)Bruno Delb
Android Lab Test : Using the network with HTTP (english)
Video of tutorial on : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visit http://www.AndroidLabTest.com
Android Lab Test : Managing sounds with SoundPool (english)Bruno Delb
This document discusses using SoundPool to play sounds in an Android application. It explains how to:
1. Create a SoundPool object specifying the maximum number of streams, stream type, and quality.
2. Load sound files into the SoundPool using load() to get a sound ID.
3. Play sounds using play(), providing the sound ID, left/right volumes, priority, loop setting, and playback speed.
The document also notes that sound files should be placed in res/raw and provides an example layout and Java code to load and play a sound when a button is clicked.
Android Lab Test : Reading the foot file list (english)Bruno Delb
Android Lab Test : Reading the foot file list (english)
Video of tutorial on : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visit http://www.AndroidLabTest.com
Android Lab Test : Creating a menu dynamically (english)Bruno Delb
Android Lab Test : Creating a menu dynamically (english)
Video of tutorial on : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visit http://www.AndroidLabTest.com
Android Lab Test : The styles of views (english)Bruno Delb
Android Lab Test : The styles of views (english)
Video of tutorial on : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visit http://www.AndroidLabTest.com
Android Lab Test : Creating a menu context (english)Bruno Delb
Android Lab Test : Creating a menu context (english)
Video of tutorial on : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visit http://www.AndroidLabTest.com
Android Lab Test : Using the camera preview (english)Bruno Delb
Android Lab Test : Using the camera preview (english)
Video of tutorial on : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visit http://www.AndroidLabTest.com
Android Lab Test : The views, the Gallery (english)Bruno Delb
Android Lab Test : The views, the Gallery (english)
Video of tutorial on : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visit http://www.AndroidLabTest.com
Android Lab Test : Using the WIFI (english)Bruno Delb
This document provides instructions on how to use the WifiManager in Android to control WiFi settings and scan for available networks. It explains how to get the WifiManager instance, start a scan, register a broadcast receiver to detect when scanning is complete, and retrieve the list of scanned networks. It also demonstrates how to check and change the active WiFi state. The code examples show implementing these features to build a simple app with buttons to scan and enable/disable WiFi and display the results.
Android Lab Test : Managing the telephone calls (english)Bruno Delb
Android Lab Test : Managing the telephone calls (english)
Video of tutorial on : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visit http://www.AndroidLabTest.com
Android Lab Test : Reading the SMS-inbox (english)Bruno Delb
Android Lab Test : Reading the SMS-inbox (english)
Video of tutorial on : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visit http://www.AndroidLabTest.com
Android Lab Test : Installation of application in Java (english)Bruno Delb
Android Lab Test : Installation of application in Java (english)
Video of tutorial on : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visit http://www.AndroidLabTest.com
Android Lab Test : Ecrire un texte sur le canevas (français)Bruno Delb
Android Lab Test : Ecrire un texte sur le canevas (français)
Vidéo de tutoriel sur Youtube : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visitez http://www.AndroidLabTest.com
Android Lab Test : La connectivité réseau avec HTTP (français)Bruno Delb
Android Lab Test : La connectivité réseau avec HTTP (français)
Vidéo de tutoriel sur Youtube : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visitez http://www.AndroidLabTest.com
Android Lab Test : Le capteur gyroscope (français)Bruno Delb
Android Lab Test : Le capteur gyroscope (français)
Vidéo de tutoriel sur Youtube : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visitez http://www.AndroidLabTest.com
Android Lab Test : Les threads (français)Bruno Delb
Android Lab Test : Les threads (français)
Vidéo de tutoriel sur Youtube : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visitez http://www.AndroidLabTest.com
Android Lab Test : L'installation d'une application en Java (français)Bruno Delb
Android Lab Test : L'installation d'une application en Java (français)
Vidéo de tutoriel sur Youtube : https://www.youtube.com/playlist?list=PLL2Z3bzdO25yHwIV3XdMzKs61At0Ldh6L
Visitez http://www.AndroidLabTest.com
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schoolsdogden2
Algebra 1 is often described as a “gateway” class, a pivotal moment that can shape the rest of a student’s K–12 education. Early access is key: successfully completing Algebra 1 in middle school allows students to complete advanced math and science coursework in high school, which research shows lead to higher wages and lower rates of unemployment in adulthood.
Learn how The Atlanta Public Schools is using their data to create a more equitable enrollment in middle school Algebra classes.
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...larencebapu132
This is short and accurate description of World war-1 (1914-18)
It can give you the perfect factual conceptual clarity on the great war
Regards Simanchala Sarab
Student of BABed(ITEP, Secondary stage)in History at Guru Nanak Dev University Amritsar Punjab 🙏🙏
INTRO TO STATISTICS
INTRO TO SPSS INTERFACE
CLEANING MULTIPLE CHOICE RESPONSE DATA WITH EXCEL
ANALYZING MULTIPLE CHOICE RESPONSE DATA
INTERPRETATION
Q & A SESSION
PRACTICAL HANDS-ON ACTIVITY
Exploring Substances:
Acidic, Basic, and
Neutral
Welcome to the fascinating world of acids and bases! Join siblings Ashwin and
Keerthi as they explore the colorful world of substances at their school's
National Science Day fair. Their adventure begins with a mysterious white paper
that reveals hidden messages when sprayed with a special liquid.
In this presentation, we'll discover how different substances can be classified as
acidic, basic, or neutral. We'll explore natural indicators like litmus, red rose
extract, and turmeric that help us identify these substances through color
changes. We'll also learn about neutralization reactions and their applications in
our daily lives.
by sandeep swamy
This chapter provides an in-depth overview of the viscosity of macromolecules, an essential concept in biophysics and medical sciences, especially in understanding fluid behavior like blood flow in the human body.
Key concepts covered include:
✅ Definition and Types of Viscosity: Dynamic vs. Kinematic viscosity, cohesion, and adhesion.
⚙️ Methods of Measuring Viscosity:
Rotary Viscometer
Vibrational Viscometer
Falling Object Method
Capillary Viscometer
🌡️ Factors Affecting Viscosity: Temperature, composition, flow rate.
🩺 Clinical Relevance: Impact of blood viscosity in cardiovascular health.
🌊 Fluid Dynamics: Laminar vs. turbulent flow, Reynolds number.
🔬 Extension Techniques:
Chromatography (adsorption, partition, TLC, etc.)
Electrophoresis (protein/DNA separation)
Sedimentation and Centrifugation methods.
The ever evoilving world of science /7th class science curiosity /samyans aca...Sandeep Swamy
The Ever-Evolving World of
Science
Welcome to Grade 7 Science4not just a textbook with facts, but an invitation to
question, experiment, and explore the beautiful world we live in. From tiny cells
inside a leaf to the movement of celestial bodies, from household materials to
underground water flows, this journey will challenge your thinking and expand
your knowledge.
Notice something special about this book? The page numbers follow the playful
flight of a butterfly and a soaring paper plane! Just as these objects take flight,
learning soars when curiosity leads the way. Simple observations, like paper
planes, have inspired scientific explorations throughout history.
A measles outbreak originating in West Texas has been linked to confirmed cases in New Mexico, with additional cases reported in Oklahoma and Kansas. The current case count is 817 from Texas, New Mexico, Oklahoma, and Kansas. 97 individuals have required hospitalization, and 3 deaths, 2 children in Texas and one adult in New Mexico. These fatalities mark the first measles-related deaths in the United States since 2015 and the first pediatric measles death since 2003.
The YSPH Virtual Medical Operations Center Briefs (VMOC) were created as a service-learning project by faculty and graduate students at the Yale School of Public Health in response to the 2010 Haiti Earthquake. Each year, the VMOC Briefs are produced by students enrolled in Environmental Health Science Course 581 - Public Health Emergencies: Disaster Planning and Response. These briefs compile diverse information sources – including status reports, maps, news articles, and web content– into a single, easily digestible document that can be widely shared and used interactively. Key features of this report include:
- Comprehensive Overview: Provides situation updates, maps, relevant news, and web resources.
- Accessibility: Designed for easy reading, wide distribution, and interactive use.
- Collaboration: The “unlocked" format enables other responders to share, copy, and adapt seamlessly. The students learn by doing, quickly discovering how and where to find critical information and presenting it in an easily understood manner.
CURRENT CASE COUNT: 817 (As of 05/3/2025)
• Texas: 688 (+20)(62% of these cases are in Gaines County).
• New Mexico: 67 (+1 )(92.4% of the cases are from Eddy County)
• Oklahoma: 16 (+1)
• Kansas: 46 (32% of the cases are from Gray County)
HOSPITALIZATIONS: 97 (+2)
• Texas: 89 (+2) - This is 13.02% of all TX cases.
• New Mexico: 7 - This is 10.6% of all NM cases.
• Kansas: 1 - This is 2.7% of all KS cases.
DEATHS: 3
• Texas: 2 – This is 0.31% of all cases
• New Mexico: 1 – This is 1.54% of all cases
US NATIONAL CASE COUNT: 967 (Confirmed and suspected):
INTERNATIONAL SPREAD (As of 4/2/2025)
• Mexico – 865 (+58)
‒Chihuahua, Mexico: 844 (+58) cases, 3 hospitalizations, 1 fatality
• Canada: 1531 (+270) (This reflects Ontario's Outbreak, which began 11/24)
‒Ontario, Canada – 1243 (+223) cases, 84 hospitalizations.
• Europe: 6,814
A measles outbreak originating in West Texas has been linked to confirmed cases in New Mexico, with additional cases reported in Oklahoma and Kansas. The current case count is 795 from Texas, New Mexico, Oklahoma, and Kansas. 95 individuals have required hospitalization, and 3 deaths, 2 children in Texas and one adult in New Mexico. These fatalities mark the first measles-related deaths in the United States since 2015 and the first pediatric measles death since 2003.
The YSPH Virtual Medical Operations Center Briefs (VMOC) were created as a service-learning project by faculty and graduate students at the Yale School of Public Health in response to the 2010 Haiti Earthquake. Each year, the VMOC Briefs are produced by students enrolled in Environmental Health Science Course 581 - Public Health Emergencies: Disaster Planning and Response. These briefs compile diverse information sources – including status reports, maps, news articles, and web content– into a single, easily digestible document that can be widely shared and used interactively. Key features of this report include:
- Comprehensive Overview: Provides situation updates, maps, relevant news, and web resources.
- Accessibility: Designed for easy reading, wide distribution, and interactive use.
- Collaboration: The “unlocked" format enables other responders to share, copy, and adapt seamlessly. The students learn by doing, quickly discovering how and where to find critical information and presenting it in an easily understood manner.
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - WorksheetSritoma Majumder
Introduction
All the materials around us are made up of elements. These elements can be broadly divided into two major groups:
Metals
Non-Metals
Each group has its own unique physical and chemical properties. Let's understand them one by one.
Physical Properties
1. Appearance
Metals: Shiny (lustrous). Example: gold, silver, copper.
Non-metals: Dull appearance (except iodine, which is shiny).
2. Hardness
Metals: Generally hard. Example: iron.
Non-metals: Usually soft (except diamond, a form of carbon, which is very hard).
3. State
Metals: Mostly solids at room temperature (except mercury, which is a liquid).
Non-metals: Can be solids, liquids, or gases. Example: oxygen (gas), bromine (liquid), sulphur (solid).
4. Malleability
Metals: Can be hammered into thin sheets (malleable).
Non-metals: Not malleable. They break when hammered (brittle).
5. Ductility
Metals: Can be drawn into wires (ductile).
Non-metals: Not ductile.
6. Conductivity
Metals: Good conductors of heat and electricity.
Non-metals: Poor conductors (except graphite, which is a good conductor).
7. Sonorous Nature
Metals: Produce a ringing sound when struck.
Non-metals: Do not produce sound.
Chemical Properties
1. Reaction with Oxygen
Metals react with oxygen to form metal oxides.
These metal oxides are usually basic.
Non-metals react with oxygen to form non-metallic oxides.
These oxides are usually acidic.
2. Reaction with Water
Metals:
Some react vigorously (e.g., sodium).
Some react slowly (e.g., iron).
Some do not react at all (e.g., gold, silver).
Non-metals: Generally do not react with water.
3. Reaction with Acids
Metals react with acids to produce salt and hydrogen gas.
Non-metals: Do not react with acids.
4. Reaction with Bases
Some non-metals react with bases to form salts, but this is rare.
Metals generally do not react with bases directly (except amphoteric metals like aluminum and zinc).
Displacement Reaction
More reactive metals can displace less reactive metals from their salt solutions.
Uses of Metals
Iron: Making machines, tools, and buildings.
Aluminum: Used in aircraft, utensils.
Copper: Electrical wires.
Gold and Silver: Jewelry.
Zinc: Coating iron to prevent rusting (galvanization).
Uses of Non-Metals
Oxygen: Breathing.
Nitrogen: Fertilizers.
Chlorine: Water purification.
Carbon: Fuel (coal), steel-making (coke).
Iodine: Medicines.
Alloys
An alloy is a mixture of metals or a metal with a non-metal.
Alloys have improved properties like strength, resistance to rusting.
P-glycoprotein pamphlet: iteration 4 of 4 finalbs22n2s
Ad
Android Lab Test : Creating a dialog Yes/No (english)
1. Develop on Android
Android Lab Test
www.AndroidLabTest.com
Youku
By Bruno Delb
www.weibo.com/brunodelb
i.youku.com/brunodelb | www.weibo.com/brunodelb | blog.delb.cn
http://i.youku.com/brunoparis
Weibo
Officialsite
Lesson : The dialog, YesNo
2. The dialog, YesNo
• In this lesson, you will learn to create and display a
dialog box.
• For this, you will use the Dialog.
3. The dialog, YesNo
• To create a new Dialog, call the method Builder.
AlertDialog.Builder alertDialog = new AlertDialog.Builder(Main.this);
• You can specify an icon with he method setIcon(), a title with the
method setTitle() and a message with the method setMessage().
alertDialog.setIcon(R.drawable.app);
alertDialog.setTitle("Your title");
alertDialog.setMessage("Your message");
4. The dialog, YesNo
• To add a button « positive » (in the meaning of « Yes »), call themethod
setPositiveButton(). Then add a listener OnClickListener and the method
onClick().
alertDialog.setPositiveButton("Yes!", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int arg1) { }
});
• Repeat the operation with a button « negative » (in the meaning of « No »),
with the method setNegativeButton().
alertDialog.setNegativeButton("No!", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int arg1) { }
});
5. The dialog, YesNo
• To manage the action of cancel, call the methode setOnCancelListener.
alertDialog.setOnCancelListener(new DialogInterface.OnCancelListener(){
public void onCancel(DialogInterface dialog) { }
});
• To display the Dialog, call the method show() :
alertDialog.show();
10. Follow me on my channel PengYooTV …
On my Youku channel
http://i.youku.com/brunoparis
Who am I ?
Bruno Delb (www.delb.cn),
Author of the first french book of development of Java mobile application (2002),
Consultant, project manager and developer of social & mobile applications,
let’s talk about your needs ...
And on Weibo :
http://www.weibo.com/brunodelb