Unexpected namespace prefix “app” found for tag RelativeLayout - Android?

后端 未结 7 2260
走了就别回头了
走了就别回头了 2021-02-13 04:46

I need to use BottomSheetBehavior with ScrollView but it says to me :

Unexpected namespace prefix \"app\" found for tag RelativeLayout
         


        
7条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-13 05:25

    For people using androidx, if you have child views from some androidx view, they should also be the androidx view to be able to recognize app namespace prefix. For example instead of:

    you should use

    This is not harmfull and it provides support for lower api version if you use some features that could not be supported (like tints for ImageView) :)

提交回复
热议问题