Progress Bar with unzipping of file
问题 I am trying to update a progress bar with unzipping of file in the sd card. My unzipping works fine but the progress bar does not appear. Here is my code in mainactivity: private ProgressBar bar; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); bar = (ProgressBar) findViewById(R.id.progress); String zipFilename = Environment.getExternalStorageDirectory() + "path to my zip file in sd card"; String unzipLocation =