gpt4 book ai didi

java - 如何在android中将图像拉伸(stretch)到顶部

转载 作者:行者123 更新时间:2023-12-02 04:30:51 28 4
gpt4 key购买 nike

enter image description here

我正在尝试将图像拉伸(stretch)到布局的顶部。但我无法实现它。如有任何帮助,我们将不胜感激。

我想将此图像移动到顶部。所以顶部和图像之间没有空间。现在顶部有空间。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#fafaf8"
tools:context=".MainActivity"



>


<ImageView
android:id="@+id/titlePic"
android:layout_width="fill_parent"

android:layout_height="40dp"
android:background="@drawable/nebcaplivebanner"

>

</ImageView>

<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:dividerHeight="1dp"
android:divider="#C0C0C0"
/>






</LinearLayout>

最佳答案

尝试使用-

<ImageView
android:id="@+id/titlePic"
android:layout_width="fill_parent"
android:layout_height="40dp"
android:src="@drawable/nebcaplivebanner"
android:scaleType="fitXY"/>

这就是 fitXY 应该做的。如果您不想裁剪图像,可以尝试使用 centerInside;如果您想填充所有空间(并裁剪图像),可以尝试使用 centerCrop

关于java - 如何在android中将图像拉伸(stretch)到顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56585644/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com