DataBinding中xml 點選事件

weixin_33850890發表於2016-08-18

<?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>

相關文章