If you think the Android project visiting-card-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package com.special.ResideMenu;
/*www.java2s.com*/import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
/**
* Created by thonguyen on 15/4/14.
*/class TouchDisableView extends ViewGroup {
private View mContent;
// private int mMode;
privateboolean mTouchDisabled = false;
public TouchDisableView(Context context) {
this(context, null);
}
public TouchDisableView(Context context, AttributeSet attrs) {
super(context, attrs);
}
publicvoid setContent(View v) {
if (mContent != null) {
this.removeView(mContent);
}
mContent = v;
addView(mContent);
}
public View getContent() {
return mContent;
}
@Override
protectedvoid onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int width = getDefaultSize(0, widthMeasureSpec);
int height = getDefaultSize(0, heightMeasureSpec);
setMeasuredDimension(width, height);
finalint contentWidth = getChildMeasureSpec(widthMeasureSpec, 0, width);
finalint contentHeight = getChildMeasureSpec(heightMeasureSpec, 0, height);
mContent.measure(contentWidth, contentHeight);
}
@Override
protectedvoid onLayout(boolean changed, int l, int t, int r, int b) {
finalint width = r - l;
finalint height = b - t;
mContent.layout(0, 0, width, height);
}
@Override
publicboolean onInterceptTouchEvent(MotionEvent ev) {
return mTouchDisabled;
}
void setTouchDisable(boolean disableTouch) {
mTouchDisabled = disableTouch;
}
boolean isTouchDisabled() {
return mTouchDisabled;
}
}