在 Android 中创建海关控件
我想在 Android 应用程序中创建自己的自定义控件并以这种方式使用它们: 在 XML 文件中:
<MyButton .... />
我想在资源 XML 中的某个位置定义 MyButton
I want to create my own custom controls in Android application and use them in this way:
In the XML file:
<MyButton .... />
I would like to define MyButton some where in the resources XML
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建您自己的
View
子类(例如,com.ofirbit.MyButton
),然后在您的布局中引用它(例如,
)。 这是一个 Android 库项目和演示子项目,展示了自定义ColorMixer 的实现
小部件及其在应用程序中的使用。有关如何实现其中一项的详细信息,请参阅一些 Android 书籍,即 Android 文档,也许还有其他地方。Create your own subclass of
View
(e.g.,com.ofirbit.MyButton
) and then reference it in your layouts (e.g.,<com.ofirbit.MyButton android:id="..." />
). Here is an Android library project and demonstration sub-project showing an implementation of a customColorMixer
widget and its use in an application. The details of how to implement one of these can be found in some Android books, the Android documentation, and perhaps elsewhere.