我在我的AndroidManifest.xml
文件中有以下一段代碼,我想在其中註釋一行(用於快速測試目的)。通過選擇AndroidStudio
-comment功能我得到如下:如何在AndroidStudio中註釋掉xml中的行?
<application
android:allowBackup="true"
android:icon="@mipmap/myicon"
android:label="@string/app_name"
android:supportsRtl="true"
<!--android:theme="@style/AppTheme"-->
android:theme="@style/ThemeOverlay.AppCompat.ActionBar" >
然而,這創造了一個編譯錯誤:
Error:Element type "application" must be followed by either attribute specifications, ">" or "/>".
有沒有一種簡單的方法來註釋掉(塊)線(S ),還是應打開外部文本編輯器並將原始(塊)行復制並粘貼到該外部文本編輯器?
這似乎是工作的結束之前使用註釋。不是最佳的,但更好地將所有文件複製到另一個文件。想知道爲什麼AndroidStudio不知道那個... – Alex