2

Androidで組み込みの画像プロバイダーを開いていますが、正しく開いています。

Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);

    // Filter to only show results that can be "opened", such as a
    // file (as opposed to a list of contacts or timezones)
    intent.addCategory(Intent.CATEGORY_OPENABLE);

    // Filter to show only images, using the image MIME data type.
    // If one wanted to search for ogg vorbis files, the type would be "audio/ogg".
    // To search for all documents available via installed storage providers,
    // it would be "*/*".
    intent.setType("image/*");

    startActivityForResult(intent, READ_REQUEST_CODE);

アイコン欲しい

私の質問は、カスタムテーマで開きたいということです。

私を適用するandroid:colorPrimaryなど、メニューに常に表示されるカマラアイコンが必要です...

アプリのテーマをドキュメント プロバイダーに適用するにはどうすればよいですか?

4

0 に答える 0