Android与iOS常用UI控件对比
基础UI控件
| iOS | Android | 说明 |
|---|---|---|
| UIView | View | 基础视图类 |
| UILabel | TextView | 文本显示 |
| UIButton | Button/MaterialButton | 按钮 |
| UITextField | EditText | 单行文本输入 |
| UITextView | EditText (multiline) | 多行文本输入 |
| UIImageView | ImageView | 图片显示 |
| UIScrollView | ScrollView | 滚动视图 |
| UISwitch | Switch | 开关 |
| UISlider | SeekBar | 滑块 |
| UIActivityIndicator | ProgressBar | 加载指示器 |
| UIDatePicker | DatePicker | 日期选择器 |
| UIPickerView | Spinner | 选择器 |
| UITableView | RecyclerView/ListView | 列表视图 |
| UICollectionView | RecyclerView (GridLayoutManager) | 网格视图 |
| UIStackView | LinearLayout | 线性布局 |
| UIAlertController | AlertDialog | 警告对话框 |
| UIRefreshControl | SwipeRefreshLayout | 下拉刷新 |
| UISegmentedControl | TabLayout | 分段控制 |
| UIPageViewController | ViewPager | 分页视图 |
| SafeArea | Insets/Padding | 安全区域 |
布局系统
| iOS | Android | 说明 |
|---|---|---|
| Auto Layout | ConstraintLayout | 约束布局 |
| NSLayoutConstraint | Constraints | 布局约束 |
| CGRect手动布局 | View.layout() | 手动布局 |
| Frame | Left/Top/Right/Bottom | 位置和尺寸 |
| UIStackView | LinearLayout | 线性排列 |
| Intrinsic Content Size | Wrap_content | 内容大小 |
| UICollectionViewFlowLayout | RecyclerView + LayoutManager | 集合视图布局 |
现代UI架构组件
| iOS | Android | 说明 |
|---|---|---|
| SwiftUI | Jetpack Compose | 声明式UI |
| UIHostingController | ComposeView | 旧系统中嵌入新系统 |
| Combine | LiveData/Flow | 响应式编程 |
| MVVM/MVC | MVVM/MVC | 应用架构 |
| Core Data | Room | 持久化存储 |
| UserDefaults | SharedPreferences | 简单键值存储 |
| Keychain | EncryptedSharedPreferences | 安全存储 |
| URLSession | Retrofit/Volley | 网络请求 |
| NotificationCenter | BroadcastReceiver | 通知系统 |
| CoreLocation | LocationManager | 位置服务 |
| Push Notifications | Firebase Cloud Messaging | 推送通知 |
| App Extensions | Service/BroadcastReceiver | 应用扩展 |
导航与路由
| iOS | Android | 说明 |
|---|---|---|
| UINavigationController | Navigation Component | 导航控制 |
| Present modally | startActivityForResult | 模态展示 |
| UITabBarController | BottomNavigationView | 底部导航栏 |
| Deep Links | Deep Links/App Links | 深度链接 |
| Universal Links | App Links | 应用链接 |
| Segue | Navigation Actions | 导航行为 |
动画与过渡
| iOS | Android | 说明 |
|---|---|---|
| UIViewPropertyAnimator | ObjectAnimator | 属性动画 |
| CALayer animations | ViewPropertyAnimator | 视图属性动画 |
| UIView.transition | TransitionManager | 转场动画 |
| Hero (库) | Shared Element Transitions | 共享元素转场 |
| CoreAnimation | Animation API | 底层动画API |










网友评论