參考:
http://blog.sina.com.cn/s/blog_4b50130d0100u0uk.html
http://blog.csdn.net/hearrt/article/details/7001358
解決自訂View的onDraw()方法不被執行問題。
當我們需要建立一個直接或間接繼承View的類,以便重寫onDraw()方法,實現自訂的View的繪製時,往往會發現onDraw方法並沒有正確的執行。
你需要在你直接或者間接繼承View的類的構造函數中加入下面的語句:
setWillNotDraw(false);
這個標記在View裡是不設定的。但是像View的一些子類如ViewGroup是可以設定的。典型的,你如果複寫了onDraw(Canvas)方法,你需要清除此標記。
1.要實現一個容器 如此做:
[java]
view plaincopyprint?
- 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);
- }
- }
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了
分享到:
上一篇:svn更新有問題
下一篇:Android手機進行無線調試
參考:
http://blog.sina.com.cn/s/blog_4b50130d0100u0uk.html
http://blog.csdn.net/hearrt/article/details/7001358
解決自訂View的onDraw()方法不被執行問題。
當我們需要建立一個直接或間接繼承View的類,以便重寫onDraw()方法,實現自訂的View的繪製時,往往會發現onDraw方法並沒有正確的執行。
你需要在你直接或者間接繼承View的類的構造函數中加入下面的語句:
setWillNotDraw(false);
這個標記在View裡是不設定的。但是像View的一些子類如ViewGroup是可以設定的。典型的,你如果複寫了onDraw(Canvas)方法,你需要清除此標記。
1.要實現一個容器 如此做:
[java]
view plaincopyprint?
- 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);
- }
- }
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了