کامنت در XML
شنبه, ۳ آبان ۱۳۹۹، ۰۴:۰۰ ب.ظ
توی XML بین اتربیوت های یک تگ نمیشه کامنت گذاشت. یعنی اندروید استودیو نمیذاره این کارو انجام بدیم.
کامنت حتما باید خارج از تگ باشه.
اینجوری مثلا:
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
<!-- "fillViewport" is important tag! -->
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ff44f0" />
</androidx.core.widget.NestedScrollView>
۹۹/۰۸/۰۳