dwarvesf / til

Today I Learned. Our knowledge hub. List out what we've learned everyday, organized.
29 stars 1 forks source link

Custom Max Height, Max Width for view on android #50

Open siliconprime-thanhduc opened 5 years ago

siliconprime-thanhduc commented 5 years ago

Trong 1 view của android không hỗ trợ cho việc set max height , nhưng đôi khi có những trường hợp bạn cần 1 view wrap content và muốn có chiều ngang hoặc chiều dọc tối đa thì android lại ko support sẵn. Việc chúng ta làm là sẽ custom lại view đó, ta sẽ override lại trong hàm onMeasure

@Override
protected void onMeasure(int widthSpec, int heightSpec) {
    heightSpec = MeasureSpec.makeMeasureSpec(Utils.dpsToPixels(240), MeasureSpec.AT_MOST);
    super.onMeasure(widthSpec, heightSpec);
}