Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

E/Surface﹕ getSlotFromBufferLocked: unknown buffer: 0xab7519c0

I have a problem with my app. No inserts the data in mysql, the app does not have errors and orange single message log is:

 E / Surface: getSlotFromBufferLocked: unknown buffer: 0xab7519c0

I hope you can help me.

Thank you

like image 749
Matias Emanuel Báscolo Avatar asked Oct 09 '15 20:10

Matias Emanuel Báscolo


2 Answers

This is an opened issue in Android. You can keep track of this issue here.

EDIT: The issue is fixed in Android 6.0.1

like image 172
Sam Bellerose Avatar answered Nov 08 '22 20:11

Sam Bellerose


This happens when you try to set value of TextView to an integer.

When you assign a value of String to a TextView this error disappears.

For example

I have create a Text View in xml file. I am trying to set the value of that particular text field from java code. I am setting the int value to Text View but I am receiving an error getSlotFromBufferLocked: unknown buffer: 0xab7519c0 but after changing value from int to String and setting TextView from that String error disappears and app is working fine.

like image 8
Natiq Sihab Avatar answered Nov 08 '22 21:11

Natiq Sihab