当前位置: 代码迷 >> Android >> android中屏蔽其它系统旋钮的dialog
  详细解决方案

android中屏蔽其它系统旋钮的dialog

热度:81   发布时间:2016-05-01 13:39:33.0
android中屏蔽其它系统按钮的dialog

public class MyProgressDialog extends ProgressDialog {	public MyProgressDialog(Context context) {		super(context);		this.getWindow().setType(				WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG);		// TYPE_KEYGUARD_DIALOG:disable any key,eg:back key,home key etc.	}	@Override	public boolean onSearchRequested() {		return false;	}}
?
  相关解决方案