Rupert

::Me(C#,VC,MonoTouch,MonoforAndroid);

导航

android 图片全屏

Posted on 2014-03-19 11:29  ArRan  阅读(176)  评论(0编辑  收藏  举报

方式一:

 

在xml的布局文件的根元素设置属性background

 

方式二:

 

<ImageView 
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:scaleType="fitXY"
        android:src="@drawable/img" />