安卓13.0系统开发实现输入指令播放老化视频

有客户要求在计算器中输入某个指令然后调用图库Gallery直接一键式播放预置的老化视频,不要弹出选择框让他们去选择使用哪个app去播放,反正就是指令输入后点击等于号=就能直接循环播放用于老化,修改代码如下:

if (mFormulaText.getText().toString().equals("83,991,908")||mFormulaText.getText().toString().equals("83.991.908")) {
            ComponentName componet = new ComponentName("com.google.android.apps.photosgo","com.google.android.apps.photosgo.oneup.ExternalOneUpActivity"); 
            Intent intent = new Intent("android.intent.action.VIEW");   
            intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);    
            Uri uri = Uri.fromFile(new File("/system/Media/test.mp4"));
            intent.setDataAndType(uri, "video/*"); 
            intent.setComponent(componet);
            try{
               this.startActivity(intent);
            } catch (Exception e) {

            }
        }

我是在packages/apps/ExactCalculator/src/com/android/calculator2/Calculator.java类中添加的,这个是系统sdk自带的计算器源码,所以在这修改之前你要先去掉Google的计算器使用安卓的计算器才行

你可能感兴趣的:(android,java,git)