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
网友评论