いつもお世話になります。
Android Studio, Mac OS X, Android5.1の組み合わせで開発をしています。
Android Studioでのコメントアウトの方法を知りたいです。
【現在】
activity_main.xml
< ?xml version="1.0" encoding="utf-8"?>
< RelativeLayout
android:background="@drawable/background"
tools:context=".MainActivity">
<ImageView
android:id="@+id/character"
android:src="@drawable/character"
/>
というソースコードを、最終的に次のようにしたい場合の、コメントアウトの方法を教えてください。
【最終形】
< ?xml version="1.0" encoding="utf-8"?>
< RelativeLayout
tools:context=".MainActivity">
<ImageView android:id="@+id/character" android:src="@drawable/background" /> <ImageView android:id="@+id/character" android:src="@drawable/character" />
【コメントアウトしたい行】
< RelativeLayout
android:background="@drawable/background" //この行をコメントアウトしたい。
tools:context=".MainActivity">
(1)動作しない。
< RelativeLayout
// android:background="@drawable/background"
tools:context=".MainActivity">
(2)動作しない。
< RelativeLayout
<!--android:background="@drawable/background"-->
tools:context=".MainActivity">
(3)動作するが、<!--, --> を書き足し、行をcut, pasteと4手間必要。
< RelativeLayout
tools:context=".MainActivity">
<!--android:background="@drawable/background"-->
ちょっと1行をcommentoutしてテストしたいというとき、どうするのが簡単ですか?
Visual Studioにあるようなbuttonやショートカットキーなどがあれば教えてください。
回答4件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。