当前位置: 代码迷 >> Android >> 在Android上修复背景图片
  详细解决方案

在Android上修复背景图片

热度:98   发布时间:2023-08-04 12:33:00.0

如何在不拉伸的情况下为所有android设备使用图片背景?

我在Galaxy S3,S4和Tab3上尝试过,但图像变形。 有什么建议吗?

这是代码:

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/background_carrying_view"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/c"
    android:orientation="vertical" >
 </LinearLayout>

谢谢

声明比例类型:

android:scaleType="centerCrop"
  相关解决方案