Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
いくつかのhtmlをフラッシュでパッケージ化し、Androidプロジェクトとしてバンドルする方法を見つけようとしています。WebView を作成して WebView をロードする代わりに
webView.loadUrl("file:///..");
バンドルされたファイルをタブレットのネイティブ (外部) ブラウザーで読み込むことはできますか?
インテントに閲覧可能なカテゴリを追加する必要があります。
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.fromFile("file:////")); intent.addCategory(Intent.CATEGORY_BROWSABLE); startActivity(intent);
注: Evironment.getExternalEnvironment() を使用して外部 SD カードのパスを取得するパスをハードコーディングしないでください。