toddler safe app on android

前端 未结 2 1552
滥情空心
滥情空心 2020-12-15 02:11

I have an app, that should be toddler safe. Meaning that, it blocks any single key touch, yet handles long pressing for exiting the app. This is so that, the toddler will be

2条回答
  •  春和景丽
    2020-12-15 02:33

    For me below code is hiding the home button in ICS (version 4.4.4)

    public void onCreate(Bundle savedInstanceState) {
        this.getWindow().setType(WindowManager.LayoutParams.TYPE_APPLICATION);
                super.onAttachedToWindow();
                super.onCreate(savedInstanceState);
                setContentView(R.layout.main);
    
        }
    

提交回复
热议问题