Android Space 控件详解
Space 是 Android 中一个轻量级的布局容器,主要用于在界面中创建空白间距或占位空间。以下是 Space 控件的全面使用指南。
一、基本特性
- 轻量级:Space 是一个非常简单的视图,几乎没有性能开销
- 不可见:默认情况下不绘制任何内容
- 固定尺寸:可以通过设置宽高来定义空间大小
- 布局辅助:常用于调整其他视图的相对位置
二、基本用法
1. XML 布局示例
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_heig