Calculate is not working in android
Posted: March 27th, 2023, 6:49 am
I am using Samsung Tab A7 lite and the android version is 13. I am using the following code, but the calculate does not popup. Any idea who to resolve this issue.
function showCalculator()
if getos() = 10 then
// Windows
execsystem("calc.exe");
elseif getos() = 20 then
// Android - different devices have different built in calculators.
// Samsung uses app:com.sec.android.app.popupcalculator,
// LG and HTC use app:com.android.calculator2.
// We will try one and if it doesn't work then try the other.
if execsystem("app:com.sec.android.app.popupcalculator") <> 1 then
if execsystem("app:com.android.calculator2") <> 1 then
errmsg("Unable to launch calculator.");
endif;
endif;
endif;
end;
function showCalculator()
if getos() = 10 then
// Windows
execsystem("calc.exe");
elseif getos() = 20 then
// Android - different devices have different built in calculators.
// Samsung uses app:com.sec.android.app.popupcalculator,
// LG and HTC use app:com.android.calculator2.
// We will try one and if it doesn't work then try the other.
if execsystem("app:com.sec.android.app.popupcalculator") <> 1 then
if execsystem("app:com.android.calculator2") <> 1 then
errmsg("Unable to launch calculator.");
endif;
endif;
endif;
end;