欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android 之 ImageView(图片组件)

程序员文章站 2022-05-17 14:38:04
...

ImageView 图片组件:
属性:android:src=""   引用图片资源

测试代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="ImageView 组件测试" />
    <ImageView
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:src="@drawable/ic_launcher"
        />

</LinearLayout>

  • Android 之 ImageView(图片组件)
            
    
    博客分类: Android androidImageView 
  • 大小: 17.7 KB
相关标签: android ImageView