Back to project page LiveBlurListView.
The source code is released under:
Apache License
If you think the Android project LiveBlurListView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.koalcat.view; //from w ww . j a v a 2 s .co m import android.content.Context; import android.util.AttributeSet; import android.view.ViewGroup; public class LiveBlurViewGroup extends ViewGroup { public LiveBlurViewGroup(Context context) { super(context); // TODO Auto-generated constructor stub } public LiveBlurViewGroup(Context context, AttributeSet attrs) { super(context, attrs); // TODO Auto-generated constructor stub } public LiveBlurViewGroup(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); // TODO Auto-generated constructor stub } @Override protected void onLayout(boolean changed, int l, int t, int r, int b) { // TODO Auto-generated method stub } }