How do I add an image in the drawable folder to an ImageView in Android Studio 1.2?

Justin M.

Since Google added the mipmap folder for the launcher icons, I have had issues using the drawables folder. I manually added the hdpi folders in the drawable folder, but when I try and add the src path, the images won't allow me to view and select them. How do I add an image in the drawable folder to an ImageView in Android Studio 1.2?

Amitsharma

try with this way of code there are three ways to set image on ImageView

imageView.setImageResource(R.drawable.play);

or

            <ImageView
            android:id="@+id/ivProfileBg"
            android:src="@drawable/image_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

or

              <ImageView
              android:id="@+id/ivProfileBg"
              android:background="@drawable/image_name"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content" />

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

Possible to create subfolders in drawable folder in Android Studio?

分類Dev

How to add 'libs' folder in Android Studio?

分類Dev

How do I insert an image in an activity with android studio?

分類Dev

Android add border image to ImageView

分類Dev

how to add image to listview from drawable

分類Dev

How can I set an the image of an imageview for a specific file in Android?

分類Dev

How to blink image in ImageView (Android)

分類Dev

Name of image in drawable folder red

分類Dev

How do I 'miragte' GoogleApiClient to Android Studio?

分類Dev

How do I use the default android Button drawable as the background of another view?

分類Dev

Android Studio:Drawable Folder:画像を複数dpiに配置する方法

分類Dev

How do I add a CA root certificate inside a docker image?

分類Dev

How do I add a CA root certificate inside a docker image?

分類Dev

How do I add a CA root certificate inside a docker image?

分類Dev

How do I add an image and a label to a tab bar item with SwiftUI

分類Dev

How do I add a simple image overlay in Mapbox Javascript?

分類Dev

How can I add the fonts in editor of Android Studio

分類Dev

How can I add test folders in Android Studio

分類Dev

Android java change drawable image

分類Dev

How to dynamically set drawable resource to ImageView?

分類Dev

Android ImageView stretches image

分類Dev

Android Studio ImageView

分類Dev

Android Studio ImageView

分類Dev

Visual Studio Template - How DO I Copy a .gitignore file to the root folder where the .sln file exists?

分類Dev

How do I call a class contained in a folder in C#/Visual Studio?

分類Dev

How do I share an image on iOS and Android using Flutter?

分類Dev

How do I download an image from Firebase Storage on Android?

分類Dev

How do I calculate age using the date format in android studio?

分類Dev

How do I get rid of errors using TaskStackBuilder on Android Studio?

Related 関連記事

  1. 1

    Possible to create subfolders in drawable folder in Android Studio?

  2. 2

    How to add 'libs' folder in Android Studio?

  3. 3

    How do I insert an image in an activity with android studio?

  4. 4

    Android add border image to ImageView

  5. 5

    how to add image to listview from drawable

  6. 6

    How can I set an the image of an imageview for a specific file in Android?

  7. 7

    How to blink image in ImageView (Android)

  8. 8

    Name of image in drawable folder red

  9. 9

    How do I 'miragte' GoogleApiClient to Android Studio?

  10. 10

    How do I use the default android Button drawable as the background of another view?

  11. 11

    Android Studio:Drawable Folder:画像を複数dpiに配置する方法

  12. 12

    How do I add a CA root certificate inside a docker image?

  13. 13

    How do I add a CA root certificate inside a docker image?

  14. 14

    How do I add a CA root certificate inside a docker image?

  15. 15

    How do I add an image and a label to a tab bar item with SwiftUI

  16. 16

    How do I add a simple image overlay in Mapbox Javascript?

  17. 17

    How can I add the fonts in editor of Android Studio

  18. 18

    How can I add test folders in Android Studio

  19. 19

    Android java change drawable image

  20. 20

    How to dynamically set drawable resource to ImageView?

  21. 21

    Android ImageView stretches image

  22. 22

    Android Studio ImageView

  23. 23

    Android Studio ImageView

  24. 24

    Visual Studio Template - How DO I Copy a .gitignore file to the root folder where the .sln file exists?

  25. 25

    How do I call a class contained in a folder in C#/Visual Studio?

  26. 26

    How do I share an image on iOS and Android using Flutter?

  27. 27

    How do I download an image from Firebase Storage on Android?

  28. 28

    How do I calculate age using the date format in android studio?

  29. 29

    How do I get rid of errors using TaskStackBuilder on Android Studio?

ホットタグ

アーカイブ