Back to project page Common-Library.
The source code is released under:
Apache License
If you think the Android project Common-Library 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.morgan.library.widget; /*ww w. jav a 2 s . c om*/ import android.content.Context; import android.util.AttributeSet; import android.widget.LinearLayout; /** * ?????????View???????LinearLayout * * @author Morgan.Ji * */ public class InterceptPressLayout extends LinearLayout { public InterceptPressLayout(Context context, AttributeSet attrs) { super(context, attrs); } @Override protected void dispatchSetPressed(boolean pressed) { } }