2017-07-17 7 views
0

私は何がエラーであるか分かりません。 IDEは2行で私にエラーを与える:ようモフセンは言っAndroidスタジオでエラーアンドロイドのサポートデザイン

<?xml version="1.0" encoding="utf-8"?> 
<android.support.design.widget.CoordinatorLayout 
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" 
tools:context="dreamer.dareyou.HomeActivity"> 

<RelativeLayout 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 

</android.support.design.widget.CoordinatorLayout> 
+2

ダブルコロンとアンドロイドの間のスペースを削除します。 – Mohsen

答えて

0

は、あなたがxmlns:androidの間で持っているスペースを削除する必要があります。 3行目と4行目は次のようになります。

xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
関連する問題