关于Android报错:error: Error: No resource found that matches the given name (at 'label' with value)

Android报错:error: Error: No resource found that matches the given name (at 'label' with value)

当你新建一个activity时必须要在Manifest中注册:


http://schemas.android.com/apk/res/android
"
      package="g.szpt.activity"
      android:versionCode="1"
      android:versionName="1.0">
   

   
                          android:label="@string/app_name">
                              
           
               
               
           

           
       

       
       
     

   

   

但是很奇怪注册也没错啊,原来在strings文件中赋值的时候:

="result">result   " "的字符串和你的赋值是一样的,这样的话在你在manifest中注册的时候就会报错

所以只要把他们改写不一样就OK了!!

 

 

你可能感兴趣的:(Android)