0

我有一个不想缩放的图像,我正在使用 fitStart。我需要多大尺寸才能确保它覆盖 4x2 小部件?我目前有一个 1024x768 的图像,它没有覆盖。

更新:这是 xml 和屏幕截图:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/widget_bg_rl"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <ImageView
        android:id="@+id/widget_bg"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="fitStart" />

    <LinearLayout 
        android:id="@+id/current_layout"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:focusable="true"
        android:weightSum="8">
        <RelativeLayout
            android:id="@+id/city_time_rl"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="2.5"
            android:background="@drawable/rounded_corners_top">
            <TextView
                android:id="@+id/city" 
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:text="MECHANICSBURG"
                android:textSize="16dp"
                android:textColor="@color/dk_blue"
                />

在此处输入图像描述

4

1 回答 1

0

您正在使用fitStart,它保持图像纵横比,并确保一个维度(在本例中为高度)完全适合。听起来您想要以下两者之一:

  • 如果要填充空间,显示整个图像(并根据需要进行拉伸),请使用fitXY.

  • 如果要填充空间,保持图像的纵横比(并根据需要进行裁剪),请使用centerCrop.

于 2012-06-13T22:31:59.190 回答