DataBinding中xml 点击事件
2016-08-18 本文已影响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>