1. 程式人生 > >android背景圖按比例縮放方法

android背景圖按比例縮放方法

直接在你的layout檔案的開頭加一個FrameLayout ,裡面放一個ImageView,因為只有android:src可以設定android:scaleType,android:background是無法設定的,我的程式碼:

<?xml version="1.0" encoding="utf-8"?> 

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent">

<ImageView
android:layout_width="fill_parent" 
            android:layout_height="fill_parent"
android:src="@drawable/main_background_normal_nextchapter"
android:scaleType = "centerCrop"
/>

</FrameLayout>