我使用android studio 2.2.3并尝试使用tab开发应用程序。但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>
然后按下“制作项目”按钮。但我的android工作室说:
错误:(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”
但其他文件运行良好。 请告诉我应该做些什么。
答案 0 :(得分:2)
创建一个新项目并查看布局xml中的url并用它们替换当前的
答案 1 :(得分:0)
上下文attr belogs to tools xmlns,添加工具xmlns如下 xmlns:tools =“http://schemas.android.com/tools
并将 app:context 替换为工具:上下文