从 XML 布局中的自定义视图中删除包前缀
Remove the package prefix from a custom view in the XML layout
我在我的应用程序中使用自定义按钮视图。
说 com.example.myCustomButton.
我的 XML 看起来像这样。
<com.example.myCustomButton>
stuff here
<com.example.myCustomButton/>
有谁知道是否可以通过省略前缀 (com.example.) 的方式设置我的自定义视图?
您不能省略非框架视图的完整路径。
没有它,框架就不知道去哪里寻找那些视图,也无法向框架注册您的包。
我在我的应用程序中使用自定义按钮视图。
说 com.example.myCustomButton.
我的 XML 看起来像这样。
<com.example.myCustomButton>
stuff here
<com.example.myCustomButton/>
有谁知道是否可以通过省略前缀 (com.example.) 的方式设置我的自定义视图?
您不能省略非框架视图的完整路径。
没有它,框架就不知道去哪里寻找那些视图,也无法向框架注册您的包。