Android 引导页图片设配问题

我们为了良好的展示在手机上,面对于不同尺寸屏幕的手机,它们的高宽比是不一样的,所以我们的基本思想就是以宽度为基准,放大图片。可以通过ImageView中的scaleType中的centerCrop属性来对手机简单的设配

布局代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    >

    <ImageView
        android:scaleType="centerCrop"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@mipmap/launcher_bg"
        />
</LinearLayout>

猜你喜欢

转载自blog.csdn.net/h5630/article/details/112666457