SlideShare ist ein Scribd-Unternehmen logo
1 von 17
Começando no Data Bind
Rogério C. Santos
Sobre
Tech Lead - Sambatech - Kast (iOS, Android, back-end, front-end)
Bacharel S.I Puc - MG
Especialização Testes - UFPE Cin/Motorola
Mestrado Puc - MG
PalmOS, JavaME, C/C++, JavaEE, Linux/Unix ..
Puc, Una, Cefet MG, Uni, Izabela Hendrix …
GetSet, Netbee, .MOBI, Avenue Code, Lalubema, Stefanini …
Hobby desenvolvimento de jogos
Data Bind
O databind é uma maneira simples e robusta de ligar seus dados a UI sem precisar
utilizar aquela salada de código java para inserir ou ler dados das views.
Facilita testes de unitários em UI
public class Login {
private String email;
private String password;
}
...
EditText edtEmail = (EditText) findViewById(R.id.email);
EditText edtPassword = (EditText) findViewById(R.id.password);
...
login.setEmail(edtEmail.getText());
login.setPassword(edtPassword.getText());
Binding
ActivityLoginBinding binding = DataBindingUtil.setContentView(this,R.layout.activity_login);
Login login = new Login("rogerio.celestino@gmail.com","1234");
binding.setLoginview(login);
Setup
//<app-module>/build.gradle
apply plugin: "com.android.application"
android {
dataBinding {
enabled = true
}
}
}
Mudanças no layout
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout ...>
<AutoCompleteTextView
android:id="@+id/email" ../>
<EditText
android:id="@+id/password" .../>
</LinearLayout>
</layout>
res/layout/activity_login.xml
ActivityLoginBinding
activity_login.xml
ActivityLoginBinding binding = DataBindingUtil.setContentView(this,R.layout.activity_login);
binding.email.setText("rogerio.celestino@gmail.com");
Id da view
Good by FindViewByID :D
CamelCase/Nome
do layout
res/layout/activity_login.xml
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data class="LoginBinding">
...
</data>
LoginActivity.java
public class LoginActivity extends AppCompatActivity {
protected void onCreate(Bundle savedInstanceState) {
...
LoginBinding binding = DataBindingUtil.setContentView(this,R.layout.activity_login);
…
}
…
}
Binding utils
DataBindingUtil.setContentView(activity, layoutId);
DataBindingUtil.inflate(inflater, layoutId, parent, attachToParrent);
ListItemBinding binding = ListItemBinding.bind(viewRoot);
Qualquer view
Activities
View já
prontas/inflated
Mapeando Objetos
public class Login {
private String email;
private String password;
}
...
EditText edtEmail = (EditText) findViewById(R.id.email);
EditText edtPassword = (EditText) findViewById(R.id.password);
...
login.setEmail(edtEmail.getText());
login.setPassword(edtPassword.getText());
Mapeando Objetos
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data class="LoginBinding">
<variable name="loginview"
type="com.rogerio.databindsample.model.Login"/>
</data>
<LinearLayout
<AutoCompleteTextView android:text="@{loginview.email}"../.>
<EditText android:text="@{loginview.password}" .../>
</LinearLayout>
</layout>
Mapeando Objetos
ActivityLoginBinding binding = DataBindingUtil.setContentView(this,R.layout.activity_login);
Login login = new Login("rogerio.celestino@mgail.com","1234");
binding.setLoginview(login);
Mão Dupla
public class ViewLogin extends BaseObservable {
Login login;
public ViewLogin(Login login) {
this.login = login;
}
@Bindable
public String getEmail() {
return login.getEmail();
}
public void setEmail(String email) {
login.setEmail(email);
notifyPropertyChanged(BR.email);
}
public void setPassword(String password) {
login.setPassword(password);
notifyPropertyChanged(BR.password);
}
@Bindable
public String getPassword(){
return login.getPassword();
}
}
Mapeando Objetos
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data class="LoginBinding">
<variable name="loginview"
type="com.rogerio.databindsample.model.view.ViewLogin"/>
</data>
<LinearLayout
<AutoCompleteTextView android:text="@={loginview.email}"../.>
<EditText android:text="@{loginview.password}" .../>
</LinearLayout>
</layout>
Referências
Dominando o Data Binding no Android
http://www.slideshare.net/nglauber/dominando-o-data-binding-no-android
Deep dive into Android Data Binding
http://www.slideshare.net/radekpiekarz/deep-dive-into-android-data-binding
Obrigado!
www.rogeriocs.com.br

