Save Profile Image | Android App Development | Lecture#61 | Hive Learners

๐“–๐“ป๐“ฎ๐“ฎ๐“ฝ๐“ฒ๐“ท๐“ฐ๐“ผ

Hi Hive Learners, I hope you all are well. In the previous lecture, we learn how to get the Image Uri and Upload it to Firebase Storage. There is another way to save the Profile Image during the Signup. We only need to add the Image Uri with the UsersData. It will auto-upload the image and save it in Firebase User Profile Data. I also missed some useful code to share in the last lecture. It helps us to get the correct Image Uri. I will share it today. Let's get started.

GitHub Link

Use this GitHub project to clone into your directory. The following lecture will update it so you will never miss the latest code. Happy Coding!

What Should I Learn

  • Save the image Profile with UserData

Assignment

  • Save user Profile image

Procedure

First, we need to get the correct Image Uri of the captured image using the camera. Here are some functions that help us to get the correct Image Uri. I found this solution from the StackOverFlow. First, we get the tempUri of the selected file sometimes it does not work with firebase with the latest Android Versions. So we need to get use the getRealPathFromURI to get the correct patch of the File and we can parse this File to correct Uri.

 public Uri getImageUri(Context inContext, Bitmap inImage) {
        ByteArrayOutputStream bytes = new ByteArrayOutputStream();
        inImage.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
        String path = MediaStore.Images.Media.insertImage(inContext.getContentResolver(), inImage, "Title", null);
        return Uri.parse(path);
    }

    public String getRealPathFromURI(Uri uri) {
        String path = "";
        if (getContentResolver() != null) {
            Cursor cursor = getContentResolver().query(uri, null, null, null, null);
            if (cursor != null) {
                cursor.moveToFirst();
                int idx = cursor.getColumnIndex(MediaStore.Images.ImageColumns.DATA);
                path = cursor.getString(idx);
                cursor.close();
            }
        }
        return path;
    }

We need to set a Global variable profileImageUri and we will update it on the Activity result.

Remove/Comment the upload image line from the ActivityRersult section and save the Uri to the variable.

Now we need to use this profileImageUri in UserProfileChangeRequest.

UserProfileChangeRequest profileUpdates = new UserProfileChangeRequest.Builder()
                            .setDisplayName(username)
                            .setPhotoUri(profileImageUri)
                            .build();

We also need to set the check before this.

We can set an image source in the XML file to show the Profile Image Icon.

All Done! Now when a user signup Firebase will store this selected profile image to UserProfile.


hl_divider.png

Thank You

hl_footer_banner.png



0
0
0.000
10 comments
avatar

Thanks for your contribution to the STEMsocial community. Feel free to join us on discord to get to know the rest of us!

Please consider delegating to the @stemsocial account (85% of the curation rewards are returned).

You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support.ย 
ย 

0
0
0.000
avatar

These posts have little to no engagement. Without that, I will say they are a farming operation.

Who is reading and finding any benefits from this?

0
0
0.000
avatar

Even no one reading the post. But It's a series if someone need any help at any stage they can get it on Hive. How can you say it is a farming operation.

0
0
0.000
avatar
(Edited)

Dude, I will made it plain for you. If I see 100% โ€œself-voteโ€ on your account I will adjust it.

No if but or coconut.

Alright?

0
0
0.000
avatar

Alright! Self vote from?

0
0
0.000
avatar

Lazy Panda

0
0
0.000
avatar

I am not handling that account. I got Graphic Designing and Discord Bot related Jobs in the community.

0
0
0.000
avatar

Most of my work is behind the scene. I start this Android App Development series to contribute to the Hive ecosystem. There is no self-voting.

0
0
0.000
avatar

I have already said what I wanted to say. None of those posts will reach payout with 100% vote. End of discussion and explanation.

0
0
0.000
avatar

Ok, I will talk with our curators to look into this issue. Thank You for your time

0
0
0.000