gpt4 book ai didi

java - Android Studio - 模糊的背景图片

转载 作者:搜寻专家 更新时间:2023-11-01 09:46:21 24 4
gpt4 key购买 nike

我正在尝试为我的应用制作启动页面。但由于某种原因,我用作 android:background 的图像变得模糊且呈灰色。有办法避免这种情况吗?

我使用的图像是 .png 图像,位于文件夹 drawable

enter image description here

这是我得到的结果

enter image description here

这是我在 activity_splash.xml 文件内的 layout 文件夹中找到的内容

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/logo_addata"
android:orientation="vertical">
</LinearLayout>

这就是连接到 activity_splash.xmlsplash.java 文件中的内容

package com.example.eglu.test;

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

import com.example.eglu.test.Websocket.init;

public class Splash extends AppCompatActivity {

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

init.connect();

Thread timerThread = new Thread(){
public void run(){
try{
sleep(3000);
} catch (InterruptedException e){
e.printStackTrace();
} finally {
Intent intent = new Intent(Splash.this, MainActivity.class);
startActivity(intent);
}
}
};
timerThread.start();
}

@Override
protected void onPause(){
super.onPause();
finish();
}
}

最佳答案

尝试把你的图像放在 drawable-nodpi 文件夹中

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

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