Activity_my.xml不匹配,试图按照android教程

时间:2015-10-25 05:17:00

标签: xml android-activity android-studio

我正在关注Android教程制作应用程序,并且可以访问此页面: http://developer.android.com/training/basics/firstapp/building-ui.html

我已按照所有说明操作,但我的" activity_my.xml"文件显示:

    <?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    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:layout_width="match_parent"
    android:layout_height="match_parent" android:fitsSystemWindows="true"
    tools:context=".MyActivity">

    <android.support.design.widget.AppBarLayout android:layout_height="wrap_content"
        android:layout_width="match_parent" android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar android:id="@+id/toolbar"
            android:layout_width="match_parent" android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary" app:popupTheme="@style/AppTheme.PopupOverlay" />

    </android.support.design.widget.AppBarLayout>

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

    <android.support.design.widget.FloatingActionButton android:id="@+id/fab"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:layout_gravity="bottom|end" android:layout_margin="@dimen/fab_margin"
        android:src="@android:drawable/ic_dialog_email" />

</android.support.design.widget.CoordinatorLayout>

虽然教程显示代码应该是这个(或者它的一部分,但我不是100%肯定):

<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" >
</LinearLayout>

我似乎无法在我的&#34; activity_my.xml&#34;中找到上述代码。文件。任何人都可以告诉我我做错了什么,或者我是否错过了一步?

编辑: 查看教程中应该包含的代码&#34; activity_my.xml&#34;而是在&#34; content_my.xml&#34;文件。这是对的吗?

3 个答案:

答案 0 :(得分:3)

最简单的解决方案如下:

在“添加活动到”下,选择“空白活动”,然后单击“下一步”。

请勿使用“空白活动”。使用“空活动”。

答案 1 :(得分:1)

不要担心它只是使用android提供的支持库而这个CoordinatorLayout和其他东西是由android studio自动生成的,所以你可以按照材料设计。如果你想要按照教程,你可以复制粘贴LinearLayout代码。(LinearLayout是你在旧的android工作室中创建新的Activity以及布局时的默认布局) / p>

答案 2 :(得分:0)

我注意到同样的问题。查看content_main.xml。你会在那里找到<LinearLayout>标签,并能够按照书面的说明继续学习。