gpt4 book ai didi

android - 背景图像减慢应用程序

转载 作者:行者123 更新时间:2023-11-29 19:07:01 25 4
gpt4 key购买 nike

目前我正在尝试在 Activity 的顶部设置背景图片。图片规范:

高度:290dp宽度:match_parentScaleType:cropCenter

背景图片存储在@drawables中。图像的大小为 750 x 600 像素。它有 41.3 KB 大。

我的 Activity 的 XML 如下所示:

<RelativeLayout
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"
android:background="#E6E6E6">

<ImageView
android:layout_height="290dp"
android:layout_width="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/background_rocket">

</ImageView>

<ListView
android:id="@+id/list"
android:paddingTop="240dp"
android:clipToPadding="false"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbarStyle="outsideOverlay"
android:divider="@android:color/transparent"
android:listSelector="@android:color/transparent"
android:descendantFocusability="blocksDescendants">

</ListView>

</RelativeLayout>

应用运行结果: enter image description here

这正是我想要的,但速度太慢了(当我在我的 S8 上运行它时)。当我向下滚动时,它卡住了。当我在 Android Studio Emulator 上运行它时,它工作正常(我认为正常情况下有点慢,但比在我的真实手机上要好得多)。

我已经下载了插件:Drawable Importer。

enter image description here

但这并没有帮助。

注意:自定义 ListView Adapter 应该没有问题,因为当我删除 ImageView 时它运行流畅。

最佳答案

添加 ImageView 作为 ListView 的标题。

试试这个。

ListView listView = (ListView) findViewById(R.id.your_listview);
View headerView = LayoutInflater.from(this).inflate(R.layout.your_image,null);
listView.addHeaderView(headerView);

关于android - 背景图像减慢应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46804395/

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