XML布局格式自动调整:Ctrl+Shift+F

修改设置之前:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="@drawable/list_selector">
<ImageView android:id="@+id/imageView" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_alignParentLeft="true" />
<TextView android:id="@+id/textView01" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_toRightOf="@+id/imageView" />
</RelativeLayout>
修改设置之后:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/list_selector">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true" />
<TextView
android:id="@+id/textView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/imageView" />
</RelativeLayout>
本文介绍了如何使用Eclipse快捷键Ctrl+Shift+F自动调整XML布局文件的格式,使其更加美观、规范。通过示例展示了调整前后的布局代码差异,提高了代码的可读性和一致性。
3717

被折叠的 条评论
为什么被折叠?



