AndroidStudio4.1を使っています。
https://nulab.com/ja/blog/nulab/android-library-glide/
にある手順どおりにやったのですが、画像を読み込めません。
MainActivity.ktは、
<code> package com.example.myapplication11import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.widget.ImageView
import com.bumptech.glide.Glide
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
ImageView matchImage = findViewById(R.id.match_image); String gifUrl = "https://nulab.com/ja/app/uploads/sites/2/2017/10/techblog-vue-kanban-06.gif"; Glide.with(this).load(gifUrl).into(matchImage); super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) }
}
</code>
そしてActivityMain.xmlは、
<code> <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"><TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> <ImageView android:id="@+id/match_image" android:layout_width="match_parent" android:layout_height="wrap_content" />
</androidx.constraintlayout.widget.ConstraintLayout>
</code>
です。
ここ3日ほど試行錯誤していますが全くわかりません。上に挙げたURLのが一番シンプルだったので挙げました。
INTERNETのパーミッションや、Glideのbuild.gradleとその後のSyncは大丈夫です。
別スレッドでなければいけないという情報もあるし、非同期にしなければ駄目ともありますが、なんのことやらという状態です。
どなたか時間のある方、ご指南お願いできないでしょうか。
回答1件
あなたの回答
tips
プレビュー