一、使ViewGroup中的View无效
private void disableDialerView(ViewGroup vg){
for(int i = 0;i<vg.getChildCount();i++){
View v = vg.getChildAt(i);
v.setEnabled(false);
if(v instanceof ViewGroup){
disableDialerView((ViewGroup)v);
}
}
}