我正在尝试此链接的教程: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的新手。
答案 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"
它现在有效。