1.官方文档

  https://developer.android.com/topic/libraries/data-binding/expressions.html

2.绑定表达式的约束

2.1 允许的运算符

符号运算符 + -  
括号运算符 ()  
成员访问运算符 obj.成员 array[indx]
类型运算符 instanceof 类型强转运算符,如(int)data.pi
算数运算符 + - / * % 包括字符串的+ ,如  '@{"image_" + id}'
位运算符 & | ^ ! ~ >>  >>>  <<
关系运算符 == > < >= <= 其中的< 要用html转移字符&lt;
逻辑运算符

&& ||

 
三目运算符

?:

 
非空选择运算符

??

??左边非空就返回左边,否则返回右边,如 @{user.displayName ?? user.lastName}

2.2 不允许的运算符及关键字

  new、super、this、泛型调用

2.3 允许函数调用以及lamda表达式

如:
    android:text="@{String.valueOf(index + 1)}"
    android:onClick="@{() -> presenter.onSaveClick(task)}"

2.4 允许使用集合

声明:

 <data>
<import type="android.util.SparseArray"/>
<import type="java.util.Map"/>
<import type="java.util.List"/>
<variable name="list" type="List&lt;String>"/>
<variable name="sparse" type="SparseArray&lt;String>"/>
<variable name="map" type="Map&lt;String, String>"/>
<variable name="index" type="int"/>
<variable name="key" type="String"/>
</data>

使用:


android:text="@{list[index]}"

android:text="@{sparse[index]}"

android:text="@{map[key]}"

2.5 允许字符常量

两种方式:

单引号内使用双引号

    android:text='@{map["firstName"]}'

或者双引号内使用单引号

    android:text="@{map[`firstName`]}"

2.6 允许使用资源

    android:padding="@{large? @dimen/largePadding : @dimen/smallPadding}"

2.7 import类型

 <data>
<import type="com.example.User"/>
<import type="com.example.MyStringUtils"/>
<import type="java.util.List"/>
<import type="android.view.View"/>
<variable name="user" type="User"/>
<variable name="userList" type="List&lt;User>"/>
</data>

使用:

 <TextView
android:text="@{MyStringUtils.capitalize(user.lastName)}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="@{user.isAdult ? View.VISIBLE : View.GONE}"/>

2.8 类型别名

 <import type="android.view.View"/>
<import type="com.example.real.estate.View"
alias="Vista"/>

2.9 Include

 <?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:bind="http://schemas.android.com/apk/res-auto">
<data>
<variable name="data" type="com.example.databind.Data" />
<variable name="click" type="com.example.databind.Click" />
</data>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:onClick="@{click::onStartClicked}"
android:clickable="true"> <include
android:id="@+id/include"
layout="@layout/include"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:layout_constraintEnd_toEndOf="@+id/frgmt2"
app:layout_constraintStart_toStartOf="@+id/frgmt2"
app:layout_constraintTop_toBottomOf="@+id/frgmt2"
bind:data="@{data}" /> </androidx.constraintlayout.widget.ConstraintLayout> </layout>

其中

  • xmlns:bind="http://schemas.android.com/apk/res-auto" 声明 bind
  • layout指定的布局是一个完整的数据绑定布局文件。
  • 数据绑定不支持 <merge> include,如下:
     <?xml version="1.0" encoding="utf-8"?>
    <layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:bind="http://schemas.android.com/apk/res-auto">
    <data>
    <variable name="user" type="com.example.User"/>
    </data>
    <merge><!-- Doesn't work -->
    <include layout="@layout/name" bind:user="@{user}"/>
    </merge>
    </layout>

3.绑定事件

3.1 两种方法

方法 指定事件处理函数  绑定事件监听器

参数要求

参数与返回值必须与listener对应的事件函数一致,如View.OnClickListener(View v)

可任意参数,返回值要与对应事件处理函数一致。

listener创建时机

指定的方法不为空时,才创建。

绑定数据对象时就创建,始终存在。

3.2 指定处理函数示例

第一步:定义处理事件的方法,它的参数要与对应的listener一样

 public class Click {
public void onBackGroundClicked(View view){ }
}

第二步:在layout定义指定处理事件的方法

 <?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<variable name="data" type="com.example.databind.Data" />
<variable name="click" type="com.example.databind.Click" />
</data>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:onClick="@{click::onStartClicked}"
android:clickable="true">
... </androidx.constraintlayout.widget.ConstraintLayout> </layout>

第三步:关联方法

     private FrgmtMainBinding    binding;

     private void init(View view){
binding = DataBindingUtil.bind(view); MainActivity main = (MainActivity) getActivity(); binding.setData(main.data);
binding.setClick(new Click());
}

3.2 绑定事件监听器示例

监听器代码:

 public class Click {
public void onResetClicked(Data data){
data.key = "time";
data.value = ;
}
}

在layout中绑定:

 <?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<variable name="data" type="com.example.databind.Data" />
<variable name="click" type="com.example.databind.Click" />
</data>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:onClick="@{click::onStartClicked}"
android:clickable="true"> <Button
android:id="@+id/reset"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:text="reset"
android:onClick="@{() -> click.onResetClicked(data)}"
android:textAllCaps="false"
app:layout_constraintBottom_toBottomOf="@+id/start"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/stop"
app:layout_constraintTop_toTopOf="@+id/start"
app:layout_constraintVertical_bias="1.0" /> </androidx.constraintlayout.widget.ConstraintLayout> </layout>

其中:

  第22行的是lamda表达式,也可以把指定参数。

    android:onClick="@{(view) -> click.onResetClicked(data)}"
												

最新文章

  1. Ajax详解
  2. svn sync主从同步学习
  3. Java面试查漏补缺
  4. C#~异步编程续~.net4.5主推的await&amp;async应用(转)
  5. nyoj 171 聪明的kk
  6. [学习Vulkan之一] 初识Vulkan
  7. SQL级联删除——删除主表同时删除从表——同时删除具有主外键关系的表
  8. AWVS漏洞测试-02节-添加一个简单的新闻系统
  9. stripslashes — 反引用一个引用字符串
  10. git服务器搭建-new
  11. IIS 7 WAS服务不可用
  12. 从ZOJ2114(Transportation Network)到Link-cut-tree(LCT)
  13. R语言 数据的输入方式总结
  14. apache FtpServer 整合spring部署
  15. Snapman设计中的思考
  16. HDU 2503 a/b + c/d(最大公约数与最小公倍数,板子题)
  17. Element-ui使用技巧
  18. 解读 IoC 框架 InversifyJS
  19. Java基础8-多线程;同步代码块
  20. iview表格高度自适应只需要三步即可

热门文章

  1. 02.MyBatis在DAO层开发使用的Mapper动态代理方式
  2. [转]C#多线程学习 之 线程池[ThreadPool]
  3. SpringBoot配置自定义日期参数转换器
  4. day 45 前端CSS
  5. Python学习day34-面向对象和网络编程总结
  6. elasticsearch 中文API(一)
  7. Codeforces 486D. Valid Sets
  8. C语言源代码——计算任何一天是星期几
  9. Android 开发 防止按键连续点击
  10. 延迟对象deferred