2017-10-09 780 views

回答

0

有错误你values.xml驻留在res/values-es/values.xml必须包含有效的XML标记。如果该文件是空白文本文件,则会出现错误。你需要的东西是这样的:

<?xml version="1.0" encoding="utf-8"?> 

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:orientation="vertical" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <!-- Add your layout here --> 

</LinearLayout> 
0

我解决它下载的Android工作室公测的新版本..

相关问题