たぼさんの部屋

いちょぼとのんびり

2013-09-13から1日間の記事一覧

EFO+音声認識アプリについて

目的 EFOページを起動しているブラウザ(標準ブラウザ,FireFox,operaなど)から音声認識アプリを起動させる 音声認識アプリがインストールされていない場合はインストール用ページを表示する ブラウザの入力欄がフォーカス時に音声認識プログラムを起動する …

android ファイルの読み書き

private void mWriteFile() { try { FileOutputStream fileOutputStream = openFileOutput("myfile.txt", MODE_PRIVATE); String writeString = "test"; fileOutputStream.write(writeString.getBytes()); } catch (FileNotFoundException e) { Toast.makeTe…

androidブラウザを起動する

private void openBrower(){ String packageName = "com.android.browser"; String className = "com.android.browser.BrowserActivity"; Intent internetIntent = new Intent(Intent.ACTION_VIEW); internetIntent.addCategory(Intent.CATEGORY_LAUNCHER); …