<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/activitymain"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout android:layout_width="match_parent" ...
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent">
<LinearLayout android:layo...
Ctrl+A 光标移动到行的开头
Ctrl+E 光标移动到行的结尾
Ctrl+B 光标向后移动一个位置(backward)
Ctrl+F 光标向前移动一个位置(forward)
Ctrl+Left-Arrow 光标移动到上一个单词的词首
Ctrl+Right-Arrow 光标移动到下一个单词的词尾
Ctrl+T 将光标位置的字符和前一个字符进行位置交换
Ctrl+U 剪切从行的开头到光标前一个位置的所有字符
Ctrl+K 剪切从光标位置到行末的所有字符
Ctrl+Y 粘贴
ctrl+u或者 ctrl+k 剪切的内容
Ctrl+H 删除光标位置的前一个...