編輯:Android開發實例
本文實例講述了Android編程實現將壓縮數據庫文件拷貝到安裝目錄的方法。分享給大家供大家參考,具體如下:
public void copyZip2DataDirectory(Context context) throws IOException { FileOutputStream outputStream = null; AssetManager assetManager = context.getAssets(); InputStream inputStream = assetManager.open("test.zip"); ZipInputStream zis = new ZipInputStream(inputStream); ZipEntry entry = null; while ((entry = zis.getNextEntry()) != null) { outputStream = context.openFileOutput(entry.getName(), Context.MODE_PRIVATE); byte[] buffer = new byte[2 * 1024]; int len = -1; while ((len = zis.read(buffer)) != -1) { outputStream.write(buffer, 0, len); } outputStream.close(); } zis.close(); inputStream.close(); }
希望本文所述對大家Android程序設計有所幫助。
本文乃是一位Android開發愛好者為大家奉獻的一個小人時鐘的Android開
可以顯示在的Android任務,通過加載進度條的進展。進度條有兩種形狀。加載欄和加載微調(spinner)。在本章中,我們將討論微調(spinner)。Spinner 用
ToggleButton的狀態只能是選中和未選中,並且需要為不同的狀態設置不同的顯示文本。 以下案例為ToggleButton的用法 目錄結構 main.xml
本文實例講述了Android學習筆記之應用單元測試。分享給大家供大家參考,具體如下: 第一步:在AndroidManifest.xml中加入如下兩段代碼: &