gpt4 book ai didi

Android背景图片-imageview

转载 作者:行者123 更新时间:2023-12-05 00:21:34 27 4
gpt4 key购买 nike

我有一项 Activity ,我将 imageview 元素设置为将 parent 与我的背景图像之一匹配,尺寸为: 1440x2560 。我需要在全屏上制作这张图片。但是,每当我使用 scaleType="fitXY"放置该图像时,我都会得到以下信息:
enter image description here

XML 布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout 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="match_parent"
android:layout_height="match_parent"
tools:context="com.backgroundApp.SecondActivity">

<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:srcCompat="@drawable/background"
android:scaleType="fitXY"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">


<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView"/>

</LinearLayout>

</android.support.v4.widget.DrawerLayout>

Activity :
package com.backgroundApp;

import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class SecondActivity extends AppCompatActivity {

ActionBar actionBar;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);

actionBar = getSupportActionBar();
actionBar.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#004d40")));
}
}

最佳答案

使用 adjustViewBounds=true 位于 的房产图像查看 标签喜欢

 <ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:srcCompat="@drawable/background"
android:adjustViewBounds="true"
android:scaleType="fitXY"/>

关于Android背景图片-imageview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45279741/

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