gpt4 book ai didi

android - 转换为位图时未呈现 CardView 阴影

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:53:32 26 4
gpt4 key购买 nike

问题

我正在尝试将 View 组(其中有一个 CardView 作为其子项之一)保存为 PNG 文件。为了实现这一目标,

  1. 我扩充 View 组并使用所需信息填充 View
  2. 通过 Glide 将图像加载到 ImageView
  3. ViewTreeObserver.OnGlobalLayoutListener 添加到 ImageView 的 ViewTreeObserver 并将要共享的整个(父) View 传递给转换 View 的方法 ImageView 的底部大于零( ImageView 的高度属性设置为 wrap_content,因此在加载图像之前其底部将为零)到位图。

通过这样做,我能够将 View 转换为位图,但是,有一点需要注意:CardView 的显示不会呈现在位图上。

失败的尝试

到目前为止我已经尝试过:

  1. layerType 属性从“软件”切换为“硬件”。
  2. 打开和关闭 CardViewcardUseCompatPadding 属性。
  3. 尝试在不使用 Glide 的情况下设置可绘制图像。
  4. 尝试过完全不加载可绘制图像。

代码

以下代码 fragment 可能会帮助你们找出问题所在:

用于将 View 转换为位图的方法

public static Bitmap getBitmapFromView(View view) {
//Define a bitmap with the same size as the view
Bitmap b = Bitmap.createBitmap(view.getWidth(), view.getHeight(), Bitmap.Config.ARGB_8888);
//Bind a canvas to it
Canvas canvas = new Canvas(b);
//Get the view's background
Drawable bgDrawable = view.getBackground();
if (bgDrawable != null)
//has background drawable, then draw it on the canvas
bgDrawable.draw(canvas);
else
//does not have background drawable, then draw white background on the canvas
canvas.drawColor(Color.WHITE);
// draw the view on the canvas
view.draw(canvas);
//return the bitmap
return b;
}

正在膨胀并传递给上面的 getBitmapFromView() 的 View 的 XML 布局文件。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="16dp">

<com.devspark.robototextview.widget.RobotoTextView
android:id="@+id/title"
style="@style/text_subhead"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:layout_marginBottom="@dimen/lessons_horizontal_margin_narrow"
android:layout_marginLeft="@dimen/lessons_horizontal_margin_narrow"
android:layout_marginRight="@dimen/lessons_horizontal_margin_narrow"
android:layout_marginTop="@dimen/lessons_horizontal_margin_narrow"
android:gravity="left"
app:typeface="roboto_medium" />

<com.devspark.robototextview.widget.RobotoTextView
android:id="@+id/text"
style="@style/text_subhead"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/lessons_horizontal_margin_narrow"
android:layout_marginRight="@dimen/lessons_horizontal_margin_narrow"
android:gravity="left"
android:textColor="@color/text"
app:typeface="roboto_regular" />

<android.support.v7.widget.CardView
android:id="@+id/image_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/lessons_horizontal_margin_narrow"
app:cardCornerRadius="@dimen/lessons_image_card_corner_radius"
app:cardElevation="3dp"
app:cardPreventCornerOverlap="false"
app:cardUseCompatPadding="true">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<com.makeramen.roundedimageview.RoundedImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="@null"
app:riv_corner_radius_top_left="@dimen/lessons_image_card_corner_radius"
app:riv_corner_radius_top_right="@dimen/lessons_image_card_corner_radius" />

<com.devspark.robototextview.widget.RobotoTextView
android:id="@+id/caption"
style="@style/text_caption"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/lessons_image_card_caption_margin"
android:gravity="left"
app:typeface="roboto_condensed_regular" />

</LinearLayout>

</android.support.v7.widget.CardView>

<!-- Some other views that aren't particularly interesting -->

</LinearLayout>

最佳答案

只需将cardview改成view,然后设置

android:background="@android:drawable/dialog_holo_light_frame"

因为你需要自己处理填充

关于android - 转换为位图时未呈现 CardView 阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32931652/

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