```class TopWidget @JvmOverloads constructor( ...
# android
h
Copy code
class TopWidget @JvmOverloads constructor(
    context: Context,
    attributeSet: AttributeSet? = null
) : ConstraintLayout(context, attributeSet) {
I want to apply motion layout to Custom Compound View (extend from constraint layout with tag merge) but I can’t find any example about it How can I achieve it? I right click in this view group and choose
Convert to motion layout
, but the IDE throw error
😶 8