jjobes / SlideDateTimePicker

A combined DatePicker and TimePicker in a DialogFragment for Android
Apache License 2.0
836 stars 235 forks source link

it cant show the whole view on Android 8.0 #56

Closed SteveZhao1994 closed 6 years ago

SteveZhao1994 commented 6 years ago

i find the answer

change the line heightMeasureSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);

to if(height == 0) { heightMeasureSpec = MeasureSpec.makeMeasureSpec(300, MeasureSpec.EXACTLY); } else { heightMeasureSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY); }

in onMeasure() method of CustomViewPager.java class