Подтвердить что ты не робот

Изображение на экране Android для заполнения экрана

Как получить мой относительный макет, чтобы отобразить мое изображение таким образом:

enter image description here

Вместо этого?:

enter image description here

Я хочу, чтобы мой макет отображал как можно больше изображения и обрезал внешний вид изображения, например, когда вы устанавливаете фоновое изображение рабочего стола на "Заполнить" в окнах:

enter image description here

Мой xml-формат:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" android:fitsSystemWindows="true" android:alwaysDrawnWithCache="false">

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true" android:src="@drawable/background_race_light"/>

    <LinearLayout
        android:id="@+id/linearLayout1"
        style="@style/SessionResumeBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/home_resumeSessionBar_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="Medium Text"
            android:textAppearance="?android:attr/textAppearanceMedium" />

        <Button
            android:id="@+id/home_resumeSessionBar_buttonResume"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Resume" />
    </LinearLayout>





</RelativeLayout>
4b9b3361

Ответ 2

Установите параметры макета ImageView на match_parent и установите тип шкалы на соответствующий тип шкалы, который соответствует вашим потребностям:

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentLeft="true"
    android:scaleType="centerCrop"
    android:layout_alignParentTop="true" android:src="@drawable/background_race_light"/>

Ответ 3

Установите scalexy = true в ImageView