2017-02-06 19 views
0

Androidスタジオを学び始めました。私は相対的なレイアウトでxmlファイルエラーを表示していますさらに見てください私はいくつかの行方不明を持っています/エラーを引き起こしているXMLコンテンツを削除してください。見て、私を助けてください。次のように 現在activity_main.xmlコードは次のとおりです。XMLファイルのエラーとは何ですか:XMLの解析エラー:アンドロイドスタジオの整形式でない(無効なトークン)

<?xml version="1.0" encoding="utf-8"?> 
android:fitsSystemWindows="true" 
tools:context="com.mindbuzz.big.calculator.MainActivity"> <android.support.design.widget.AppBarLayout 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:theme="@style/AppTheme.AppBarOverlay"> 
<android.support.v7.widget.Toolbar 
android:id="@+id/toolbar" 
android:layout_width="match_parent" 
android:layout_height="?attr/actionBarSize" 
android:background="#ed0d0d" 
app:popupTheme="@style/AppTheme.PopupOverlay" /> 
</android.support.design.widget.AppBarLayout> 
<android.support.design.widget.FloatingActionButton 
android:id="@+id/fab" 
android:layout_gravity="bottom|end"`enter code here` 
android:layout_margin="@dimen/fab_margin " 
app:srcCompat="@android:drawable/ic_dialog_email" 
android:layout_width="wrap_content" 
android:layout_height="match_parent" /> 
<include layout="@layout/content_main" 
android:layout_alignParentLeft="true" 
android:layout_alignParentStart="true" 
android:layout_alignBottom="@+id/appBarLayout" 
android:layout_below="@+id/appBarLayout" /> 
</ android:layout_width="wrap_content" 
android:layout_height="wrap_content"> </android.support.design.widget.CoordinatorLayout> 

ハーズは、プレビューでレンダリングするためのエラーです: レンダリングの問題

注:

This project contains Java compilation errors, which can cause rendering failures for custom views. Fix compilation problems first. 

注:

One or more layouts are missing the layout_width or layout_height attributes. These are required in most layouts.<br/
<android.support.design.widget.AppBarLayout> does not set the required layout_width attribute: Set to wrap_content, Set to match_parent<br /> 
<android.support.design.widget.AppBarLayout> does not set the required layout_height attribute:     Set to wrap_content, Set to match_parent<br /> 
<android.support.v7.widget.Toolbar> does not set the required layout_width attribute: Set to wrap_content, Set to match_parent<br/
<android.support.v7.widget.Toolbar> does not set the required layout_height attribute: Set to wrap_content, Set to match_parent<br/
<android.support.design.widget.FloatingActionButton> does not set the required layout_width attribute: Set to wrap_content, Set to match_parent <br /> 
<android.support.design.widget.FloatingActionButton> does not set the required layout_height attribute: Set to wrap_content, Set to match_parent <br /> 
Or: Automatically add all missing attributes 

Gradle buildに次のエラーが表示されます:

Error:(3) Error parsing XML: not well-formed (invalid token) 
Error:(3) Error parsing XML: not well-formed (invalid token) 

Error:Execution failed for task ':app:processDebugResources'. 
> com.android.ide.common.process.ProcessException: Failed to execute aapt 

ありがとう。

+0

なぜこの 'がありますか? – codeMagic

+0

@codeMagic私が言及していたのは、現在のレイアウトのすべてのコンテンツを囲むように記述したものです。 – BHASKAR

+0

@BHASKAR、申し訳ありませんが、そのコメントは文法上または理解可能な英語ではありません。 –

答えて

0

実際には、投稿されたコードでは、構文ハイライトが意味を成さない箇所にエラーが表示されることがあります。最初はナンセンスがあり(android:fitsSystemWindows="true")、ナンセンスはさらに下がりました(</ android:layout_width="wrap_content")。両方ともStackOverflowで示されているので、有益ではなく色が灰色で表示されます。

関連する問題