当前位置:   article > 正文

学习Android的第八天

学习Android的第八天

目录

Android ImageView 图像视图

ImageView 的基本使用

src属性和background属性的区别

范例

解决 anndroid:blackground 属性拉伸导致图片变形的方法

设置透明度的问题

范例

android:src 和 android:background 结合

范例

Java 代码中设置 blackground 和 src 属性

android:adjustViewBounds 设置缩放是否保持长宽比

范例

android:scaleType 设置缩放类型

范例

圆形的 ImageView


Android ImageView 图像视图

Android 中,ImageView(图像视图)是用于显示图像或者其他图形的一个常用组件。它是 Android 中的一个视图控件(View),可以在布局文件中通过 XML 或者在代码中动态创建。

ImageView 的基本使用

1、在xml里设置图像

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <ImageView
  7. android:id="@+id/imgages1"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:src="@drawable/meimei"/>
  11. </LinearLayout>

2、在Java代码里设置图像

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <ImageView
  7. android:id="@+id/imageView"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content" />
  10. </LinearLayout>
  1. package com.example.myapplication;
  2. import android.os.Bundle;
  3. import android.widget.ImageView;
  4. import androidx.appcompat.app.AppCompatActivity;
  5. public class MainActivity extends AppCompatActivity {
  6. @Override
  7. protected void onCreate(Bundle savedInstanceState) {
  8. super.onCreate(savedInstanceState);
  9. setContentView(R.layout.activity_main);
  10. ImageView imageView = findViewById(R.id.imageView);
  11. imageView.setImageResource(R.drawable.meimei);
  12. }
  13. }

src属性和background属性的区别

  • android:src:用于设置 ImageView 显示的图像资源。当使用 android:src 属性填入图片时,图像会按照原始大小显示,不会进行拉伸,而是直接填充到 ImageView 中。这意味着如果图像比 ImageView 尺寸大,则可能会被裁剪显示部分。
  • android:background:用于设置视图的背景,不仅限于 ImageView,其他视图也可以使用这个属性。当使用 android:background 属性填入图片时,图片会根据 ImageView 的给定宽度进行拉伸或缩放以适应整个视图的背景。这意味着图片会根据 ImageView 的尺寸进行适应,可能会发生拉伸或压缩以填满整个 ImageView。

因此,可以根据需要选择适合的属性来设置图片。如果想要直接显示图像资源并保持其原始大小,可以使用 android:src;如果想要根据 ImageView 的尺寸来拉伸或缩放图像以适应整个视图,可以使用 android:background。

范例

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical">
  7. <!-- 使用 android:src 属性设置图像,不会拉伸 -->
  8. <ImageView
  9. android:layout_width="200dp"
  10. android:layout_height="200dp"
  11. android:src="@drawable/meimei"
  12. android:scaleType="centerCrop"
  13. android:layout_gravity="center_horizontal"
  14. android:layout_marginTop="16dp" />
  15. <!-- 使用 android:background 属性设置图像,会根据 ImageView 尺寸拉伸 -->
  16. <ImageView
  17. android:layout_width="200dp"
  18. android:layout_height="200dp"
  19. android:background="@drawable/meimei"
  20. android:scaleType="centerCrop"
  21. android:layout_gravity="center_horizontal"
  22. android:layout_marginTop="16dp" />
  23. </LinearLayout>

在这个示例中,有两个 ImageView,它们都设置了相同的尺寸、图像和 scaleType 属性。一个使用了 android:src 属性,另一个使用了 android:background 属性。当运行应用时,会看到以下区别:

  • 第一个 ImageView 使用 android:src 属性设置了图像,图像会按照原始大小显示在 ImageView 中,不会进行拉伸。
  • 第二个 ImageView 使用 android:background 属性设置了图像,图像会根据 ImageView 的尺寸进行拉伸或缩放以适应整个视图。

解决 anndroid:blackground 属性拉伸导致图片变形的方法

对于通过 android:background 属性设置背景图片导致变形的问题,可以有两种方式来解决这个问题:

1、动态设置 ImageView 大小:如果 ImageView 是通过 Java 代码动态加载的,你可以在加载图片后重新设置 ImageView 的大小,使其与图片匹配。这样可以确保背景图片不会被拉伸变形。

