私はAndroidアプリケーションの開発には新しく、インテントをダイアログとして表示したいと考えています。これどうやってするの?ダイアログ内にAndroidのイントロデントを表示
Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
私は、ダイアログ上でこれを表示したいです。私に提案してください。
私はAndroidアプリケーションの開発には新しく、インテントをダイアログとして表示したいと考えています。これどうやってするの?ダイアログ内にAndroidのイントロデントを表示
Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
私は、ダイアログ上でこれを表示したいです。私に提案してください。
はこれを試してみてください、
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
File file = new File("/sdcard/test.mp4");
intent.setDataAndType(Uri.fromFile(file), "video/*");
startActivity(intent);
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
File file = new File("/sdcard/test.mp3");
intent.setDataAndType(Uri.fromFile(file), "audio/*");
startActivity(intent);
は、マニフェストファイル内の対応する活動にandroid:style/Theme.Dialog
を与えます。
私は表示したいカメラインテント、ギャラリーインテント、ズームインテントなどのデフォルトインテントを表示するにはどうすればよいですか? – karthi
私はこのインテントをダイアログビューで表示したい – karthi