我正在通过 WP-CodeBox 插件写一篇关于 Android 的博客,并希望将 layout.xml 添加到博客中,如下所示:
<pre><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ImageView android:id="@+id/icon"
android:layout_width="@dimen/notification_large_icon_width"
android:layout_height="@dimen/notification_large_icon_height"
android:background="@android:drawable/bg_tile"
android:scaleType="center"
/>
</LinearLayout></pre>
在 HTML 模式下,当我将编辑模式更改为可视模式时,xml 消失了!请帮助我如何在 xml 模式下显示 xml 而不会出现格式错误。wordpress 中还有其他 xml 编辑插件吗?谢谢!