SlideShare a Scribd company logo
1 of 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

More Related Content

Viewers also liked (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
 

Similar to 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
 

Similar to 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
 

Recently uploaded

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
 
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
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
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
 
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
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
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
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
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
 
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
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
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
 
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
 

Recently uploaded (20)

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?
 
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
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
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
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
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
 
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...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
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
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
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
 
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...
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
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
 
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
 

Android data bind