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
但没有找到解决问题的方法。
添加。
如果我使用Format XML files using the standard Android XML...
,我在布局文件中有以下内容,但包含 a<selector>
和<item>
s 的文件看起来正确(请参阅此消息中的“这会好得多”)。
它不适合我。
<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>