View的onDraw函數不被調用

來源:互聯網
上載者:User

1.要實現一個容器  如此做:

public class CustomFrameLayout extends FrameLayout {private static final String TAG = "CustomFrameLayout";public CustomFrameLayout(Context context) {super(context);this.setWillNotDraw(false);//必須}public void onDraw(Canvas canvas){super.onDraw(canvas);drawSomething(canvas);}}

建構函式中沒有this.setWillNotDraw(false)這句話時候onDraw函數始終不被調用
直到添加上之後才可以成功調用onDraw函數

仔細查看onDraw函數的說明:

public void setWillNotDraw (boolean willNotDraw)Since: API Level 1

If this view doesn't do any drawing on its own, set this flag to allow further optimizations. By default, this flag is not set on View, but could be set on some View subclasses such as ViewGroup. Typically, if you overrideonDraw(Canvas) you
should clear this flag.

Parameters
willNotDraw whether or not this View draw on its own
總之,要想再自訂的畫一些東西 就要進行setWillNotDraw(false).2.如果你有兩個容器 A 和 a,a是放在A之中。如果都對這兩個容器設定了setWillNotDraw(false),那麼你將會看到一個“奇蹟":a中被添加進來的控制項都不透明了,這時候不要懷疑你的控制項圖片不是透明的,是因為你對A容器設定了setWillNotDraw(false),嘗試將其去掉,問題就OK了

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.