当我尝试在 Eclipse Helios 中格式化代码时,按ctrl++ ,代码正在格式化,但结果非常难看。例如,一行中有两个或三个语句。压痕也很差。shiftf
例如:格式化代码后,它看起来像:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="@drawable/scannerbg">
<include android:id="@+id/headerLayout"
android:layout_alignParentTop="true" layout="@layout/headerlayout" />
<ListView android:layout_below="@id/headerLayout"
android:layout_height="fill_parent" android:layout_marginTop="5dp"
android:listSelector="@android:color/transparent" android:id="@+id/listView"
android:layout_width="fill_parent">
</ListView>
</RelativeLayout>
正如您在 中看到的ListView
,单行中有两到三个语句。
任何人都可以提供解决方案吗?