中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

onLayout()與自定義View布局實現

小樊
83
2024-08-14 07:19:39
欄目: 編程語言

onLayout()方法是ViewGroup類中的一個重要方法,用于確定子View的位置和大小。當一個ViewGroup的子View發生變化時,系統會調用onLayout()方法來重新布局子View。

自定義View的布局實現可以通過重寫onLayout()方法來實現。在自定義View中,可以在onLayout()方法中設置子View的位置和大小,以實現自定義的布局效果。

例如,假設我們有一個自定義的LinearLayout,需要實現子View按照一定的規則進行布局。我們可以重寫LinearLayout的onLayout()方法,然后在方法中設置子View的位置和大小。

public class CustomLinearLayout extends LinearLayout {

    public CustomLinearLayout(Context context) {
        super(context);
    }

    public CustomLinearLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        super.onLayout(changed, l, t, r, b);
        
        // 自定義布局規則
        int childCount = getChildCount();
        int top = 0;
        for (int i = 0; i < childCount; i++) {
            View child = getChildAt(i);
            int childWidth = child.getMeasuredWidth();
            int childHeight = child.getMeasuredHeight();
            child.layout(0, top, childWidth, top + childHeight);
            top += childHeight;
        }
    }
}

在上面的例子中,我們重寫了LinearLayout的onLayout()方法,實現了一個自定義的布局規則:子View依次垂直排列,頂部對齊。在方法中,我們遍歷子View,設置每個子View的位置和大小。

通過重寫onLayout()方法,我們可以實現各種自定義的布局效果,從而滿足不同的設計需求。

0
水城县| 衡山县| 宣汉县| 梁河县| 平邑县| 博罗县| 武威市| 商洛市| 曲靖市| 阳城县| 贡山| 邛崃市| 云梦县| 洛川县| 武强县| 库车县| 潼南县| 客服| 新源县| 垦利县| 亚东县| 大港区| 湟中县| 寻乌县| 乌拉特后旗| 如东县| 沙洋县| 乳山市| 梁平县| 阳新县| 九江市| 遂川县| 松阳县| 呼伦贝尔市| 舞阳县| 天台县| 滦平县| 筠连县| 海盐县| 萨嘎县| 缙云县|