I want to disable home key. I tried this code this will work on android 2.1 above but I want it for android 1.6
@Override
public void onAttachedToWindow()
{
this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG);
super.onAttachedToWindow();
}