seskindell Active Member Licensed User Longtime User Oct 28, 2012 #1 Intent intent = new Intent(); intent.setAction(Intent1.intentSettingsMetaWatch); Bundle extras = new Bundle(); extras.putIntArray("array", bitmapFromDrawable()); extras.putInt("vibrate_on", 750); extras.putInt("vibrate_off", 500); extras.putInt("vibrate_cycles", 5); intent.putExtras(extras); SendBroadcast(intent); Any help would be greatly appreciated! Thank you.
Intent intent = new Intent(); intent.setAction(Intent1.intentSettingsMetaWatch); Bundle extras = new Bundle(); extras.putIntArray("array", bitmapFromDrawable()); extras.putInt("vibrate_on", 750); extras.putInt("vibrate_off", 500); extras.putInt("vibrate_cycles", 5); intent.putExtras(extras); SendBroadcast(intent); Any help would be greatly appreciated! Thank you.
Erel B4X founder Staff member Licensed User Longtime User Oct 28, 2012 #2 What is bitmapFromDrawable method? Upvote 0