private void initializeView() {
photoDrawable = ContextCompat.getDrawable(context, R.drawable.ic_photo_camera_white_24dp);
photoDrawable = DrawableCompat.wrap(photoDrawable);
DrawableCompat.setTintList(photoDrawable.mutate(), ContextCompat.getColorStateList(context, R.drawable.switch_camera_mode_selector));
videoDrawable = ContextCompat.getDrawable(context, R.drawable.ic_videocam_white_24dp);
videoDrawable = DrawableCompat.wrap(videoDrawable);
DrawableCompat.setTintList(videoDrawable.mutate(), ContextCompat.getColorStateList(context, R.drawable.switch_camera_mode_selector));
setBackgroundResource(R.drawable.circle_frame_background_dark);
// setBackgroundResource(R.drawable.circle_frame_background);
setOnClickListener(new MediaActionClickListener());
setIcons();
padding = Utils.convertDipToPixels(context, padding);
setPadding(padding, padding, padding, padding);
}
MediaActionSwitchView.java 文件源码
java
阅读 18
收藏 0
点赞 0
评论 0
项目:android_camera_experiment
作者:
评论列表
文章目录