Glide uygulamasının GitHub sayfası --> https://github.com/bumptech/glide
Öncelikle uygulamanın gradle sayfasında şu değişiklikleri yapın;
repositories { mavenCentral() } dependencies { compile 'com.github.bumptech.glide:glide:3.7.0' compile 'com.android.support:support-v4:19.1.0' }
Ardından forma bir ImageView ekleyin ve
@Override public void onCreate(Bundle savedInstanceState) { ... ImageView imageView = (ImageView) findViewById(R.id.my_image_view); Glide.with(this).load("http://goo.gl/gEgYUd").into(imageView); }
Hiç yorum yok:
Yorum Gönder