ParkSangGwon / TedPicker

Multiple image select library for Android. Take a picture or Select from gallary

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

setCameraHeight is useless?

shahzad1 opened this issue · comments

I'm using this library and it's working fine. But I think there's some issue with setCameraHeight function or may be library owner has set the max camera height to 250dp. Because when I try to use a value <250dp, it works. But whenever I go >250dp, it doesn't work.
Here's my code
Config config = new Config(); config.setCameraHeight(R.dimen.camera_height); config.setSelectionMin(1); config.setSelectedBottomHeight(R.dimen.camera_bottom_height); config.setSelectionLimit(10); config.setToolbarTitleRes(R.string.toolbarRes); ImagePickerActivity.setConfig(config);