缺少资源名称

时间:2015-06-19 00:01:08

标签: android

如果这是一个非常愚蠢的问题,我道歉。我努力在网站上找到答案。

我是Android的新手。当我运行第一个样本" Hello world"安装Android Studio时出现的应用程序,其中一行有一个问题叫做#34;缺少资源名称"在以下代码的@ + id。

如何解决此问题?提前谢谢!

<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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity"
android:id="@+id/">

    <TextView android:text="@string/hello_world" android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</RelativeLayout>

1 个答案:

答案 0 :(得分:2)

您应该删除行android:id="@+id/"或为RelativeLayout android:id="@+id/some_id"

提供ID