0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Android】AndroidでGif画像を使用する【Kotlin】

Posted at

使用方法

build.gradleに以下のライブラリを追加。
この記事を書いている現在では

build.gradle4.16.0が最新だったので最新を使用しています。
dependencies {
  implementation 'com.github.bumptech.glide:glide:4.16.0'
}

Gifをセットしたいタイミングで以下のようにImageViewに対してGif画像を読み込ませます。
"XXXXXX"としているところにGif画像の場所を設定します。

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main)

    val imageView = findViewById(R.id.my_image_view)
    Glide.with(this).load(XXXXXX).into(imageView)
}

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?