Could somebody please help me convert this short code to basic4android

seskindell

Active Member
Licensed User
Longtime User
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.
 
Top