美文网首页
DataBinding中xml 点击事件

DataBinding中xml 点击事件

作者: 小张呵呵 | 来源:发表于2016-08-18 10:21 被阅读66次

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto">

<data>
   <variable
     name="activity"
     type="net.prunusmume.databindingsample.ListenerBindActivity" />
 </data>

<RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent">

  <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:text="タップしてね!"
    app:onClickListener="@{activity}" />

</RelativeLayout>

</layout>

相关文章

网友评论

      本文标题:DataBinding中xml 点击事件

      本文链接:https://www.haomeiwen.com/subject/fnrvsttx.html