我正在使用数据绑定库,我在Android Studio 3.0中遇到以下问题:
somelayout.xml:
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="meeting"
type="some.package.MeetingStatusResponse"/>
</data>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{meeting.title}"
tools:text="Title"
/>
...
</LinearLayout>
</layout>
在这个位置:android:text="@{meeting.title}"
Android Studio 3.0强调@符号并告知错误:
Error:(29, 27) <expr> or <lambda expression> expected, got '@'
模型类是在Kotlin中编写的,如果它有任何相关性。 代码完成也不适用于绑定类。 可以使用gradle命令和Android Studio运行应用按钮成功构建应用程序。所以这只是编辑问题。
我在Mac上观察到这个问题。在Windows上它可以正常工作。我没有更多的计算机来检查它是否与平台有关。
答案 0 :(得分:1)
也许您忘了添加gradle compileOptions
?
`sourceCompatibility JavaVersion.VERSION_1_7`
`targetCompatibility JavaVersion.VERSION_1_7`