Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android編程入門 >> Anfroid 在界面中顯示圖片 ImageView

Anfroid 在界面中顯示圖片 ImageView

編輯:Android編程入門

ImageView
1.什麼是ImageView
是顯示圖片的一個控件
2.ImageView屬性
android:src ImageView的內容顏色 
android:background ImageView背景圖片
android:color ImageView的RGB顏色


項目裡我新建了一個Icon,名為ic_lena。
這個項目用於演示ImageView的src屬性和bakground的區別。
src和background屬性可以同時存在。

ImageView部分的代碼片段:

<ImageView
        android:id="@+id/imageView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_lena" 
        android:background="#00FFFF"
        />
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:orientation="vertical"
    >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_lena" 
        android:background="#00FFFF"
        />
    
    <ImageView
        android:id="@+id/imageView2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/ic_lena" />
    
    <ImageView
        android:id="@+id/imageView3"
        android:layout_width="match_parent"
        android:layout_height="30dp"
        android:background="#00FFFF" />

    <ImageView
        android:id="@+id/imageView3"
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:background="@drawable/ic_lena" />
    
</LinearLayout>
fragment_main.xml

不同分辨率下圖片的顯示:

ic_lena圖片:

效果:

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved