sayyam / carouselview

A simple library to add carousel view in android app.
Apache License 2.0
1.15k stars 260 forks source link

How to set carausel height according to device screen #99

Open codewithavish opened 5 years ago

codewithavish commented 5 years ago

when I m giving height to carousel in java file ..there is only 2 option minHeight , min MinWidth DisplayMetrics displayMetrics = new DisplayMetrics(); productActivity.getWindowManager().getDefaultDisplay().getMetrics(displayMetrics); int height = displayMetrics.heightPixels; int width = displayMetrics.widthPixels; productCarouselView.setMinimumHeight(height);