我刚刚安装了新的 Android Studio,在遵循 android 开发人员培训指南 ( http://developer.android.com/training/index.html ) 时遇到了一些麻烦。
每次我尝试编译我的代码时,我都会收到此错误“Gradle: No resource identifier found for attribute 'android.onClick' in package 'android'”
我最初的搜索导致我检查了我的 API 级别和 onClick 的大小写(这两个似乎都不是问题)((我也明白使用 onClick 不是最佳实践,但我现在只是按照指南进行操作))因为收到此错误,我尝试手动重新安装 gradle。有谁知道我的问题是什么?
另外,代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<EditText android:id="@+id/edit_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@+string/edit_message" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"
android:android.onClick="sendMessage" />
</LinearLayout>