12

はい、調べました!

<!-- comment --> 

正しい選択のようですが、android-studio Gradle: Error parsing XML: not well-formed (invalid token) でエラーが発生します

私がこれをするとき

<ImageButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    <!-- android:background="?android:attr/selectableItemBackground" -->
    android:id="@+id/imageButton" 
    android:layout_alignParentTop="true"
    android:src="@drawable/gfx_select_medium"
    android:layout_marginRight="22dp"/>

どんな助けでも大歓迎です、thx!

4

3 に答える 3

2

xml ファイル内のコメントは XmlComment タイプのノードと見なされることを知っておく必要があります。そのため、xml ファイルをロードすると、これらのノードがロードされ、ロードされたコンテンツを解析するときにそれらを回避するかフィルタリングするかはユーザー次第です。

したがって、これは正しい形式になります。

<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageButton" 
android:layout_alignParentTop="true"
android:src="@drawable/gfx_select_medium"
android:layout_marginRight="22dp"/>    
<!-- android:background="?android:attr/selectableItemBackground" -->

または、このリンクを見ることができます..

于 2013-11-02T16:08:15.273 に答える