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

前端之家收集整理的这篇文章主要介绍了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.f2er.com/android/309232.html

猜你在找的Android相关文章