如何隐藏图像按钮?

Mon*_*ona 3 android

我有1个imageButton,我想在onc​​reate方法中5秒后隐藏该按钮.谁能帮帮我吗

bhu*_*ups 9

onCreate(){
  new SleepTask().execute();
}

private class SleepTask extends AsyncTask{
  protected void doInBackground(){
    Thread.sleep(5000);
  }
  protected void onPostExecute(){
    yourImageButton.setVisiblity(View.INVISIBLE);
  }
}
Run Code Online (Sandbox Code Playgroud)