SlideShare una empresa de Scribd logo
1 de 25
2013.05.022013.05.02
Android apps development IAndroid apps development I
- How to build your first app.- How to build your first app.
Introduction ofIntroduction of
2013.05.022013.05.02
ContentContent
 UI & Environment Intro.UI & Environment Intro.
 Say Hello World!Say Hello World!
 Layout Intro.Layout Intro.
 Add the behaviorAdd the behavior

2013.05.022013.05.02
 srcsrc
•
javajava 原始碼原始碼
 res (resource)res (resource)
•
iconsicons
•
layoutlayout
•
string...etc.string...etc.
 libslibs 靜態函式庫靜態函式庫
Package ExplorerPackage Explorer
2013.05.022013.05.02
LayoutLayout
Let's see RAW content (.xml)Let's see RAW content (.xml)
2013.05.022013.05.02
Layout – res / layout / main.xmlLayout – res / layout / main.xml
2013.05.022013.05.02
Layout StructureLayout Structure
 ViewGroupViewGroup
●
A layout or container such asA layout or container such as RelativeLayoutRelativeLayout
oror LinearLayoutLinearLayout
 ViewView
●
A child of ViewGroup such asA child of ViewGroup such as buttonbutton oror texttext
fieldfield
2013.05.022013.05.02
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
Layout – View (TextView)Layout – View (TextView)
@ 代表一個 pointer ,指向真正的字串內容
2013.05.022013.05.02
Layout – res / values / strings.xmlLayout – res / values / strings.xml
for i18n purpose
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Hello World</string>
<string name="action_settings">Settings</string>
<string name="hello_world">Hello world!</string>
</resources>
2013.05.022013.05.02
Add behaviorAdd behavior
Scenerio:
畫面上有一顆按鈕,當按下按鈕
後,在其下方出現預藏的文字。
2013.05.022013.05.02
Add behavior (cont.)Add behavior (cont.)
1. Add a button
2. Hide the text
3. Make the button show text
2013.05.022013.05.02
Add behavior (cont.)Add behavior (cont.)
1. Add a button1. Add a button
1-1. 利用滑鼠 曳新增一按鈕拖
1-2. 設定按鈕上的提示文字
2013.05.022013.05.02
Add behavior (cont.)Add behavior (cont.)
2. Hide the text2. Hide the text
android:visibility="invisible"
 Just add the attribution to TextViewJust add the attribution to TextView
But how do I know what
attribution I can use?
2013.05.022013.05.02
Add behavior (cont.)Add behavior (cont.)
2. Hide the text2. Hide the text
 Go toGo to android developer siteandroid developer site
