如何将图像设置为屏幕设备中的壁纸?

时间:2018-05-20 11:00:50

标签: java android screen android-wallpaper

我想将在应用中查看的图片设置为壁纸。

尝试这样做时,图像不适合我的设备屏幕,但使用centerCrop正确查看。

这是我的应用代码。

activity_main.xml中

    <?xml version="1.0" encoding="utf-8"?>
    <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"
        tools:context=".MainActivity">

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_centerInParent="true"
        android:scaleType="centerCrop"
        app:srcCompat="@drawable/image" />

    <Button
        android:id="@+id/button"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:background="@color/transparent"
        android:text="Set Wallpaper"
        android:textColor="#ffffff" />

    </RelativeLayout>

MainActivity.java

public class MainActivity extends AppCompatActivity {

    Button button;

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

        button = (Button) findViewById(R.id.button);

        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                setWallpaper();
            }
        });

    }

    private void setWallpaper(){
        Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.image);
        WallpaperManager manager = WallpaperManager.getInstance(getApplicationContext());

        try {
            manager.setBitmap(bitmap);
            Toast.makeText(this, "Wallpaper Set", Toast.LENGTH_SHORT).show();
        }
        catch (IOException e){
            Toast.makeText(this, "Error", Toast.LENGTH_SHORT).show();
        }
    }

}

这是App

中使用的图像

Image used for the app

直播应用屏幕

Running App Screen Live View

在Android设备中设置壁纸后

Set wallpaper

如何将图像完美地设置为与XML文件中使用的壁纸(缩放到centerCrop),以便将其设置为任何Android设备的完美贴合壁纸?

1 个答案:

答案 0 :(得分:0)

使用:

android:background="@drawable/image"

而不是:

app:srcCompat="@drawable/image"