[質問内容]
android studioでgifの挿入をしたいと思い
https://qiita.com/maehara08/items/eef63804c52b2e0bb404#%E5%AE%8C%E6%88%90
上記のURLを参考にしてみたのですが
java
1ImageView imageView = (ImageView) findViewById(R.id.droidimageid1); 2 GlideDrawableImageViewTarget target = new GlideDrawableImageViewTarget(imageView); 3 Glide.with(this).load(R.raw.droid1).into(target);
上記のコードの
GlideDrawableImageViewTarget target = new GlideDrawableImageViewTarget(imageView);
Glide.with(this).load(R.raw.lane).into(target);
の[GlideDrawableImageViewTarget]と[Glide]の部分が赤文字でエラーとなり、
エラー文は
[Cannot resolve symbol 'GlideDrawableimageViewTarget]
[Cannot resolve symbol 'Glide]
の2つとなっています。
おそらくGlideDrawableimageViewTargetとGlideを定義してない
というエラー文だと思うのですがどう定義するのか分かりません。
分かる方いましたらご教授お願いします。
[追記]
xmlファイル
1 2<?xml version="1.0" encoding="utf-8"?> 3<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 4 xmlns:app="http://schemas.android.com/apk/res-auto" 5 xmlns:tools="http://schemas.android.com/tools" 6 android:layout_width="match_parent" 7 android:layout_height="match_parent" 8 tools:context=".DroidSlotActivity"> 9 10 <ImageView 11 android:id="@+id/droidimageid1" 12 android:layout_width="70dp" 13 android:layout_height="70dp" 14 android:layout_marginTop="100dp" 15 android:layout_toLeftOf="@id/droidimageid2" 16 android:src="@drawable/m" />``` 17 18 19```build.gradle(:app) 20 21plugins { 22 id 'com.android.application' 23} 24 25android { 26 compileSdkVersion 30 27 buildToolsVersion "30.0.2" 28 29 defaultConfig { 30 applicationId "sample.example.droidslot4" 31 minSdkVersion 19 32 targetSdkVersion 30 33 versionCode 1 34 versionName "1.0" 35 36 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 37 } 38 39 buildTypes { 40 release { 41 minifyEnabled false 42 proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 43 } 44 } 45 compileOptions { 46 sourceCompatibility JavaVersion.VERSION_1_8 47 targetCompatibility JavaVersion.VERSION_1_8 48 } 49} 50 51dependencies { 52 53 implementation 'androidx.appcompat:appcompat:1.2.0' 54 implementation 'com.google.android.material:material:1.2.1' 55 implementation 'androidx.constraintlayout:constraintlayout:2.0.1' 56 testImplementation 'junit:junit:4.+' 57 androidTestImplementation 'androidx.test.ext:junit:1.1.2' 58 androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' 59 implementation 'com.github.bumptech.glide:glide:4.11.0' 60 annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0' 61} 62
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/12 23:53
2020/10/13 01:13
2020/10/13 01:40
2020/10/13 01:53 編集
2020/10/13 02:06
2020/10/13 02:10
2020/10/13 02:11