Posts by Lucca Pessoa • 24 points
4 posts
-
0
votes2
answers611
viewsA: How to overwrite a method
I recommend using @Property annotations for "get", @do_attribute.Setter for "Setter", and str for the "toString". To overwrite the method you should use inheritance (as seen already used) and from…
-
0
votes1
answer47
viewsA: Error when taking photo with android camera - Glideexception - Onloadfailed
The bitmap code is: case PICK_IMAGE_CAMERA: status = true; if(resultCode != StorageUploadActivity.RESULT_CANCELED){ Bundle extras = data.getExtras(); Bitmap bitmap = (Bitmap) extras.get("data");…
-
1
votes1
answer47
viewsQ: Error when taking photo with android camera - Glideexception - Onloadfailed
I’m trying to implement the function of taking the photo with the camera in my app, but without I’m falling into the treatment of failure in Glide onLoadFailed. I have tested other logics and can…
-
-1
votes1
answer691
viewsQ: Removing elements from a Python list
Basically I want to remove the elements from a list by one criterion. For example: I have a room with N students, I will store the grade of these students in a list and compare these grades with the…