我正在创建一个简单的壁纸应用程序,其中我有一个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) {
}
});
}
}
答案 0 :(得分: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:"));