0

Is it possible to comment within an xml element ? like below

  <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:elevation="0dp"  <!-- added by me to disable shadow on android 5.0 -->
        android:theme="@style/AppTheme.AppBarOverlay">

if not, is there any otherway to comment there ?

Ahmed
  • 14,503
  • 22
  • 92
  • 150

1 Answers1

0

No, this isn't possible. Comments are not allowed in an XML open tag.

mike.zimin
  • 39
  • 6