次のコードが完全に機能していることがわかりました。
Intent intent = new Intent( Intent.ACTION_DIAL , Uri.parse("tel:555-2368") );
しかし、以下のコードを試してみたところ、うまくいきません。ファイルから読み取って URI を作成しようとしています。
File f = new File ( "tushar.txt") ;
f.createNewFile() ;
fw = new FileWriter(f) ;
bfr = new BufferedWriter(fw);
bfr.write("9654309293") ;
bfr.write("9876543210") ;
Uri u = Uri.fromFile(f) ;
Intent intent =
new Intent(Intent.ACTION_DIAL, u);