MagicLon
MagicLon
/data/data/插件宿主包名/Plugin/插件包名/data/插件包名 这样才是正确的路径
dialogFragment.setSharedElementEnterTransition dialogFragment.setSharedElementReturnTransition
But need android API L
params.setFocusMode(Camera.Parameters.FOCUS_MODE_CONTINUOUS_VIDEO); 这句注了就行了
params.setFocusMode(params.getFocusMode()); 要么改成这样的
val anim = ObjectAnimator.ofInt(arc_progress, "progress", 0, 80) anim.interpolator = DecelerateInterpolator() anim.duration = 500 anim.start()
attr name="arc_stroke_width" format="dimension"
CameraInfo info = new CameraInfo(); Camera.getCameraInfo(cameraId, info); int rotation = activity.getWindowManager().getDefaultDisplay().getRotation(); int degree = 0; switch (rotation) { case Surface.ROTATION_0: degree = 0; bSreenMirror = true; break; case Surface.ROTATION_90: degree...