You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< ? xml version = "1.0" encoding = "utf-8" ? > < ! - - * 版 权 声 明 : 2010 - 2011 , The MiCode Open Source Community ( www . micode . net ) * 许 可 协 议 : 遵 循 Apache License , Version 2.0 * 授 权 说 明 : 未 经 许 可 不 得 使 用 , 可 从 http : //www.apache.org/licenses/LICENSE-2.0获取许可证副本 * 免责声明: 按"原样"分发,不附带任何明示或暗示的保证或条件 --> <!-- 账户添加偏好设置界面布局 --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" <!-- 宽度填充父容器 --> android:layout_height="wrap_content" <!-- 高度自适应内容 --> android:minHeight="50dip" <!-- 最小高度50dp, 确保视觉一致性 --> android:gravity="center_vertical" <!-- 垂直居中对齐子元素 --> android:orientation="vertical"> <!-- 垂直布局 --> <!-- 账户添加按钮文本 --> <TextView android:layout_width="wrap_content" <!-- 宽度自适应文本内容 --> android:layout_height="wrap_content" <!-- 高度自适应文本内容 --> android:layout_gravity="center" <!-- 水平居中对齐 --> android:textAppearance="?android:attr/textAppearanceMedium" <!-- 使用系统中等文本样式 --> android:text="@string/preferences_add_account" /> <!-- 文本内容引用字符串资源: "添加账户" --> </LinearLayout>