繼承ViewGroup學習onMeasure()和onLayout()方法

来源:http://www.cnblogs.com/ganchuanpu/archive/2017/04/16/6716574.html
-Advertisement-
Play Games

在繼承ViewGroup類時,需要重寫兩個方法,分別是onMeasure和onLayout。 1,在方法onMeasure中調用setMeasuredDimension方法void android.view.View.setMeasuredDimension(int measuredWidth, i ...


在繼承ViewGroup類時,需要重寫兩個方法,分別是onMeasure和onLayout。

1,在方法onMeasure中調用setMeasuredDimension方法void android.view.View.setMeasuredDimension(int measuredWidth, int measuredHeight)
在onMeasure(int, int)中,必須調用setMeasuredDimension(int width, int height)來存儲測量得到的寬度和高度值,如果沒有這麼去做會觸發異常IllegalStateException。
2,在方法onMeasure中調用孩子的measure方法

void android.view.View.measure(int widthMeasureSpec, int heightMeasureSpec)

這個方法用來測量出view的大小。父view使用width參數和height參數來提供constraint信息。實際上,view的測量工作在onMeasure(int, int)方法中完成。因此,只有onMeasure(int, int)方法可以且必須被重寫。參數widthMeasureSpec提供view的水平空間的規格說明,參數heightMeasureSpec提供view的垂直空間的規格說明。

3,解析onMeasure(int, int)方法

void android.view.View.onMeasure(int widthMeasureSpec, int heightMeasureSpec)

測量view及其內容來確定view的寬度和高度。這個方法在measure(int, int)中被調用,必須被重寫來精確和有效的測量view的內容。

在重寫這個方法時,必須調用setMeasuredDimension(int, int)來存儲測量得到的寬度和高度值。執行失敗會觸發一個IllegalStateException異常。調用父view的onMeasure(int, int)是合法有效的用法。

view的基本測量數據預設取其背景尺寸,除非允許更大的尺寸。子view必須重寫onMeasure(int, int)來提供其內容更加準確的測量數值。如果被重寫,子類確保測量的height和width至少是view的最小高度和寬度(通過getSuggestedMinimumHeight()和getSuggestedMinimumWidth()獲取)。

4,解析onLayout(boolean, int, int, int, int)方法

void android.view.ViewGroup.onLayout(boolean changed, int l, int t, int r, int b)

調用場景:在view給其孩子設置尺寸和位置時被調用。子view,包括孩子在內,必須重寫onLayout(boolean, int, int, int, int)方法,並且調用各自的layout(int, int, int, int)方法。

參數說明:參數changed表示view有新的尺寸或位置;參數l表示相對於父view的Left位置;參數t表示相對於父view的Top位置;參數r表示相對於父view的Right位置;參數b表示相對於父view的Bottom位置。.

5,解析View.MeasureSpec類
android.view.View.MeasureSpec
MeasureSpec對象,封裝了layout規格說明,並且從父view傳遞給子view。每個MeasureSpec對象代表了width或height的規格。
MeasureSpec對象包含一個size和一個mode,其中mode可以取以下三個數值之一:
UNSPECIFIED,1073741824 [0x40000000],未加規定的,表示沒有給子view添加任何規定。
EXACTLY,0 [0x0],精確的,表示父view為子view確定精確的尺寸。
AT_MOST,-2147483648 [0x80000000],子view可以在指定的尺寸內儘量大。


在這裡給大家舉一個例子demo:
第一步:自定義一個View實現ViewGroup介面,即自定義ViewGroup:

import android.content.Context;  
import android.util.AttributeSet;  
import android.view.View;  
import android.view.ViewGroup;  
  
public class MyViewGroup extends ViewGroup {  
  
    public MyViewGroup(Context context) {  
        super(context);  
    }  
  
    public MyViewGroup(Context context, AttributeSet attrs) {  
        super(context, attrs);  
    }  
  
    public MyViewGroup(Context context, AttributeSet attrs, int defStyle) {  
        super(context, attrs, defStyle);  
    }  
  
    /** 
     * 計算控制項的大小 
     */  
    @Override  
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {  
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);  
        int measureWidth = measureWidth(widthMeasureSpec);  
        int measureHeight = measureHeight(heightMeasureSpec);  
        // 計算自定義的ViewGroup中所有子控制項的大小  
        measureChildren(widthMeasureSpec, heightMeasureSpec);  
        // 設置自定義的控制項MyViewGroup的大小  
        setMeasuredDimension(measureWidth, measureHeight);  
    }  
  
    private int measureWidth(int pWidthMeasureSpec) {  
        int result = 0;  
        int widthMode = MeasureSpec.getMode(pWidthMeasureSpec);// 得到模式  
        int widthSize = MeasureSpec.getSize(pWidthMeasureSpec);// 得到尺寸  
  
        switch (widthMode) {  
        /** 
         * mode共有三種情況,取值分別為MeasureSpec.UNSPECIFIED, MeasureSpec.EXACTLY, 
         * MeasureSpec.AT_MOST。 
         *  
         *  
         * MeasureSpec.EXACTLY是精確尺寸, 
         * 當我們將控制項的layout_width或layout_height指定為具體數值時如andorid 
         * :layout_width="50dip",或者為FILL_PARENT是,都是控制項大小已經確定的情況,都是精確尺寸。 
         *  
         *  
         * MeasureSpec.AT_MOST是最大尺寸, 
         * 當控制項的layout_width或layout_height指定為WRAP_CONTENT時 
         * ,控制項大小一般隨著控制項的子空間或內容進行變化,此時控制項尺寸只要不超過父控制項允許的最大尺寸即可 
         * 。因此,此時的mode是AT_MOST,size給出了父控制項允許的最大尺寸。 
         *  
         *  
         * MeasureSpec.UNSPECIFIED是未指定尺寸,這種情況不多,一般都是父控制項是AdapterView, 
         * 通過measure方法傳入的模式。 
         */  
        case MeasureSpec.AT_MOST:  
        case MeasureSpec.EXACTLY:  
            result = widthSize;  
            break;  
        }  
        return result;  
    }  
  
    private int measureHeight(int pHeightMeasureSpec) {  
        int result = 0;  
  
        int heightMode = MeasureSpec.getMode(pHeightMeasureSpec);  
        int heightSize = MeasureSpec.getSize(pHeightMeasureSpec);  
  
        switch (heightMode) {  
        case MeasureSpec.AT_MOST:  
        case MeasureSpec.EXACTLY:  
            result = heightSize;  
            break;  
        }  
        return result;  
    }  
  
    /** 
     * 覆寫onLayout,其目的是為了指定視圖的顯示位置,方法執行的前後順序是在onMeasure之後,因為視圖肯定是只有知道大小的情況下, 
     * 才能確定怎麼擺放 
     */  
    @Override  
    protected void onLayout(boolean changed, int l, int t, int r, int b) {  
        // 記錄總高度  
        int mTotalHeight = 0;  
        // 遍歷所有子視圖  
        int childCount = getChildCount();  
        for (int i = 0; i < childCount; i++) {  
            View childView = getChildAt(i);  
  
            // 獲取在onMeasure中計算的視圖尺寸  
            int measureHeight = childView.getMeasuredHeight();  
            int measuredWidth = childView.getMeasuredWidth();  
  
            childView.layout(l, mTotalHeight, measuredWidth, mTotalHeight  
                    + measureHeight);  
  
            mTotalHeight += measureHeight;  
  
        }  
    }  
  
}

第二步,佈局文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    xmlns:tools="http://schemas.android.com/tools"  
    android:layout_width="match_parent"  
    android:layout_height="match_parent"  
    android:background="#00f0f0"  
    tools:context=".MainActivity" >  
  
    <net.loonggg.viewgroup.MyViewGroup  
        android:id="@+id/myViewGroup"  
        android:layout_width="480dp"  
        android:layout_height="300dp"  
        android:background="#0f0f0f" >  
  
        <TextView  
            android:layout_width="200dp"  
            android:layout_height="100dp"  
            android:background="#000000"  
            android:gravity="center"  
            android:text="第一個TextView" />  
  
        <TextView  
            android:layout_width="100dp"  
            android:layout_height="200dp"  
            android:background="#ffffff"  
            android:gravity="center"  
            android:text="第二個TextView" />  
    </net.loonggg.viewgroup.MyViewGroup>  
  
</RelativeLayout>

  


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在上一篇文章《iOS之ProtocolBuffer搭建和示例demo》分享環境的搭建, 我們和伺服器進行IM通訊用了github有名的框架CocoaAsynSocket, 然後和伺服器之間的數據媒介是ProtoBuf。然後後面在開發的過程中也碰到了拆包和粘包問題,這方面網上資料很少,曲折了一下才解決 ...
  • Android保持屏幕常亮,PowerManager.WakeLock的使用 需要在AndroidManifest.xml中添加許可權<uses-permission android:name="android.permission.WAKE_LOCK"/> SCREEN_BRIGHT_WAKE_LO ...
  • 在使用一些產品列如微信、QQ之類的,如果有新消息來時,手機屏幕即使在鎖屏狀態下也會亮起並提示聲音,這時用戶就知道有新消息來臨了。但是,一般情況下手機鎖屏後,Android系統為了省電以及減少CPU消耗,在一段時間後會使系統進入休眠狀態,這時,Android系統中CPU會保持在一個相對較低的功耗狀態。 ...
  • 第一步: 為mac電腦配置 adb 命令的環境變數,分為2小步 1.找到 Android Studio 為你安裝的 SDK : 打開電腦中 Android studio 的工具的軟體,在啟動 Android studio 的軟體的界面中,點擊下方列表中的”configure“的選項。在點擊列表中的“ ...
  • 轉載請註明出處:http://www.cnblogs.com/cnwutianhao/p/6719380.html 作為Android開發者,一定不會對 GreenDao 和 ReactiveX 陌生。 GreenDao 號稱Android最快的關係型資料庫 ReactiveX Rx是一個編程模型, ...
  • 在使用pthread進行NDK中的多線程開發時,自己寫了一個BUG, 這個是啟動函數,即相當於Java中的Thread的run方法。初一看沒啥問題,編譯也能過,APP也能跑,但是每次都會crash。我把crash線程的log貼出來如下: 從log中看出,是記憶體訪問錯誤,然後使用addr2line工具 ...
  • 作者:Antonio Leiva 時間:Apr 11, 2017 原文鏈接:https://antonioleiva.com/dagger-android-kotlin/ 在Android上,創建去耦以及容易測試代碼的幾乎每位遲早都要訴諸Dagger。 雖然,在Kotlin中設置Dagger有一些不 ...
  • 在Android應用crash的類型中,native類型crash應該是比較難的一種了,因為大家接觸的少,然後相對也要多轉幾道工序,所有大部分對這個都比較生疏。雖然相關文章也有很多了,但是我在剛開始學的過程中還是遇到一些問題,下麵一一記錄,以便將來翻閱。 分析native crash 日誌需要幾個東 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...