Weitere ähnliche Inhalte

Andere mochten auch (15)

Detalhe flp revista_set_01x_ct_spread
Detalhe flp revista_set_01x_ct_spreadDetalhe flp revista_set_01x_ct_spread
Detalhe flp revista_set_01x_ct_spread
 
Los 266 papas de la iglesia
Los 266 papas de la iglesiaLos 266 papas de la iglesia
Los 266 papas de la iglesia
 
El ser... el deber ser..2
El ser... el deber ser..2El ser... el deber ser..2
El ser... el deber ser..2
 
從台灣社會音樂聯合考級曲目和通過率的關係探討現今鋼琴學習者的共通性
從台灣社會音樂聯合考級曲目和通過率的關係探討現今鋼琴學習者的共通性從台灣社會音樂聯合考級曲目和通過率的關係探討現今鋼琴學習者的共通性
從台灣社會音樂聯合考級曲目和通過率的關係探討現今鋼琴學習者的共通性
 
Postal nadal 2012 Escola Rubén Darío
Postal nadal 2012 Escola Rubén DaríoPostal nadal 2012 Escola Rubén Darío
Postal nadal 2012 Escola Rubén Darío
 
El graznido de las chachalacas 500
El graznido de las chachalacas 500El graznido de las chachalacas 500
El graznido de las chachalacas 500
 
DidáCtica De La InformáTica
DidáCtica De La InformáTicaDidáCtica De La InformáTica
DidáCtica De La InformáTica
 
Catálogo do III BAFF
Catálogo do III BAFF Catálogo do III BAFF
Catálogo do III BAFF
 
Césio 137
Césio 137Césio 137
Césio 137
 
Nomeacoes 6, 8 e 9 junho 2012
Nomeacoes 6, 8 e 9 junho 2012Nomeacoes 6, 8 e 9 junho 2012
Nomeacoes 6, 8 e 9 junho 2012
 
978 85-397-0769-0
978 85-397-0769-0978 85-397-0769-0
978 85-397-0769-0
 
Los papas
Los papasLos papas
Los papas
 
Daniel Loja OA V50 B11
Daniel Loja OA V50 B11Daniel Loja OA V50 B11
Daniel Loja OA V50 B11
 
Esta es la_fundacion_clara_de_asis_2010
Esta es la_fundacion_clara_de_asis_2010Esta es la_fundacion_clara_de_asis_2010
Esta es la_fundacion_clara_de_asis_2010
 
El argentino n# 2621 2 2-121
El argentino n# 2621 2 2-121El argentino n# 2621 2 2-121
El argentino n# 2621 2 2-121
 

Ähnlich wie Android data bind

FAESA CONENCO 2013: Sencha Touch 2 + PhoneGap
FAESA CONENCO 2013: Sencha Touch 2 + PhoneGapFAESA CONENCO 2013: Sencha Touch 2 + PhoneGap
FAESA CONENCO 2013: Sencha Touch 2 + PhoneGapLoiane Groner
 
K-9 Mail for Android
K-9 Mail for AndroidK-9 Mail for Android
K-9 Mail for AndroidJesse Vincent
 
Bootstrapping with Javascript (Meteor + Electron)
Bootstrapping with Javascript (Meteor + Electron)Bootstrapping with Javascript (Meteor + Electron)
Bootstrapping with Javascript (Meteor + Electron)Arthur Breton
 
