博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UI Framework-1: Aura Views
阅读量:6977 次
发布时间:2019-06-27

本文共 825 字,大约阅读时间需要 2 分钟。

Views

Views is a user interface framework built on a type called, confusingly, View. Responsible for providing the content of our Aura windows, most of this code is also used by Desktop Chrome on Windows. Only the NativeWidget implementation differs (for now). Views also provides a set of useful reusable controls like Buttons, Menus, etc.
 
Views is somewhat analogous to Aura, with a native host (NativeWidget implementations), a View hierarchy within a RootView that handles event dispatch.
 
The primary difference is that this system was designed and built before beng developed a healthy skepticism of is-a relationships, and so you accomplish rendering, event handling and layout here by subclassing View, rather than implementing a delegate interface as in Aura.

转载于:https://www.cnblogs.com/huangguanyuan/p/10072727.html

你可能感兴趣的文章
技术栈
查看>>
checkbox点击切换选中状态
查看>>
2019,商业智能的10大未来趋势
查看>>
将ubuntu系统设置静态ip及ssh
查看>>
云原生应用的10大关键属性
查看>>
Android 在运行时请求权限
查看>>
CentOS7使用firewalld打开关闭防火墙与端口
查看>>
Redis集群两种配置方式
查看>>
编写自己的SpringBoot-starter
查看>>
MySql 语句优化
查看>>
MySQL的基础
查看>>
Spring Boot(十一)Redis集成从Docker安装到分布式Session共享
查看>>
读Zepto源码之操作DOM
查看>>
切版网上线,启用qieban.cn
查看>>
横向ListView(一) ——开篇,基础逻辑实现
查看>>
STM32单片机外部中断配置讲解
查看>>
阿里云智能对话分析服务
查看>>
中文详解phpmailer所有对象和属性
查看>>
python 函数
查看>>
什么是类型别名?什么是潜在类型?
查看>>