Android应用开发我的第一个应用示例错误

时间:2013-03-12 17:04:35

标签: android

我到处搜索但找不到问题的答案。我对此完全陌生,并且在我的头脑中。我只是在Android开发网站上做基本的“我的第一个应用程序教程”。即使代码与示例中的代码完全相同,该教程也会导致错误。控制台中显示的错误是:

[2013-03-12 15:33:36 - MyFirstApp] D:\Android Development\MyFirstApp\res\menu       \main.xml:3: error: Error: No resource found that matches the given name (at 'title' with value '@string/action_settings').
[2013-03-12 15:34:38 - MyFirstApp] W/ResourceType( 6352): Bad XML block: header size     311 or total size 5346560 is larger than data size 0

我改变的唯一内容就是教程告诉我改变的内容。 Activity_main.xmlstrings.xml。我从未在main.xml中改变任何内容。在包浏览器中,它显示MainActivity>onCreate(Bundle)onCreateOptionsMenu(Menu)旁边的红色x以下是MainActiviy中的代码,括号中有错误

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main); (error here red underline under R)
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu); (error here red underline under R)
    return true;
}

}

我做错了什么?我刚开始学习这个,我甚至无法让教程正确运行!

这是我按照指示更改的Activity_main.xml和strings.xml:

<?xml version="1.0" encoding="utf-8"?>
<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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<EditText android:id="@+id/edit_message"
android:layout_weight="1" 
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/edit_message" />
<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/button_send" />

</LinearLayout>


<?xml version="1.0" encoding="utf-8"?>
<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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<EditText android:id="@+id/edit_message"
android:layout_weight="1" 
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/edit_message" />
<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/button_send" />

</LinearLayout>

感谢您的帮助。

3 个答案:

答案 0 :(得分:2)

在控制台日志中:

  

错误:找不到与给定名称匹配的资源(在&#39;标题&#39;与   值&#39; @ string / action_settings

表示您需要在action_settings文件中添加res/values/strings.xml字符串

<resources>
    <!-- Your other strings -->
    <string name="action_settings">Action Settings</string>
</resources>

答案 1 :(得分:0)

代码看起来不错,但XML存在一些问题。

  1. 您的代码是指activity_main,但您使用的文件名是Activity_main。由于匹配区分大小写,因此Android建议您在文件名中仅使用小写。
  2. 您好像已经列出了两次Activity_main.xml。 Strings.xml根本不存在。因此,无法确定问题所在。
  3. 您没有列出res / menu目录中的任何文件。如果您要创建选项菜单,则需要res / menu / menu.xml。

答案 2 :(得分:0)

我自己对Android编程很新,但无论如何都会尝试提供帮助。

R通常是自动生成的;它下面的红线通常表示它已经消失了。

大多数情况下,您会收到此错误,因为您在String.xml文件中发生了错误。

根据您的错误消息,似乎“action_settings”字符串出现错误。确保您没有包含任何撇号或出现任何其他语法错误。