示例代码如下:

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="horizontal">
  7. <ImageView
  8. android:layout_width="200dp"
  9. android:layout_height="200dp"
  10. android:background="@drawable/meimei"
  11. android:scaleType="centerCrop"
  12. android:layout_gravity="center_horizontal"
  13. android:layout_marginTop="16dp" />
  14. <ImageView
  15. android:id="@+id/imageView"
  16. android:layout_width="200dp"
  17. android:layout_height="200dp"
  18. android:background="@drawable/meimei"
  19. android:scaleType="centerCrop"
  20. android:layout_gravity="center_horizontal"
  21. android:layout_marginTop="16dp" />
  22. </LinearLayout>
  1. package com.example.myapplication;
  2. import android.graphics.Bitmap;
  3. import android.graphics.BitmapFactory;
  4. import android.graphics.drawable.BitmapDrawable;
  5. import android.os.Bundle;
  6. import android.widget.ImageView;
  7. import android.widget.LinearLayout;
  8. import androidx.appcompat.app.AppCompatActivity;
  9. public class MainActivity extends AppCompatActivity {
  10. @Override
  11. protected void onCreate(Bundle savedInstanceState) {
  12. super.onCreate(savedInstanceState);
  13. setContentView(R.layout.activity_main);
  14. ImageView imageView = findViewById(R.id.imageView);
  15. Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.meimei);
  16. int width = bitmap.getWidth();
  17. int height = bitmap.getHeight();
  18. imageView.setLayoutParams(new LinearLayout.LayoutParams(width, height));
  19. imageView.setBackgroundDrawable(new BitmapDrawable(getResources(), bitmap));
  20. }
  21. }

运行 示例代码 效果如下

2、使用 Bitmap 资源文件:如果是通过 XML 布局引入的 ImageView,可以先将图片转换为 Bitmap 资源文件,然后将该文件设置为 ImageView 的背景。这样背景图片就不会被拉伸变形。

示例代码如下:

首先,在 res/drawable 目录下创建一个 Bitmap 资源文件(例如 background_image.xml),内容如下:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <bitmap xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:src="@drawable/meimei"
  4. android:gravity="center" />

然后,在 XML 布局文件中将这个 Bitmap 资源文件设置为 ImageView 的背景:

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="horizontal">
  7. <ImageView
  8. android:layout_width="200dp"
  9. android:layout_height="200dp"
  10. android:background="@drawable/meimei"
  11. android:scaleType="centerCrop"
  12. android:layout_gravity="center_horizontal"
  13. android:layout_marginTop="16dp" />
  14. <ImageView
  15. android:id="@+id/imageView"
  16. android:layout_width="200dp"
  17. android:layout_height="200dp"
  18. android:background="@drawable/background_image"
  19. android:scaleType="centerCrop"
  20. android:layout_gravity="center_horizontal"
  21. android:layout_marginTop="16dp" />
  22. </LinearLayout>

运行 示例代码 效果如下

设置透明度的问题

在 Android 中,android:alpha 属性用于设置视图(包括 ImageView)的透明度。它指定视图及其内容的不透明度级别,值范围在 0(完全透明)到 1(完全不透明)之间。

当 android:alpha 属性被应用于 ImageView 时,它会影响整个 ImageView 包括其内容的透明度。这意味着,无论是 ImageView 的图像资源(通过 android:src 设置)还是背景(通过 android:background 设置),都会受到 android:alpha 的影响。

需要注意的是,android:alpha 只对 ImageView 的图像资源有效,如果只使用 android:background 而不使用 android:src,android:alpha 将不会起作用。如果需要同时设置透明度以及背景,可以考虑使用其他方式,例如设置透明的背景图片。

范例

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="horizontal">
  7. <ImageView
  8. android:layout_width="200dp"
  9. android:layout_height="200dp"
  10. android:src="@drawable/background_image"
  11. android:alpha="0.5"
  12. android:scaleType="centerCrop"
  13. android:layout_gravity="center_horizontal"
  14. android:layout_marginTop="16dp" />
  15. <ImageView
  16. android:id="@+id/imageView"
  17. android:layout_width="200dp"
  18. android:layout_height="200dp"
  19. android:background="@drawable/background_image"
  20. android:alpha="0.5"
  21. android:scaleType="centerCrop"
  22. android:layout_gravity="center_horizontal"
  23. android:layout_marginTop="16dp" />
  24. </LinearLayout>

运行效果如下:

android:src 和 android:background 结合

范例

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="horizontal">
  7. <!-- 背景图像视图-->
  8. <ImageView
  9. android:id="@+id/background_image"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:src="@drawable/background_image"
  13. android:scaleType="centerCrop" />
  14. <!-- 前景图像视图-->
  15. <ImageView
  16. android:id="@+id/foreground_image"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:src="@drawable/background_image"
  20. android:background="#9f44d3"
  21. android:scaleType="fitCenter"
  22. android:layout_centerInParent="true" />
  23. </LinearLayout>

运行效果如下:

Java 代码中设置 blackground 和 src 属性

