打星号提示No resource found that matches the given name (at 'text' with value '@string/Name:').

 <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="28sp"
        android:textColor="#000000"
        *android:text="@string/Name:" 
        />

    <EditText
        android:id="@+id/editText1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/textView1"
        android:layout_toRightOf="@+id/textView1"
        android:layout_toEndOf="@+id/textView1"
        android:ems="10"
        android:hint="@string/Please enter your name" >

        <requestFocus />
    </EditText>

</RelativeLayout>


weibo_飞来云去_0
浏览 1725回答 2
2回答

用户1123810

EditText 的hint值格式有误

sinse_

你在String.xml文件下看看是否定义了Name,如果定义了,看一下大小写是否一致
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Android