按Ctrl + Shift + F后,Eclipse会损坏XML文件

时间:2013-04-26 12:13:41

标签: android xml eclipse coding-style

Ctrl + Shift + F在按顺序放置java或布局文件时做得很好。但它是否会以<selector xmlns:android="http://schemas.android.com/apk/res/android">开头的文件(例如)来扰乱事物?

这就是我所拥有的。

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_pressed="true"><nine-patch android:src="@drawable/bg_list_row_pic" />
    </item>
    <item><nine-patch android:src="@drawable/bg_list_row_pic" />
    </item>

</selector>

这会好得多。

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_pressed="true">
        <nine-patch android:src="@drawable/bg_list_row_pic" />
    </item>    
    <item>
        <nine-patch android:src="@drawable/bg_list_row_pic" />
    </item>

</selector>

我已经掠过Window - Preferences - XML,但没有找到任何解决问题的方法。

ADDITION。

如果我使用Format XML files using the standard Android XML...,我在布局文件中有以下内容,但包含<selector><item>的文件看起来正确(请参阅“这会更好”)这条消息)。

这不适合我。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="wrap_content" android:layout_gravity="center"
    android:paddingLeft="@dimen/sixteenDp" android:paddingRight="@dimen/sixteenDp">

    <Button android:id="@+id/mainAct_btn_RunTest"
        android:layout_width="match_parent" android:layout_height="wrap_content"
        android:layout_marginBottom="@dimen/sixteenDp" android:text="@string/run_test" />

    <Button android:id="@+id/mainAct_btn_ShowList"
        android:layout_width="match_parent" android:layout_height="wrap_content"
        android:layout_below="@id/mainAct_btn_RunTest" android:text="@string/show_list" />

</RelativeLayout>

此布局文件适合我。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:paddingLeft="@dimen/sixteenDp"
    android:paddingRight="@dimen/sixteenDp" >

    <Button
        android:id="@+id/mainAct_btn_RunTest"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="@dimen/sixteenDp"
        android:text="@string/run_test" />

    <Button
        android:id="@+id/mainAct_btn_ShowList"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/mainAct_btn_RunTest"
        android:text="@string/show_list" />

</RelativeLayout>

1 个答案:

答案 0 :(得分:2)

你可以试试这个。转到Windows-&gt;偏好设置 - &gt; Android-&gt;编辑器并禁用第一行“使用标准Android XML格式化XML文件...”