├── AndroidManifest.xml ├── README.md ├── assets └── xposed_init ├── proguard-project.txt ├── res ├── drawable-hdpi │ └── drag.9.png ├── drawable-mdpi │ └── drag.9.png ├── drawable │ ├── arrow.xml │ ├── blue_progress.xml │ ├── btn_delete.png │ ├── drag.9.png │ ├── green_progress.xml │ ├── ic_launcher.png │ └── red_progress.xml ├── layout-v14 │ └── chainkey.xml ├── layout │ ├── arrow.xml │ ├── chainitem.xml │ ├── chainkey.xml │ ├── chainlist.xml │ ├── color_picker.xml │ ├── editor.xml │ ├── itneditor.xml │ ├── keyeditor.xml │ ├── main.xml │ ├── simple.xml │ └── test.xml ├── menu │ └── main.xml ├── values │ ├── other.xml │ ├── strings_pbmc.xml │ └── themes.xml └── xml │ └── settings.xml └── src ├── com └── android │ └── vending │ └── billing │ └── IInAppBillingService.aidl └── xeed └── xposed └── cbppmod ├── Action.java ├── Chain.java ├── Coded.java ├── InAppMgmt.java ├── Key.java ├── PBMain.java ├── PBSettings.java ├── prf ├── ColorPreference.java ├── FlagListPreference.java └── ValueListPreference.java ├── ui ├── ActionDialog.java ├── ChainEditFragment.java ├── ChainListFragment.java ├── KeyTestFragment.java └── PagerAdapter.java └── viw └── CustomListView.java /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 27 | 31 | 35 | 39 | 47 | 48 | 49 | 50 | 51 | 52 | 60 | 64 | 65 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 83 | 84 | 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Physical Buttom Music Control 2 | Xposed Framework module for Android 2.3-6.0, all info here: http://forum.xda-developers.com/xposed/modules/mod-physical-button-music-control-1-8-t2620777/ 3 | -------------------------------------------------------------------------------- /assets/xposed_init: -------------------------------------------------------------------------------- 1 | xeed.xposed.cbppmod.PhysicalButtonMod -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | -keep public class xeed.xposed.cbppmod.PhysicalButtonMod 2 | 3 | -keep public class xeed.xposed.cbppmod.PBMain 4 | { 5 | public static java.lang.String getActiveVerName(); 6 | public static int getActiveVerCode(); 7 | } 8 | 9 | -keep public class xeed.library.ui.BaseSettings 10 | { 11 | protected static int getActiveVer(); 12 | } 13 | 14 | -keepattributes InnerClasses 15 | 16 | -libraryjars ../Libraries/XposedBridgeApi.jar 17 | 18 | -libraryjars ../ZZHacks/bin -------------------------------------------------------------------------------- /res/drawable-hdpi/drag.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XspeedPL/PhysicalButtonMod/c419bd313209548010e6d2ce57f4ccfbe97c2fa2/res/drawable-hdpi/drag.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/drag.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XspeedPL/PhysicalButtonMod/c419bd313209548010e6d2ce57f4ccfbe97c2fa2/res/drawable-mdpi/drag.9.png -------------------------------------------------------------------------------- /res/drawable/arrow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 15 | 16 | 20 | 21 | 22 | 23 | 24 | 25 | 28 | 29 | 30 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /res/drawable/blue_progress.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/btn_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XspeedPL/PhysicalButtonMod/c419bd313209548010e6d2ce57f4ccfbe97c2fa2/res/drawable/btn_delete.png -------------------------------------------------------------------------------- /res/drawable/drag.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XspeedPL/PhysicalButtonMod/c419bd313209548010e6d2ce57f4ccfbe97c2fa2/res/drawable/drag.9.png -------------------------------------------------------------------------------- /res/drawable/green_progress.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XspeedPL/PhysicalButtonMod/c419bd313209548010e6d2ce57f4ccfbe97c2fa2/res/drawable/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/red_progress.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/layout-v14/chainkey.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/layout/arrow.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /res/layout/chainitem.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 22 | 28 | 35 | 47 | 60 | 61 | 62 | 63 | 68 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /res/layout/chainkey.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/layout/chainlist.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 17 | 30 | 31 | -------------------------------------------------------------------------------- /res/layout/color_picker.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 21 | 33 | 45 | 46 | -------------------------------------------------------------------------------- /res/layout/editor.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 21 | 27 | 37 | 47 | 57 | 64 | 70 | 71 | 81 |