•
ReferenceReference
•
android.wigetandroid.wiget
•
TextViewTextView
•
Inherited XML AttributesInherited XML Attributes
•
Attribute NameAttribute Name
•
android:visibilityandroid:visibility
2013.05.022013.05.02
Add behavior (cont.)Add behavior (cont.)
Invisible
你看不到我,你看不到我
但是 ... 仍然佔據空間
2013.05.022013.05.02
Add behavior (cont.)Add behavior (cont.)
3. Make the button show text3. Make the button show text
3-1. add the attribution to button3-1. add the attribution to button
android:onClick="android:onClick="showTextshowText""
3-2. write the code of3-2. write the code of showTextshowText
methodmethod
2013.05.022013.05.02
Add behavior (cont.)Add behavior (cont.)
3. Make the button show text3. Make the button show text
3-1. add the attribution to button3-1. add the attribution to button
android:onClick="android:onClick="showTextshowText""
3-2. write the code of3-2. write the code of showTextshowText
methodmethod
2013.05.022013.05.02
Add behavior (cont.)Add behavior (cont.)
3. Make the button show text3. Make the button show text
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/btn_click_text"
android:onClick="showText" />
main.xml
2013.05.022013.05.02
Add behavior (cont.)Add behavior (cont.)
3. Make the button show text3. Make the button show text
Main.java
public void showText (View view) {
// - 宣告元件
// - 操作元件
}
2013.05.022013.05.02
Add behavior (cont.)Add behavior (cont.)
3. Make the button show text3. Make the button show text
Bridge to XML & JAVA
.xml .java
R.* 資源檔
findViewById
2013.05.022013.05.02
Add behavior (cont.)Add behavior (cont.)
3. Make the button show text3. Make the button show text
findViewById example
// 在 Main.java 中宣告 UI 中的 button1
Button button = (Button) findViewById (R.id.button1);
// 在 Main.java 中宣告 UI 中的 TextView
TextView textView = (TextView) findViewById (R.id.tv1);
Main.java
2013.05.022013.05.02
Add behavior (cont.)Add behavior (cont.)
3. Make the button show text3. Make the button show text
R.id.tv1 ?什麼東西?好像沒看過?
TextView 預設沒給定操作 id ,加上它吧!
main.xml
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/button1"
android:id="@+id/tv1"
android:text="@string/hello_world"
android:visibility="invisible" />
2013.05.022013.05.02
Add behavior (cont.)Add behavior (cont.)
3. Make the button show text3. Make the button show text
Main.java
public void showText(View view) {
Button button = (Button) findViewById(R.id.button1);
TextView tv1 = (TextView) findViewById(R.id.tv1);
tv1.setVisibility(View.VISIBLE);
}
2013.05.022013.05.02
Again, how do I know
what method I can use?
Add behavior (cont.)Add behavior (cont.)
2013.05.022013.05.02
 Go toGo to android developer siteandroid developer site
•
ReferenceReference
•
android.wigetandroid.wiget
•
TextViewTextView
•
Inherited XML AttributesInherited XML Attributes
•
Related MethodRelated Method
•
setVisibility(int)setVisibility(int)
Add behavior (cont.)Add behavior (cont.)
2013.05.022013.05.02
Thanks!

Más contenido relacionado

Destacado

Votação do Deputado Estadual em Ijuí
Votação do Deputado Estadual em IjuíVotação do Deputado Estadual em Ijuí
Votação do Deputado Estadual em IjuíPortal Ijuhy
 
Reload hair medica slideshare 6.3 (2)
Reload hair medica slideshare 6.3 (2)Reload hair medica slideshare 6.3 (2)
Reload hair medica slideshare 6.3 (2)Laurie Reda
 
Proyecto integrado igss pedia modificado
Proyecto integrado igss pedia modificadoProyecto integrado igss pedia modificado
Proyecto integrado igss pedia modificadoBioeticaguate
 
Bab4masakan 091220042254-phpapp02
Bab4masakan 091220042254-phpapp02Bab4masakan 091220042254-phpapp02
Bab4masakan 091220042254-phpapp02Siti Nabila Biela
 
Presentación Carlos Carvajal- eCommerce Day Santiago 2015
Presentación Carlos Carvajal- eCommerce Day Santiago 2015 Presentación Carlos Carvajal- eCommerce Day Santiago 2015
Presentación Carlos Carvajal- eCommerce Day Santiago 2015 eCommerce Institute
 
Dale dentido y dirección a tus propósitos. 1er aniversario de la Fundacion J...
Dale dentido y dirección a tus propósitos.  1er aniversario de la Fundacion J...Dale dentido y dirección a tus propósitos.  1er aniversario de la Fundacion J...
Dale dentido y dirección a tus propósitos. 1er aniversario de la Fundacion J...Cristmar
 
Human Centric Retail - Fujitsu
Human Centric Retail - FujitsuHuman Centric Retail - Fujitsu
Human Centric Retail - FujitsuMathieu FRANCOIS
 
Normas Ortográficas Básicas
Normas Ortográficas BásicasNormas Ortográficas Básicas
Normas Ortográficas Básicasjchamorro330
 
Top 10 liaison nurse interview questions and answers
Top 10 liaison nurse interview questions and answersTop 10 liaison nurse interview questions and answers
Top 10 liaison nurse interview questions and answerstonychoper8006
 
