0

我正在创建一个简单的壁纸应用程序,其中有一个 image_view 和一个按钮。

image-view 正在显示图像,现在我想要什么:我想在按钮单击时打开带有壁纸应用程序的图像。

当我单击按钮时,它应该显示所有已安装的壁纸应用程序,以便我可以选择其中任何一个

为了更好地理解看截图:当我点击按钮时应该会发生这种情况

在此处输入图像描述 这是我的代码:

package com.example.wallpaper_test;

import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;

public class WallpaperScreenActivity extends ActionBarActivity {

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

        // image resource
        ImageView img = (ImageView) findViewById(R.id.imageView1);
        img.setImageResource(R.drawable.pop);

        // call installed wallpaper app to set wallpaper on button click
        Button b1 = (Button) findViewById(R.id.button1);
        b1.setOnClickListener(new View.OnClickListener() {
            public void onClick(View vx) {

            }
        });

    }
}
4

1 回答 1

0

这个问题已经回答here

    Uri uri = Uri.parse("URI_OF_YOUR_IMAGE");

    Intent intent = new Intent(Intent.ACTION_ATTACH_DATA);
    intent.addCategory(Intent.CATEGORY_DEFAULT);
    intent.setDataAndType(uri, "image/jpeg");
    intent.putExtra("mimeType", "image/jpeg");
    this.startActivity(Intent.createChooser(intent, "Set as:"));
于 2014-07-26T11:34:00.073 回答