2017-10-09 778 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工作室公測的新版本..

相關問題