When the user clicks on a button it launches the Android Calculator. The problem is that I want to launch small version of the calculator like in this image:
When I tried with the following code I am able to launch the big version of the calculator:
Intent i = new Intent();
i.setClassName("com.sec.android.app.popupcalculator","com.sec.android.app.popupcalculator.Calculator");
startActivity(i);
Is there a way of launching the small version?