布局资源定义了 Activity
中的界面或界面中的组件的架构。
- 文件位置:
res/layout/filename.xml
文件名用作资源 ID。- 编译后的资源数据类型:
- 指向
View
(或其子类)资源的资源指针 - 资源引用:
-
在 Java 中:
R.layout.filename
在 XML 中:@[package:]layout/filename
- 语法:
-
<?xml version="1.0" encoding="utf-8"?> <ViewGroup xmlns:android="http://schemas.android.com/apk/res/android" android:id="@[+][package:]id/resource_name" android:layout_height=["dimension" | "match_parent" | "wrap_content"] android:layout_width=["dimension" | "match_parent" | "wrap_content"] [ViewGroup-specific attributes] > <View android:id="@[+][package:]id/resource_name" android:layout_height=["dimension" | "match_parent" | "wrap_content"] android:layout_width=["dimension" | "match_parent" | "wrap_content"] [View-specific attributes] > <requestFocus/> </View> <ViewGroup > <View /> </ViewGroup> <include layout="@layout/layout_resource"/> </ViewGroup>
注意:根元素可以是
ViewGroup
、View
或<merge>
元素,但只能有一个根元素,并且它必须包含带有android
命名空间的xmlns:android
属性,如上述语法示例所示。 - 元素:
-
android:id 的值
对于 ID 值,通常使用
"@+id/name"
这种语法形式,如以下示例所示。加号+
表示这是一个新的资源 ID,如果不存在,aapt
工具会在R.java
类中创建一个新的资源整数。<TextView android:id="@+id/nameTextbox"/>
nameTextbox
名称现在是附加到此元素的资源 ID。然后,您就可以在 Java 中引用与此 ID 关联的TextView
:Kotlin
val textView: TextView? = findViewById(R.id.nameTextbox)
Java
TextView textView = findViewById(R.id.nameTextbox);
此代码会返回
TextView
对象。但是,如果您已经定义了一个 ID 资源并且尚未使用它,则可以通过去掉
android:id
值中的加号,将该 ID 应用到View
元素。android:layout_height 和 android:layout_width 的值
高度和宽度值使用 Android 支持的任意尺寸单位(px、dp、sp、pt、in、mm)或以下关键字来表示:
值 说明 match_parent
将尺寸设为与父元素的尺寸一致。此项为 API 级别 8 中的新增配置,用于替代 fill_parent
。wrap_content
将尺寸设为适配此元素的内容所需的大小。 自定义视图元素
您可以创建自定义
View
和ViewGroup
元素,并将它们应用到您的布局,就像应用标准布局元素一样。您还可以指定 XML 元素中支持的属性。如需了解详情,请参阅创建自定义视图组件。 - 示例:
- 保存在
res/layout/main_activity.xml
的 XML 文件:<?xml version="1.0" encoding="utf-8"?> <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:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello, I am a TextView" /> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello, I am a Button" /> </LinearLayout>
此应用代码会在
onCreate()
方法中加载Activity
的布局: -
Kotlin
public override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.main_activity) }
Java
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main_activity); }
- 另请参阅: