android – UserProfileChangeRequest setPhotoUri – 它是如何完成的?

如果我想允许用户从设备上传自己的照片:

>所需的图像格式是什么?
>图像文件大小?
>图像尺寸?
>我在哪里上传到?

码:

UserProfileChangeRequest profileUpdates = new UserProfileChangeRequest.Builder()
        .setDisplayName("Jane Q. User")
        .setPhotoUri(Uri.parse("https://example.com/jane-q-user/profile.jpg"))
        .build();

最佳答案 谢谢弗兰克的快速解答.

我写了一些关于上传到firebase存储的内容,然后尝试将其粘贴到此处,但“没有正确格式化为代码”阻止我上传.

点赞