我正在創建android應用程序。爲android應用程序創建背景圖像
我的手機是Galays S3
我創建了一個PNG文件,這也是與尺寸W =應用程序的背景:爲680像素 - H:120pdx。
它很適合。但是,當我運行模擬器上的圖像被拉伸,只看到背景圖像的大約50%..
我在用下面的代碼背景圖像稱爲..
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/bg"
android:scaleType="matrix" />
所有drawlble文件夾如hdpi,mdpi,xhdpi,xxhdpi具有相同的respolution和大小相同的文件.. bg.png。大小W:680px - H:120pdx。
所有可能的值?如果你使用背景圖片,你需要一種方法來擴展它......我不是一個Android開發者,但我會做一個有根據的猜測,即「wrap_content」不會這樣做 – Taegost