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
ありがとう。
なぜこの android:layout_width = "wrap_content" android:layout_height = "wrap_content"> 'がありますか? – codeMagic
@codeMagic私が言及していたのは、現在のレイアウトのすべてのコンテンツを囲むように記述したものです。 – BHASKAR
@BHASKAR、申し訳ありませんが、そのコメントは文法上または理解可能な英語ではありません。 –