微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

android – 找不到与layout_hint中给定名称匹配的资源

我是新的,实际上这是我对 android程序的第一次尝试.我正在关注android开发者培训网站.我的activity_main.xml如下所示:
<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_width="wrap_content"
    android:layout_height="wrap_content" 
    android:layout_hint="@string/edit_message"/>

现在它显示错误和警告,如:

警告 – 此文本字段未指定inputType或提示

错误错误错误:找不到与给定名称匹配的资源(在’layout_hint’中,值为’@ string / edit_message’)

解决方法

您需要在res / values / strings.xml文件中定义edit_message的值.至于警告,请查看 this link.

原文地址:https://www.jb51.cc/android/309232.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