Android Studio错误:在'com.example.parthp.myapplication'包中找不到属性'layout_behavior'的资源标识符

时间:2016-01-19 06:12:18

标签: android

我正在尝试此链接的教程:https://developer.android.com/training/basics/firstapp/building-ui.html

当我按照教程中的描述编辑xml代码时,它开始显示错误(我在这个问题的标题中提到过)。

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    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">

我认为工具有问题:showIn =“@ layout / activity_my”因为当我删除它时一切正常。

PS:我是android的新手。

3 个答案:

答案 0 :(得分:0)

您将错过布局文件夹中的activity_my包含content_my.xml文件

content_my.xml的简单代码将是

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout_root"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">


 </RelativeLayout>

答案 1 :(得分:0)

您必须创建activity_my.xml文件。

在代码的最后一行,您告诉编译器xml布局(您在问题中已经描述过)应该显示在activity_my.xml文件中。

创建activity_my.xml文件并将此布局包含在该文件中。

该文件可能类似于:

<RelativeLayout
    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:fitsSystemWindows="true"
    tools:context=".MainActivity">

    <include layout="@layout/content_main" />

</RelativeLayout>

content_main将是您在问题中发布的xml代码的文件名。

答案 2 :(得分:0)

我刚刚改变了

tools:showIn="@layout/activity_my"

tools:showIn="@layout/activity_my.xml"

它现在有效。