Android学习之路四:ImageView

  ImageView(图片视图)是显示图片的控件,但是它也包含了很多属性和功能。

 

  ImageView案例:

  XML代码:

<ImageView
        android:id="@+id/myImg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/tx"
        android:contentDescription="@string/img"/>
    <ImageView
        android:id="@+id/myImg2"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:src="@drawable/tx"
        android:contentDescription="@string/img"/>

 

 

posted @ 2013-02-20 15:20  洒洒  阅读(164)  评论(0编辑  收藏  举报