当需要在 Java 代码中设置 ImageView 的 android:src 和 android:background 属性时,可以使用对应的方法来实现。

1、在 Java 代码中设置 android:src 属性,可以使用 setImageResource() 方法,将资源 ID 分配给 ImageView。例如:

  1. ImageView imageView = findViewById(R.id.imageView);
  2. imageView.setImageResource(R.drawable.my_image);

在这里,R.drawable.my_image 是想要设置的图像资源的资源 ID。

2、要设置 android:background 属性,可以使用 setBackgroundResource() 方法,并将资源 ID 分配给 ImageView。例如:

  1. ImageView imageView = findViewById(R.id.imageView);
  2. imageView.setBackgroundResource(R.drawable.background_image);

在这里,R.drawable.background_image 是想要设置为背景的图像资源的资源 ID。

请注意,在设置 android:background 属性时,需要确保 ImageView 的 android:src 属性不会影响背景图像的显示。如果同时设置了 android:src 和 android:background,可能需要调整 ImageView 的布局参数或其他属性,以确保它们的显示效果符合预期。

android:adjustViewBounds 设置缩放是否保持长宽比

在 Android 中,android:adjustViewBounds 属性用于设置当 ImageView 进行缩放时是否保持原始图像的长宽比。但是,这个属性单独设置时并不会起作用,需要配合 android:maxWidth 和 android:maxHeight 属性一起使用,并且这两个属性也需要 android:adjustViewBounds 设置为 true 才会生效。

这三个属性之间存在着一种共生关系,它们的作用如下:

  • android:adjustViewBounds:设置为 true 时,ImageView 在缩放图像时将尝试保持原始图像的长宽比。如果设置为 false,则图像可能被拉伸或压缩以填充 ImageView。
  • android:maxWidth 和 android:maxHeight:分别用于设置 ImageView 的最大宽度和最大高度。当设置了这两个属性,并且 android:adjustViewBounds 被设置为 true 时,ImageView 将根据最大宽度和最大高度来缩放图像,以保持图像的长宽比,并且不会超过这些限制。

这种共生关系确保了在 ImageView 进行缩放时,可以同时控制图像的长宽比和最大尺寸,从而实现更加灵活和符合设计需求的显示效果。

范例

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="horizontal">
  7. <!--示例1: 不设置属性-->
  8. <ImageView
  9. android:id="@+id/imageView"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:src="@drawable/background_image"
  13. android:adjustViewBounds="false"
  14. />
  15. <!--示例2: 设置三个属性-->
  16. <ImageView
  17. android:id="@+id/imageView1"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:src="@drawable/background_image"
  21. android:adjustViewBounds="true"
  22. android:maxWidth="200dp"
  23. android:maxHeight="200dp"
  24. />
  25. </LinearLayout>

运行效果如下

通过这两个示例,我们可以清楚地看到设置这三个属性和不设置这三个属性之间的差别。在第一个示例中,图像可能会因为不保持长宽比而变形。而在第二个示例中,由于设置了这三个属性,图像会尽可能地保持长宽比,并且不会超过指定的最大尺寸。

android:scaleType 设置缩放类型

android:scaleType 属性用于设置 ImageView 显示的图片如何缩放或者移动以适应 ImageView 的大小。

在 Java 代码中,可以使用 imageView.setScaleType(ImageView.ScaleType) 方法来设置。

以下是 android:scaleType 属性的可选值及其说明:

  • fitXY:对图像的横向与纵向进行独立缩放,使得该图片完全适应 ImageView,但是图片的横纵比可能会发生改变。
  • fitStart:保持纵横比缩放图片,知道较长的边与 ImageView 的边相等,缩放完成后将图片放在 ImageView 的左上角。
  • fitCenter:同上,缩放后放于中间。
  • fitEnd:同上,缩放后放于右下角。
  • center:保持原图的大小,显示在 ImageView 的中心。当原图的大小大于 ImageView 的大小时,超过部分进行裁剪处理。
  • centerCrop:保持横纵比缩放图片,知道完全覆盖 ImageView,可能会出现图片的显示不完全。
  • centerInside:保持横纵比缩放图片,直到 ImageView 能够完全地显示图片。
  • matrix:默认值,不改变原图的大小,从 ImageView 的左上角开始绘制原图,原图超过 ImageView 的部分作裁剪处理。

范例

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ScrollView
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <LinearLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"
  9. android:orientation="vertical"
  10. android:padding="16dp">
  11. <!-- ImageView 示例 -->
  12. <ImageView
  13. android:layout_width="200dp"
  14. android:layout_height="200dp"
  15. android:src="@drawable/background_image"
  16. android:contentDescription="Sample Image"
  17. android:background="@android:color/darker_gray"
  18. android:layout_marginBottom="16dp"/>
  19. <!-- 不同 scaleType 的 ImageView 示例 -->
  20. <!-- fitXY -->
  21. <ImageView
  22. android:layout_width="200dp"
  23. android:layout_height="200dp"
  24. android:src="@drawable/background_image"
  25. android:contentDescription="fitXY"
  26. android:scaleType="fitXY"
  27. android:background="@android:color/darker_gray"
  28. android:layout_marginBottom="16dp"/>
  29. <!-- fitStart -->
  30. <ImageView
  31. android:layout_width="200dp"
  32. android:layout_height="200dp"
  33. android:src="@drawable/background_image"
  34. android:contentDescription="fitStart"
  35. android:scaleType="fitStart"
  36. android:background="@android:color/darker_gray"
  37. android:layout_marginBottom="16dp"/>
  38. <!-- fitCenter -->
  39. <ImageView
  40. android:layout_width="200dp"
  41. android:layout_height="200dp"
  42. android:src="@drawable/background_image"
  43. android:contentDescription="fitCenter"
  44. android:scaleType="fitCenter"
  45. android:background="@android:color/darker_gray"
  46. android:layout_marginBottom="16dp"/>
  47. <!-- fitEnd -->
  48. <ImageView
  49. android:layout_width="200dp"
  50. android:layout_height="200dp"
  51. android:src="@drawable/background_image"
  52. android:contentDescription="fitEnd"
  53. android:scaleType="fitEnd"
  54. android:background="@android:color/darker_gray"
  55. android:layout_marginBottom="16dp"/>
  56. <!-- center -->
  57. <ImageView
  58. android:layout_width="200dp"
  59. android:layout_height="200dp"
  60. android:src="@drawable/background_image"
  61. android:contentDescription="center"
  62. android:scaleType="center"
  63. android:background="@android:color/darker_gray"
  64. android:layout_marginBottom="16dp"/>
  65. <!-- centerCrop -->
  66. <ImageView
  67. android:layout_width="200dp"
  68. android:layout_height="200dp"
  69. android:src="@drawable/background_image"
  70. android:contentDescription="centerCrop"
  71. android:scaleType="centerCrop"
  72. android:background="@android:color/darker_gray"
  73. android:layout_marginBottom="16dp"/>
  74. <!-- centerInside -->
  75. <ImageView
  76. android:layout_width="200dp"
  77. android:layout_height="200dp"
  78. android:src="@drawable/background_image"
  79. android:contentDescription="centerInside"
  80. android:scaleType="centerInside"
  81. android:background="@android:color/darker_gray"
  82. android:layout_marginBottom="16dp"/>
  83. <!-- matrix -->
  84. <ImageView
  85. android:layout_width="200dp"
  86. android:layout_height="200dp"
  87. android:src="@drawable/background_image"
  88. android:contentDescription="matrix"
  89. android:scaleType="matrix"
  90. android:background="@android:color/darker_gray"
  91. android:layout_marginBottom="16dp"/>
  92. </LinearLayout>
  93. </ScrollView>

圆形的 ImageView

这里就简单的写个圆形的ImageView,当然这只是一个示例,在不考虑性能与抗锯齿的情况下。如果要用在项目中,可以看 GitHub 上的相关开源实现

  1. RoundedImageView
  2. CircleImageView

要创建一个圆形的 ImageView,可以使用一个自定义的 Drawable 来实现。

下面是一种方法,可以使用一个圆形的 ShapeDrawable 作为 ImageView 的背景,并在其上放置想要显示的图像。

1、首先,在 res/drawable 目录下创建一个 XML 文件(例如 circle_bg.xml),用来定义圆形的背景:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <shape xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:shape="oval">
  4. <solid android:color="@android:color/transparent"/>
  5. <stroke
  6. android:width="2dp"
  7. android:color="#9f44d3"/>
  8. </shape>

这个 XML 定义了一个椭圆形的形状,具有紫色边框,并且背景色是透明的。

2、然后,在布局文件中,将这个圆形的背景设置为 ImageView 的背景,并设置想要显示的图像作为 ImageView 的 src:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="horizontal"
  7. android:gravity="center">
  8. <ImageView
  9. android:id="@+id/circularImageView"
  10. android:layout_width="150dp"
  11. android:layout_height="150dp"
  12. android:scaleType="centerCrop"
  13. android:src="@drawable/background_image"
  14. android:background="@drawable/circle_bg"/>
  15. </LinearLayout>

这样,就创建了一个圆形的 ImageView,图像将填充圆形区域,并且具有紫色的边框。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/89126
推荐阅读
相关标签
  

闽ICP备14008679号