我是Android应用程序开发的新手,在遵循教程后不断遇到以下错误我不断收到错误

时间:2016-04-27 01:40:51

标签: android xml

这是我一直在使用的教程,我对此非常陌生

http://developer.android.com/training/basics/firstapp/building-ui.html

我一直收到这些错误

错误:(2)在'com.example。(myname).mynewapp'中找不到属性'layout_behavior'的资源标识符

错误:(9,26)找不到与给定名称匹配的资源(在'layout_behavior'中,值为'@ string / appbar_scrolling_view_behavior')。

错误:任务':app:processDebugResources'的执行失败。 com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程'命令'C:\ Users(myname)\ AppData \ Local \ Android \ Sdk \ build-tools \ 23.0.3 \ aapt.exe''以非零退出值1结束

这是我的代码

`<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
   tools:showIn="@layout/activity_my">
<EditText android:id="@+id/edit_message"
    android:layout_weight="1"
    android:layout_width="0dp"
    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" />
</LinearLayout>`

非常感谢任何想出这个问题的人

1 个答案:

答案 0 :(得分:0)

将此添加到app模块的build.gradle中的依赖项:

compile 'com.android.support:design:23.1.0'

而不是23.1.0使用您在项目中使用的任何版本。