我有一个奇怪的问题,
我有一项活动,在此活动中,我有一个布局,我想制作一个图像,以便在社交网络上分享。 此布局包含不同的动态图像和文本。这就是为什么我不能将它作为静态图像存储并按需分享。我需要在用户触摸共享按钮时生成图像。
问题是我需要在共享之前调整布局,我该做什么?
ImageView profilPic = (ImageView)dashboardView.findViewById(R.id.profilePic);
RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams)profilPic.getLayoutParams();
params.setMargins(10, 62, 0, 0);
profilPic.invalidate();
profilPic.requestLayout();
首先我修改布局的边距,然后我制作一个图像
Bitmap bitmap = null;
try {
bitmap = Bitmap.createBitmap(dashboardView.getWidth(),
dashboardView.getHeight(), Bitmap.Config.ARGB_4444);
dashboardView.draw(new Canvas(bitmap));
} catch (Exception e) {
// Logger.e(e.toString());
}
FileOutputStream fileOutputStream = null;
File path = Environment
.getExternalStorageDirectory();
File file = new File(path, "wayzupDashboard" + ".png");
try {
fileOutputStream = new FileOutputStream(file);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
BufferedOutputStream bos = new BufferedOutputStream(fileOutputStream);
bitmap.compress(CompressFormat.PNG, 100, bos);
try {
bos.flush();
bos.close();
fileOutputStream.flush();
fileOutputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
最后我分享了。
基本上它可以工作,除了它在使用修改后的layoutParams重绘布局之前捕获布局。 我需要捕获此布局一次,并且只有在重新布局布局后考虑新的布局参数时才需要。
如果我删除捕获代码,那么它可以工作,当我触摸分享按钮时,我看到布局正在移动。但是当我有捕获代码时,它只是在修改边距之前捕获布局。
如何在捕获布局之前确保重绘?
答案 0 :(得分:0)
对于记录,只有在设置视图后才能正确捕获布局我需要首先设置视图,然后在延迟线程中捕获布局。这是我发现使其有效的唯一方法。
public void onShareButton() {
dashboardController.setupViewBeforeSharing();
new Timer().schedule(new TimerTask() {
@Override
public void run() {
Bitmap bitmap = null;
try {
bitmap = Bitmap.createBitmap(dashboardView.getWidth(),
dashboardView.getHeight(), Bitmap.Config.ARGB_4444);
dashboardView.draw(new Canvas(bitmap));
} catch (Exception e) {
// Logger.e(e.toString());
}
FileOutputStream fileOutputStream = null;
File path = Environment
.getExternalStorageDirectory();
File file = new File(path, "wayzupDashboard" + ".png");
try {
fileOutputStream = new FileOutputStream(file);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
BufferedOutputStream bos = new BufferedOutputStream(fileOutputStream);
bitmap.compress(CompressFormat.PNG, 100, bos);
try {
bos.flush();
bos.close();
fileOutputStream.flush();
fileOutputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/png");
share.putExtra(Intent.EXTRA_TEXT, R.string.addPassengerButton);
share.putExtra(Intent.EXTRA_STREAM,
Uri.parse("file://" + file.getAbsolutePath()));
startActivity(Intent.createChooser(share, "Share image"));
MainActivity.this.runOnUiThread(new Runnable() {
public void run() {
dashboardController.setupViewAfterSharing();
}
});
}
}, 300);
}
答案 1 :(得分:0)
更简单的方法是在dashboardView
视图上设置布局传递的侦听器。
使用View.addOnLayoutChangeListener()
- addOnLayoutChangeListener设置监听器。
在更改布局参数之前设置侦听器,并在图像保存为持久性后将其删除。
希望它能增加任何改进。