如何在 Android Studio 中的多行应用 TAB
How to apply TAB on several lines in Android Studio
我想知道是否有一个短代码 (MAC) 可以标记多行(参见下面的示例)。
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Last Name"
android:id="@+id/textView"
android:layout_column="0"
android:layout_weight="1"/>
->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Last Name"
android:id="@+id/textView"
android:layout_column="0"
android:layout_weight="1"/>
我查看了 command list,但找不到任何东西。也许还有另一种方法。
当然。在 Mac 上按下(并保持按下)alt-option
命令,然后单击 mouse/touchpad 并移动 upwards/downwards。效果如下:
(source)
您可以尝试使用 CMD+Shift+L(自动缩进)
Select 几行,然后按 tab 缩进或按 Shift + tab 取消缩进。这至少适用于 OS X V10.11.6 和 Android Studio V2.1.2。希望这对您或阅读此问题的人有所帮助。谢谢。
要在 android 工作室编辑器中切换多行:
Select lines ( SHIFT-DOWN/UP ) and press TAB key
Shift TAB 向后做同样的事情。
我想知道是否有一个短代码 (MAC) 可以标记多行(参见下面的示例)。
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Last Name"
android:id="@+id/textView"
android:layout_column="0"
android:layout_weight="1"/>
->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Last Name"
android:id="@+id/textView"
android:layout_column="0"
android:layout_weight="1"/>
我查看了 command list,但找不到任何东西。也许还有另一种方法。
当然。在 Mac 上按下(并保持按下)alt-option
命令,然后单击 mouse/touchpad 并移动 upwards/downwards。效果如下:
(source)
您可以尝试使用 CMD+Shift+L(自动缩进)
Select 几行,然后按 tab 缩进或按 Shift + tab 取消缩进。这至少适用于 OS X V10.11.6 和 Android Studio V2.1.2。希望这对您或阅读此问题的人有所帮助。谢谢。
要在 android 工作室编辑器中切换多行:
Select lines ( SHIFT-DOWN/UP ) and press TAB key
Shift TAB 向后做同样的事情。