How to call android calculator on my app for all phones

前端 未结 4 1607
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-03 02:17
  public static final String CALCULATOR_PACKAGE =\"com.android.calculator2\";
  public static final String CALCULATOR_CLASS =\"com.android.calculator2.Calculator\";
         


        
4条回答
  •  自闭症患者
    2020-12-03 02:47

    Intent i = new Intent();
    i.setAction(Intent.ACTION_MAIN);
    i.addCategory(Intent.CATEGORY_APP_CALCULATOR);
    startActivity(i);
    

提交回复
热议问题