提问人:takis Paras 提问时间:11/6/2023 更新时间:11/7/2023 访问量:28
我的应用程序的背景图片没有显示在其他手机中,只显示在我的手机中
Background picture of my app is not showing in other phones only in my phone
问:
您好,我收到了以下代码:
<androidx.constraintlayout.widget.ConstraintLayout
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"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/test6"
tools:context=".LoginActivity">
表示带有背景图片的登录屏幕。当我执行命令时
./gradlew assembleDebug
要获取apk,我将其上传到云服务器,当我从手机下载时,会显示背景图片。问题是,其他所有下载相同apk的手机,背景图片不仅显示白色默认背景。知道为什么会这样吗?
答:
0赞
Gökdeniz
11/7/2023
#1
可能是关于您的背景图像的问题。您应该使用 1080x1920 或类似的东西压缩图像。如果图像质量非常高,则某些设备无法使用该图像。
评论