我使用Android Studio 2.2.3,然后尝试开发带有选项卡的应用程序。但是App的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项目按钮。但是我的Android Studio说:
错误:(2(在包装'com.example.hojune.prealpha_qna中找到属性'上下文'的资源标识符'
的属性"上下文"中找不到资源标识符
错误:(2(在软件包'com.example.hojune.prealpha_qna'
它说" URL"不是登记册在下面的代码中:
&quot http://schemas.android.com/apk/res/android"
&quot" http://schemas.android.com/apk/res-auto"
但是其他文件运行良好。请告诉我我该怎么办。
创建一个新项目并查看布局XML中的URL,然后用它们替换为
context
属性属于tools
名称空间。添加tools
名称空间如下:
xmlns:tools="http://schemas.android.com/tools"
并将app:context
替换为tools:context
。