├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── BT_test └── BT_test.ino ├── BluetoothKeyboard.apk ├── README.md ├── bin ├── AndroidManifest.xml ├── BluetoothKeyboard.apk ├── classes.dex ├── classes │ └── com │ │ └── damas │ │ ├── blejoystickapp │ │ ├── DeviceListActivity$1.class │ │ ├── DeviceListActivity$2.class │ │ ├── DeviceListActivity$3.class │ │ ├── DeviceListActivity$4.class │ │ ├── DeviceListActivity.class │ │ ├── JoystickIME$1.class │ │ ├── JoystickIME$AdbReceiver$1.class │ │ ├── JoystickIME$AdbReceiver.class │ │ ├── JoystickIME.class │ │ ├── SettingsActivity$1.class │ │ ├── SettingsActivity.class │ │ └── bluetooth │ │ │ ├── CommService$ServiceHandler.class │ │ │ ├── CommService.class │ │ │ └── CustomizedBluetoothDevice.class │ │ └── bluetoothkeyboard │ │ ├── BuildConfig.class │ │ ├── R$attr.class │ │ ├── R$dimen.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$layout.class │ │ ├── R$menu.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ ├── R$xml.class │ │ └── R.class ├── dexedLibs │ └── android-support-v4-12a753c2552b0bfb3afb57f13fac49a0.jar ├── jarlist.cache ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ ├── bluetooth.png │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ └── drawable │ │ ├── bluetoothoff.png │ │ └── bluetoothon.png └── resources.ap_ ├── gen └── com │ └── damas │ └── bluetoothkeyboard │ ├── BuildConfig.java │ └── R.java ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── bluetooth.png │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── drawable │ ├── bluetoothoff.png │ ├── bluetoothon.png │ ├── dotted.xml │ ├── gradient.xml │ ├── gradient2.xml │ ├── gradient_blue.xml │ ├── gradient_red.xml │ └── listview_divider.xml ├── layout │ ├── activity_device_list.xml │ ├── keyboardtimeout.xml │ ├── macaddr1.xml │ ├── macaddr2.xml │ ├── settings.xml │ └── view.xml ├── menu │ └── main.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml ├── values-w820dp │ └── dimens.xml ├── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── xml │ └── methods.xml └── src └── com └── damas └── blejoystickapp ├── DeviceListActivity.java ├── JoystickIME.java ├── SettingsActivity.java └── bluetooth ├── CommService.java └── CustomizedBluetoothDevice.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | BluetoothKeyboard 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 20 | 21 | 22 | 23 | 26 | 27 | 28 | 29 | 30 | 33 | 34 | 35 | 38 | 39 | 40 | 41 | 42 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /BT_test/BT_test.ino: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | #include 4 | 5 | void setup() 6 | { 7 | // initialize serial communication at 9600 bits per second: 8 | Serial.begin(9600); 9 | 10 | } 11 | 12 | 13 | void loop() 14 | { 15 | 16 | 17 | Serial.print("1x6t;"); 18 | delay(15000); 19 | Serial.print("1x8u;"); 20 | delay(15000); 21 | Serial.print("1x8p;"); 22 | delay(30000); 23 | Serial.print("1x8t;"); 24 | delay(15000); 25 | Serial.print("4x8p;"); 26 | delay(15000); 27 | Serial.print("8x8t;"); 28 | delay(15000); 29 | Serial.print("1x8u;"); 30 | delay(30000); 31 | Serial.print("9x8u;"); 32 | delay(15000); 33 | Serial.print("9x8p;"); 34 | delay(15000); 35 | Serial.print("1x8t;"); 36 | delay(30000); 37 | Serial.print("8x8p;"); 38 | delay(15000); 39 | Serial.print("4x10t;"); 40 | delay(15000); 41 | Serial.print("4x11p;"); 42 | delay(60000); 43 | } 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /BluetoothKeyboard.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/BluetoothKeyboard.apk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Bluetooth-Keyboard-Android 2 | Android Custom IME with Arduino physical Keyboard. 3 | This project is demo for physical keyboard with Android as a input method (IME). 4 | 5 | 6 | USAGE: 7 | 8 | Burn Arduino sketch in BT_Test directory to arduino controller. 9 | 10 | Install apk to android phone. 11 | 12 | Go to settings->Language & Input, Turn ON 'Bluetooth Keyboard' in 'Keyboard & Input Methods'. 13 | 14 | Click 'Bluetooth Keyboard' and select your device, make Bluetooth connection. 15 | 16 | -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 20 | 21 | 22 | 23 | 26 | 27 | 28 | 29 | 30 | 33 | 34 | 35 | 38 | 39 | 40 | 41 | 42 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /bin/BluetoothKeyboard.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/BluetoothKeyboard.apk -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes.dex -------------------------------------------------------------------------------- /bin/classes/com/damas/blejoystickapp/DeviceListActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/blejoystickapp/DeviceListActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/damas/blejoystickapp/DeviceListActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/blejoystickapp/DeviceListActivity$2.class -------------------------------------------------------------------------------- /bin/classes/com/damas/blejoystickapp/DeviceListActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/blejoystickapp/DeviceListActivity$3.class -------------------------------------------------------------------------------- /bin/classes/com/damas/blejoystickapp/DeviceListActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/blejoystickapp/DeviceListActivity$4.class -------------------------------------------------------------------------------- /bin/classes/com/damas/blejoystickapp/DeviceListActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/blejoystickapp/DeviceListActivity.class -------------------------------------------------------------------------------- /bin/classes/com/damas/blejoystickapp/JoystickIME$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/blejoystickapp/JoystickIME$1.class -------------------------------------------------------------------------------- /bin/classes/com/damas/blejoystickapp/JoystickIME$AdbReceiver$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/blejoystickapp/JoystickIME$AdbReceiver$1.class -------------------------------------------------------------------------------- /bin/classes/com/damas/blejoystickapp/JoystickIME$AdbReceiver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/blejoystickapp/JoystickIME$AdbReceiver.class -------------------------------------------------------------------------------- /bin/classes/com/damas/blejoystickapp/JoystickIME.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/blejoystickapp/JoystickIME.class -------------------------------------------------------------------------------- /bin/classes/com/damas/blejoystickapp/SettingsActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/blejoystickapp/SettingsActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/damas/blejoystickapp/SettingsActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/blejoystickapp/SettingsActivity.class -------------------------------------------------------------------------------- /bin/classes/com/damas/blejoystickapp/bluetooth/CommService$ServiceHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/blejoystickapp/bluetooth/CommService$ServiceHandler.class -------------------------------------------------------------------------------- /bin/classes/com/damas/blejoystickapp/bluetooth/CommService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/blejoystickapp/bluetooth/CommService.class -------------------------------------------------------------------------------- /bin/classes/com/damas/blejoystickapp/bluetooth/CustomizedBluetoothDevice.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/blejoystickapp/bluetooth/CustomizedBluetoothDevice.class -------------------------------------------------------------------------------- /bin/classes/com/damas/bluetoothkeyboard/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/bluetoothkeyboard/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/damas/bluetoothkeyboard/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/bluetoothkeyboard/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/damas/bluetoothkeyboard/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/bluetoothkeyboard/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/damas/bluetoothkeyboard/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/bluetoothkeyboard/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/damas/bluetoothkeyboard/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/bluetoothkeyboard/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/damas/bluetoothkeyboard/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/bluetoothkeyboard/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/damas/bluetoothkeyboard/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/bluetoothkeyboard/R$menu.class -------------------------------------------------------------------------------- /bin/classes/com/damas/bluetoothkeyboard/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/bluetoothkeyboard/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/damas/bluetoothkeyboard/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/bluetoothkeyboard/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/damas/bluetoothkeyboard/R$xml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/bluetoothkeyboard/R$xml.class -------------------------------------------------------------------------------- /bin/classes/com/damas/bluetoothkeyboard/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/classes/com/damas/bluetoothkeyboard/R.class -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-12a753c2552b0bfb3afb57f13fac49a0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/dexedLibs/android-support-v4-12a753c2552b0bfb3afb57f13fac49a0.jar -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/res/crunch/drawable-hdpi/bluetooth.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/bluetoothoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/res/crunch/drawable/bluetoothoff.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable/bluetoothon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/res/crunch/drawable/bluetoothon.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/bin/resources.ap_ -------------------------------------------------------------------------------- /gen/com/damas/bluetoothkeyboard/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.damas.bluetoothkeyboard; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /gen/com/damas/bluetoothkeyboard/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.damas.bluetoothkeyboard; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class dimen { 14 | /** Default screen margins, per the Android Design guidelines. 15 | 16 | Example customization of dimensions originally defined in res/values/dimens.xml 17 | (such as screen margins) for screens with more than 820dp of available width. This 18 | would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively). 19 | 20 | */ 21 | public static final int activity_horizontal_margin=0x7f050000; 22 | public static final int activity_vertical_margin=0x7f050001; 23 | } 24 | public static final class drawable { 25 | public static final int bluetooth=0x7f020000; 26 | public static final int bluetoothoff=0x7f020001; 27 | public static final int bluetoothon=0x7f020002; 28 | public static final int dotted=0x7f020003; 29 | public static final int gradient=0x7f020004; 30 | public static final int gradient2=0x7f020005; 31 | public static final int gradient_blue=0x7f020006; 32 | public static final int gradient_red=0x7f020007; 33 | public static final int ic_launcher=0x7f020008; 34 | public static final int listview_divider=0x7f020009; 35 | } 36 | public static final class id { 37 | public static final int TableLayout01=0x7f090010; 38 | public static final int TableRow01=0x7f090011; 39 | public static final int action_keyboard=0x7f090019; 40 | public static final int action_settings=0x7f090018; 41 | public static final int btnDown=0x7f090015; 42 | public static final int btnLeft=0x7f090013; 43 | public static final int btnOk=0x7f090017; 44 | public static final int btnRight=0x7f090014; 45 | public static final int btnUp=0x7f090012; 46 | public static final int btn_startScan=0x7f090001; 47 | public static final int dialogButtonOK=0x7f090006; 48 | public static final int imageviewBluetooth=0x7f09000e; 49 | public static final int imgView=0x7f09000a; 50 | public static final int listview_devicelist=0x7f090000; 51 | public static final int npicker_hours=0x7f090003; 52 | public static final int npicker_minutes=0x7f090002; 53 | public static final int npicker_seconds=0x7f090004; 54 | public static final int rlBleData=0x7f09000c; 55 | public static final int rlJoystickKeys=0x7f09000f; 56 | public static final int rlJoystickOK=0x7f090016; 57 | public static final int tv_addr_ID=0x7f090008; 58 | public static final int tv_addr_Name=0x7f090007; 59 | public static final int tv_minutes=0x7f090005; 60 | public static final int txtBleData=0x7f09000d; 61 | public static final int txtConnectBluetooth=0x7f090009; 62 | public static final int txtKeyboardTimeout=0x7f09000b; 63 | } 64 | public static final class layout { 65 | public static final int activity_device_list=0x7f030000; 66 | public static final int keyboardtimeout=0x7f030001; 67 | public static final int macaddr1=0x7f030002; 68 | public static final int macaddr2=0x7f030003; 69 | public static final int settings=0x7f030004; 70 | public static final int view=0x7f030005; 71 | } 72 | public static final class menu { 73 | public static final int main=0x7f080000; 74 | } 75 | public static final class string { 76 | public static final int action_settings=0x7f060001; 77 | public static final int app_name=0x7f060000; 78 | public static final int bt_not_enabled_leaving=0x7f060004; 79 | public static final int bt_scan=0x7f060005; 80 | public static final int devicelist_scan=0x7f060003; 81 | public static final int hello_world=0x7f060002; 82 | public static final int messegelist_send=0x7f06000a; 83 | public static final int not_connected=0x7f060006; 84 | public static final int title_connected_to=0x7f060008; 85 | public static final int title_connecting=0x7f060007; 86 | public static final int title_not_connected=0x7f060009; 87 | } 88 | public static final class style { 89 | /** 90 | Base application theme, dependent on API level. This theme is replaced 91 | by AppBaseTheme from res/values-vXX/styles.xml on newer devices. 92 | 93 | 94 | Theme customizations available in newer API levels can go in 95 | res/values-vXX/styles.xml, while customizations related to 96 | backward-compatibility can go here. 97 | 98 | 99 | Base application theme for API 11+. This theme completely replaces 100 | AppBaseTheme from res/values/styles.xml on API 11+ devices. 101 | 102 | API 11 theme customizations can go here. 103 | 104 | Base application theme for API 14+. This theme completely replaces 105 | AppBaseTheme from BOTH res/values/styles.xml and 106 | res/values-v11/styles.xml on API 14+ devices. 107 | 108 | API 14 theme customizations can go here. 109 | */ 110 | public static final int AppBaseTheme=0x7f070000; 111 | /** Application theme. 112 | All customizations that are NOT specific to a particular API-level can go here. 113 | */ 114 | public static final int AppTheme=0x7f070001; 115 | } 116 | public static final class xml { 117 | public static final int methods=0x7f040000; 118 | } 119 | } 120 | -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/libs/android-support-v4.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /res/drawable-hdpi/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/res/drawable-hdpi/bluetooth.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/bluetoothoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/res/drawable/bluetoothoff.png -------------------------------------------------------------------------------- /res/drawable/bluetoothon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asimiqbalmalik/Bluetooth-Keyboard-Android/c763a934e10288461777586cf27785254e2d10b1/res/drawable/bluetoothon.png -------------------------------------------------------------------------------- /res/drawable/dotted.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/drawable/gradient.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/drawable/gradient2.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /res/drawable/gradient_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/gradient_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /res/drawable/listview_divider.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/layout/activity_device_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 15 | 16 | 17 | 21 | 22 |