gpt4 book ai didi

android - 将 FrameLayout 转换为位图

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:06:33 44 4
gpt4 key购买 nike

我有一个包含一些 ImageView 和一个 EditText 的 FrameLayout。我将此布局保存为内存(外部)中的图像。第一次在 imageviews 中设置图像时一切正常,即正在保存确切的图像(与在屏幕上显示相同)但是在第一次保存后如果我更改任何东西(文本、图像)它在屏幕上正确显示但在保存image 它显示较早的图像(第一张图像)。

布局的 XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<FrameLayout
android:id="@+id/imageWithoutFrame"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_centerInParent="true" >

<ImageView
android:id="@+id/withoutFrame_background"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/background" />

<ImageView
android:id="@+id/withoutFrame_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:adjustViewBounds="true"
android:layout_gravity="center" />

<EditText
android:id="@+id/withoutFrame_editableText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|bottom"
android:layout_marginBottom="30dip"
android:hint="Write here"
android:maxLength="60" />

</FrameLayout>
</RelativeLayout>

在位图中改变它的代码是:

Bitmap bm = null;
FrameLayout savedImage = null;
savedImage = (FrameLayout)findViewById(R.id.imageWithoutFrame);
savedImage.setDrawingCacheEnabled(true);
savedImage.buildDrawingCache();
bm = savedImage.getDrawingCache();

我用这个 bm 来保存。

感谢您的帮助。

最佳答案

为了解决这个问题,我在保存图像后销毁了绘图缓存。

savedImage.destroyDrawingCache();

关于android - 将 FrameLayout 转换为位图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10534247/

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