The code below is supposed to open the default calculator apps on a device. Could some expert kindly convert it to B4A?
TIA
Source
TIA
B4X:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_APP_CALCULATOR);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
Last edited: