You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static void displayHeader(String header, ImageView imageView) {
imageView.post(new Runnable() {
@Override
public void run() {
String url = header;
if (!TextUtils.isEmpty(url)) {
int height = imageView.getHeight();
int width = imageView.getWidth();
if (height == 0) {
height = sHeight;
}
if (width == 0) {
width = sWidth;
}
if (!TextUtils.isEmpty(url)) {
String suffix = String.format(mSuffix, height, width);
url += suffix;
}
}
displayImage(url, imageView, getHeaderOptions(), getCircularTransformation());
}
});
}
The text was updated successfully, but these errors were encountered:
hellowwwwp
changed the title
Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 5648 (glide-source-th), pid 5250 (com.dealuck.cyy)
Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 5648 (glide-source-th), pid 5250
Dec 28, 2018
This issue has been automatically marked as stale because it has not had activity in the last seven days. It will be closed if no further activity occurs within the next seven days. Thank you for your contributions.
Glide Version:4.8.0
Device/Android Version:Xiaomi Redmi 6 Pro Android8.1 / HUAWEI BKK-AL10 Android 8.0...
Stack trace / LogCat:
Sample Code:
1:
2:
The text was updated successfully, but these errors were encountered: