├── .gitignore ├── .idea ├── codeStyles │ └── Project.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── ableqing │ │ └── androidkeyboardviewdemo │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── ableqing │ │ │ └── androidkeyboardviewdemo │ │ │ ├── MainActivity.java │ │ │ ├── MyApp.java │ │ │ ├── MyInputMethodService.java │ │ │ ├── constants │ │ │ └── DemoKeyCode.java │ │ │ ├── keyboard │ │ │ └── MyKeyboardView.java │ │ │ └── util │ │ │ └── MyUtil.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── bg_key_preview.xml │ │ ├── btn_keyboard_gray.xml │ │ ├── btn_keyboard_key.xml │ │ ├── ic_launcher_background.xml │ │ ├── keyboard_delete.xml │ │ ├── keyboard_enter.xml │ │ ├── keyboard_gray.xml │ │ ├── keyboard_radio_btn.xml │ │ ├── keyboard_shift.xml │ │ ├── keyboard_switch.xml │ │ ├── layer_key_delete_normal.xml │ │ ├── layer_key_delete_press.xml │ │ ├── layer_key_enter.xml │ │ ├── layer_key_enter_press.xml │ │ ├── layer_key_gray.xml │ │ ├── layer_key_normal.xml │ │ ├── layer_key_press.xml │ │ ├── layer_key_shift_normal.xml │ │ ├── layer_key_shift_press.xml │ │ ├── layer_key_switch_normal.xml │ │ └── layer_key_switch_press.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── keyboard_global.xml │ │ └── keyboard_preview.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ ├── key_add.png │ │ ├── key_arrow_l.png │ │ ├── key_arrow_r.png │ │ ├── key_back.png │ │ ├── key_enter.png │ │ ├── key_keyboard.png │ │ ├── key_lock.png │ │ ├── key_setting.png │ │ ├── key_shift.png │ │ ├── key_shift_double.png │ │ ├── key_shift_down.png │ │ ├── key_switch.png │ │ └── key_unlock.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── digit.xml │ │ ├── method.xml │ │ ├── qwerty.xml │ │ └── symbol.xml │ └── test │ └── java │ └── com │ └── example │ └── ableqing │ └── androidkeyboardviewdemo │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AndroidKeyboardViewDemo 2 | 安卓键盘的一个简单demo 3 | https://www.jianshu.com/p/12bcfd8c2c6e 4 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/ableqing/androidkeyboardviewdemo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/androidTest/java/com/example/ableqing/androidkeyboardviewdemo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/example/ableqing/androidkeyboardviewdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/java/com/example/ableqing/androidkeyboardviewdemo/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/ableqing/androidkeyboardviewdemo/MyApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/java/com/example/ableqing/androidkeyboardviewdemo/MyApp.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/ableqing/androidkeyboardviewdemo/MyInputMethodService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/java/com/example/ableqing/androidkeyboardviewdemo/MyInputMethodService.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/ableqing/androidkeyboardviewdemo/constants/DemoKeyCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/java/com/example/ableqing/androidkeyboardviewdemo/constants/DemoKeyCode.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/ableqing/androidkeyboardviewdemo/keyboard/MyKeyboardView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/java/com/example/ableqing/androidkeyboardviewdemo/keyboard/MyKeyboardView.java -------------------------------------------------------------------------------- /app/src/main/java/com/example/ableqing/androidkeyboardviewdemo/util/MyUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/java/com/example/ableqing/androidkeyboardviewdemo/util/MyUtil.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_key_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/bg_key_preview.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_keyboard_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/btn_keyboard_gray.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_keyboard_key.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/btn_keyboard_key.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/keyboard_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/keyboard_delete.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/keyboard_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/keyboard_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/keyboard_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/keyboard_gray.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/keyboard_radio_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/keyboard_radio_btn.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/keyboard_shift.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/keyboard_shift.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/keyboard_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/keyboard_switch.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layer_key_delete_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/layer_key_delete_normal.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layer_key_delete_press.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/layer_key_delete_press.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layer_key_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/layer_key_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layer_key_enter_press.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/layer_key_enter_press.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layer_key_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/layer_key_gray.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layer_key_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/layer_key_normal.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layer_key_press.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/layer_key_press.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layer_key_shift_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/layer_key_shift_normal.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layer_key_shift_press.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/layer_key_shift_press.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layer_key_switch_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/layer_key_switch_normal.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/layer_key_switch_press.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/drawable/layer_key_switch_press.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/keyboard_global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/layout/keyboard_global.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/keyboard_preview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/layout/keyboard_preview.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/key_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/key_add.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/key_arrow_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/key_arrow_l.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/key_arrow_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/key_arrow_r.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/key_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/key_back.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/key_enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/key_enter.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/key_keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/key_keyboard.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/key_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/key_lock.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/key_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/key_setting.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/key_shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/key_shift.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/key_shift_double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/key_shift_double.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/key_shift_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/key_shift_down.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/key_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/key_switch.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/key_unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxhdpi/key_unlock.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/digit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/xml/digit.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/method.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/xml/method.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/qwerty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/xml/qwerty.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/symbol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/main/res/xml/symbol.xml -------------------------------------------------------------------------------- /app/src/test/java/com/example/ableqing/androidkeyboardviewdemo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/app/src/test/java/com/example/ableqing/androidkeyboardviewdemo/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qingyc/AndroidKeyboardViewDemo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------