【问题标题】:My Android Studio cannot find http://schemas.android.com/apk/res/android我的 Android Studio 找不到 http://schemas.android.com/apk/res/android
【发布时间】:2017-09-28 02:28:01
【问题描述】:

我使用 Android Studio 2.2.3 并尝试开发一个带有选项卡的应用程序。但应用的 xml 代码有 URL 错误。 我输入以下代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="0dp"
    android:paddingRight="0dp"
    android:paddingTop="0dp"
    app:context="com.example.hojune.prealpha_qna.MainActivity">

<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.v7.widget.Toolbar
            android:layout_height="?attr/actionBarSize"
            android:layout_width="match_parent"
            android:background="?attr/colorPrimaryDark"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            android:elevation="1dp"
            android:id="@+id/toolbar">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textAppearance="@style/Base.TextAppearance.Widget.AppCompat.Toolbar.Title"
                android:text="Learning QnA"/>

        </android.support.v7.widget.Toolbar>

        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:tabMode="fixed"
            app:tabGravity="fill"
            app:tabTextColor="@color/colorPrimary"
            app:tabSelectedTextColor="@color/colorAccent"
            app:elevation="1dp"
            android:background="@android:color/background_light"/>

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

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/container">

    </FrameLayout>

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

然后我按下 Make Project 按钮。但我的 Android Studio 说:

错误:(2) 在包“com.example.hojune.prealpha_qna”中找不到属性“context”的资源标识符
错误:(2) 在包“com.example.hojune.prealpha_qna”中找不到属性“context”的资源标识符

它在下面的代码中显示“URL 未注册”:

“http://schemas.android.com/apk/res/android”
"http://schemas.android.com/apk/res-auto"

但其他文件运行良好。 请告诉我该怎么做。

【问题讨论】:

    标签: android xml


    【解决方案1】:

    创建一个新项目并查看布局xml中的url并用它们替换当前的

    【讨论】:

    • 尝试更新android studio和所有组件
    【解决方案2】:

    context 属性属于tools 命名空间。添加tools命名空间如下:

    xmlns:tools="http://schemas.android.com/tools"
    

    并将app:context 替换为tools:context

    【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-11-04
    • 2013-12-07
    • 1970-01-01
    • 1970-01-01
    • 2021-07-31
    • 1970-01-01
    相关资源
    最近更新 更多