Fundamentos higiene y seguridad industrial
Fundamentos higiene y seguridad industrialFundamentos higiene y seguridad industrial
Fundamentos higiene y seguridad industrialAdrian Barreto
 

Destacado (17)

Votação do Deputado Estadual em Ijuí
Votação do Deputado Estadual em IjuíVotação do Deputado Estadual em Ijuí
Votação do Deputado Estadual em Ijuí
 
Internet
InternetInternet
Internet
 
Reload hair medica slideshare 6.3 (2)
Reload hair medica slideshare 6.3 (2)Reload hair medica slideshare 6.3 (2)
Reload hair medica slideshare 6.3 (2)
 
Futbol
FutbolFutbol
Futbol
 
Proyecto integrado igss pedia modificado
Proyecto integrado igss pedia modificadoProyecto integrado igss pedia modificado
Proyecto integrado igss pedia modificado
 
Tecnicas visuales graficas
Tecnicas visuales graficasTecnicas visuales graficas
Tecnicas visuales graficas
 
Bab4masakan 091220042254-phpapp02
Bab4masakan 091220042254-phpapp02Bab4masakan 091220042254-phpapp02
Bab4masakan 091220042254-phpapp02
 
Presentación Carlos Carvajal- eCommerce Day Santiago 2015
Presentación Carlos Carvajal- eCommerce Day Santiago 2015 Presentación Carlos Carvajal- eCommerce Day Santiago 2015
Presentación Carlos Carvajal- eCommerce Day Santiago 2015
 
Dale dentido y dirección a tus propósitos. 1er aniversario de la Fundacion J...
Dale dentido y dirección a tus propósitos.  1er aniversario de la Fundacion J...Dale dentido y dirección a tus propósitos.  1er aniversario de la Fundacion J...
Dale dentido y dirección a tus propósitos. 1er aniversario de la Fundacion J...
 
Sara garcia
Sara garciaSara garcia
Sara garcia
 
Arte
ArteArte
Arte
 
GNL Cadena de valor
GNL Cadena de valorGNL Cadena de valor
GNL Cadena de valor
 
Human Centric Retail - Fujitsu
Human Centric Retail - FujitsuHuman Centric Retail - Fujitsu
Human Centric Retail - Fujitsu
 
Normas Ortográficas Básicas
Normas Ortográficas BásicasNormas Ortográficas Básicas
Normas Ortográficas Básicas
 
Top 10 liaison nurse interview questions and answers
Top 10 liaison nurse interview questions and answersTop 10 liaison nurse interview questions and answers
Top 10 liaison nurse interview questions and answers
 
Presentacio
PresentacioPresentacio
Presentacio
 
Fundamentos higiene y seguridad industrial
Fundamentos higiene y seguridad industrialFundamentos higiene y seguridad industrial
Fundamentos higiene y seguridad industrial
 

Similar a 2013.05.02 android-l1

Android Custom views
Android Custom views   Android Custom views
Android Custom views Matej Vukosav
 
Android howto hellowidget
Android howto hellowidgetAndroid howto hellowidget
Android howto hellowidgetHiron Das
 
Beginning Native Android Apps
Beginning Native Android AppsBeginning Native Android Apps
Beginning Native Android AppsGil Irizarry
 
Android apps development
Android apps developmentAndroid apps development
Android apps developmentMonir Zzaman
 
行動App開發管理實務 unit2
行動App開發管理實務 unit2行動App開發管理實務 unit2
行動App開發管理實務 unit2Xavier Yin
 
Different types of sticker apps
Different types of sticker appsDifferent types of sticker apps
Different types of sticker appsJelena Krmar
 
OroCommerce Storefront Design. Non-standard Layout Customisation.
OroCommerce Storefront Design. Non-standard Layout Customisation.OroCommerce Storefront Design. Non-standard Layout Customisation.
OroCommerce Storefront Design. Non-standard Layout Customisation.Andrew Yatsenko
 
Android Tutorial
Android TutorialAndroid Tutorial
Android TutorialFun2Do Labs
 
AngularJS training - Day 1 - Basics: Why, What and basic features of AngularJS
AngularJS training - Day 1 - Basics: Why, What and basic features of AngularJSAngularJS training - Day 1 - Basics: Why, What and basic features of AngularJS
AngularJS training - Day 1 - Basics: Why, What and basic features of AngularJSmurtazahaveliwala
 
Lec005 android start_program
Lec005 android start_programLec005 android start_program
Lec005 android start_programEyad Almasri
 
Android Workshop
Android WorkshopAndroid Workshop
Android WorkshopJunda Ong
 
Testing android apps with espresso
Testing android apps with espressoTesting android apps with espresso
Testing android apps with espressoÉdipo Souza
 
Yeoman AngularJS and D3 - A solid stack for web apps
Yeoman AngularJS and D3 - A solid stack for web appsYeoman AngularJS and D3 - A solid stack for web apps
Yeoman AngularJS and D3 - A solid stack for web appsclimboid
 

Similar a 2013.05.02 android-l1 (20)

Android Custom views
Android Custom views   Android Custom views
Android Custom views
 
Android how to hellowidget
Android how to hellowidgetAndroid how to hellowidget
Android how to hellowidget
 
Android howto hellowidget
Android howto hellowidgetAndroid howto hellowidget
Android howto hellowidget
 
Ap quiz app
Ap quiz appAp quiz app
Ap quiz app
 
Beginning Native Android Apps
Beginning Native Android AppsBeginning Native Android Apps
Beginning Native Android Apps
 
Android apps development
Android apps developmentAndroid apps development
Android apps development
 
Django web framework
Django web frameworkDjango web framework
Django web framework
 
04 objective-c session 4
04  objective-c session 404  objective-c session 4
04 objective-c session 4
 
行動App開發管理實務 unit2
行動App開發管理實務 unit2行動App開發管理實務 unit2
行動App開發管理實務 unit2
 
Different types of sticker apps
Different types of sticker appsDifferent types of sticker apps
Different types of sticker apps
 
OroCommerce Storefront Design. Non-standard Layout Customisation.
OroCommerce Storefront Design. Non-standard Layout Customisation.OroCommerce Storefront Design. Non-standard Layout Customisation.
OroCommerce Storefront Design. Non-standard Layout Customisation.
 
Angularjs 2
Angularjs 2 Angularjs 2
Angularjs 2
 
Android Tutorial
Android TutorialAndroid Tutorial
Android Tutorial
 
AngularJS training - Day 1 - Basics: Why, What and basic features of AngularJS
AngularJS training - Day 1 - Basics: Why, What and basic features of AngularJSAngularJS training - Day 1 - Basics: Why, What and basic features of AngularJS
AngularJS training - Day 1 - Basics: Why, What and basic features of AngularJS
 
Lec005 android start_program
Lec005 android start_programLec005 android start_program
Lec005 android start_program
 
Android Workshop
Android WorkshopAndroid Workshop
Android Workshop
 
Testing android apps with espresso
Testing android apps with espressoTesting android apps with espresso
Testing android apps with espresso
 
Yeoman AngularJS and D3 - A solid stack for web apps
Yeoman AngularJS and D3 - A solid stack for web appsYeoman AngularJS and D3 - A solid stack for web apps
Yeoman AngularJS and D3 - A solid stack for web apps
 
ANDROID USING SQLITE DATABASE ADMINISTRATORS ~HMFTJ
ANDROID USING SQLITE DATABASE ADMINISTRATORS ~HMFTJANDROID USING SQLITE DATABASE ADMINISTRATORS ~HMFTJ
ANDROID USING SQLITE DATABASE ADMINISTRATORS ~HMFTJ
 
Bootstrap with liferay
Bootstrap with liferayBootstrap with liferay
Bootstrap with liferay
 

Último

Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbuapidays
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusZilliz
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 

Último (20)

Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 

2013.05.02 android-l1