这可能是一个小问题,但为什么有些人的 XML 布局文件中有包/类名称?
(如果这个问题是微不足道的,请不要投反对票,我什至不知道这叫什么,所以我无法查到)。
我正在看一个教程,我看到了这样的东西(在“sample.xml”中):
<com.tutorials.foo
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- some buttons and views here -->
</com.tutorials.foo>
我的问题是:
1)我假设“foo”是自定义视图?比如说,你想用你自己的 TextView 版本扩展 TextView 吗?
2)这种模式/技术甚至叫什么?
3)使用这种方法有什么好处?
提前非常感谢!!!