项目地址:
https://github.com/duxingzhe/ios-camera-scrollerview-in-android
苹果相机有一个功能就是左右切换拍摄模式,左右滑动就可以切换。然而,目前的问题是如果使用了View和Fragment之后相机打开是有异常的,所以不能使用这种方式。
于是只好反编译其他实现了这种功能的相机,得到线索是,有一个自定义的BottomView,BottomView中加载了一个自定义的ViewGroup,里面有一个ViewGroup。在ViewGroup中定义了三个TextView,然后设置居中,字号等样式。
在自定义的CameraScrollerView中,先设置好初始化的选择效果
protected void onLayout(boolean changed, int left,int top,int right, int bottom){
int cCount = getChildCount();
int childLeft=0;
int childRight=0;
int selectedMode=Util.getCurrentSelectedIndex();
int widthOffset=0;//居中显示
/**
* 遍历所有childView根据其宽和高,不考虑margin
*/
for(int i=0;i<cCount;i++){
View childView = getChildAt(i);
if(i<selectedMode)