First Google result searching for this issue's title:
http://stackoverflow.com/q/29982341/253468
For resource ids, you can use:
Glide.with(fragment) .load(R.id.resource_id) .into(imageView);For assets, you can construct an asset uri:
Glide.with(fragment) .load(Uri.parse("file:///android_asset/assetName")) .into(imageView);--- answered by @sjudd
This doesn't work
+1 This doesn't work
Commenting on a year+ old issue is not likely to get you a useful answer. If something isn't working for you, please file a new issue and fill out the issue template.
it may not get a useful answer, but it tells other people this is not working code.
Most helpful comment
This doesn't work