iPhone/iPad Development with Titanium
iPhone/iPad Development with TitaniumiPhone/iPad Development with Titanium
iPhone/iPad Development with TitaniumAxway Appcelerator
 
Appcelerator iPhone/iPad Dev Con 2010 San Diego, CA
Appcelerator iPhone/iPad Dev Con 2010 San Diego, CAAppcelerator iPhone/iPad Dev Con 2010 San Diego, CA
Appcelerator iPhone/iPad Dev Con 2010 San Diego, CAJeff Haynie
 
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NCAndroid Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NCJim Tochterman
 
CV Template per Developer
CV Template per DeveloperCV Template per Developer
CV Template per DeveloperInnovAction Lab
 
CV Template per Ingegneri
CV Template per IngegneriCV Template per Ingegneri
CV Template per IngegneriInnovAction Lab
 
There's more than web
There's more than webThere's more than web
There's more than webMatt Evans
 
lalit.resume -GGN
lalit.resume -GGNlalit.resume -GGN
lalit.resume -GGNLalit Bhati
 

Ähnlich wie Android data bind (20)

Cur -Vitae
Cur -VitaeCur -Vitae
Cur -Vitae
 
Resume manali deshmukh
Resume manali deshmukh Resume manali deshmukh
Resume manali deshmukh
 
Mobilize.Me
Mobilize.MeMobilize.Me
Mobilize.Me
 
FAESA CONENCO 2013: Sencha Touch 2 + PhoneGap
FAESA CONENCO 2013: Sencha Touch 2 + PhoneGapFAESA CONENCO 2013: Sencha Touch 2 + PhoneGap
FAESA CONENCO 2013: Sencha Touch 2 + PhoneGap
 
Network Engineer CV
Network Engineer  CVNetwork Engineer  CV
Network Engineer CV
 
yasmin said
yasmin saidyasmin said
yasmin said
 
Ketan H Murudkar
Ketan H MurudkarKetan H Murudkar
Ketan H Murudkar
 
K-9 Mail for Android
K-9 Mail for AndroidK-9 Mail for Android
K-9 Mail for Android
 
Bootstrapping with Javascript (Meteor + Electron)
Bootstrapping with Javascript (Meteor + Electron)Bootstrapping with Javascript (Meteor + Electron)
Bootstrapping with Javascript (Meteor + Electron)
 
iPhone/iPad Development with Titanium
iPhone/iPad Development with TitaniumiPhone/iPad Development with Titanium
iPhone/iPad Development with Titanium
 
Appcelerator iPhone/iPad Dev Con 2010 San Diego, CA
Appcelerator iPhone/iPad Dev Con 2010 San Diego, CAAppcelerator iPhone/iPad Dev Con 2010 San Diego, CA
Appcelerator iPhone/iPad Dev Con 2010 San Diego, CA
 
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NCAndroid Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
 
IoT on Raspberry Pi
IoT on Raspberry PiIoT on Raspberry Pi
IoT on Raspberry Pi
 
CV Template per Developer
CV Template per DeveloperCV Template per Developer
CV Template per Developer
 
CV Template per Ingegneri
CV Template per IngegneriCV Template per Ingegneri
CV Template per Ingegneri
 
There's more than web
There's more than webThere's more than web
There's more than web
 
MASOUD KALANTARI-CV-New
MASOUD KALANTARI-CV-NewMASOUD KALANTARI-CV-New
MASOUD KALANTARI-CV-New
 
Elangovan Sengottuvel
Elangovan SengottuvelElangovan Sengottuvel
Elangovan Sengottuvel
 
Shams's Resume
Shams's ResumeShams's Resume
Shams's Resume
 
lalit.resume -GGN
lalit.resume -GGNlalit.resume -GGN
lalit.resume -GGN
 

Kürzlich hochgeladen

A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
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
 
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
 
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
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 

Kürzlich hochgeladen (20)

A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 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
 
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
 
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
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 

Android data bind