【问题标题】:Capture the layout and save it as image捕获布局并将其保存为图像
【发布时间】:2020-08-18 14:11:19
【问题描述】:

我有下面的代码,我想当我点击按钮时,“@+id/layout_capture”将被捕获并保存为图像。到指定名称的画廊. 我已经尝试过this,但不适用于我的代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
tools:context=".MainActivity">



<LinearLayout
    android:id="@+id/layout_capture"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_gravity="center"
    android:gravity="center_horizontal"
    android:background="#AFA4BF"
    android:padding="10dp"
    >

<ImageView
    android:id="@+id/noaman_1"
    android:layout_width="89dp"
    android:layout_height="89dp"
    android:src="@drawable/ic_launcher_foreground"
    android:background="@drawable/ic_launcher_background"

    />
<!-- First Semister Result -->
<TextView
    android:id="@+id/first_semis1"
    android:layout_width="180dp"
    android:layout_height="24dp"
    android:layout_marginTop="20dp"
    android:text="@string/first_semis"
    android:textAppearance="@style/first_semis"
    android:gravity="center_horizontal|top"
    />
<TextView
    android:id="@+id/first_semis2"
    android:layout_width="180dp"
    android:layout_height="24dp"
    android:text="@string/first_semis"
    android:textAppearance="@style/first_semis"
    android:gravity="center_horizontal|top"
    />

</LinearLayout>
  <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/first_semis"
     />

   </LinearLayout>

这是屏幕内容

捕获后的这个

感谢您的宝贵时间❤

【问题讨论】:

  • 您正在捕获正确的视图..您还想要什么?
  • 我不知道如何编程,不知道做这个操作的函数。

标签: java android image bitmap


【解决方案1】:

我已经复制了您的 layout.xml 文件,并简单地将 onClick 操作添加到代码中:

<Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/first_semis"
        android:onClick="capture"
        />

我使用了您链接中的代码,它确实可以正常工作:

这是我的 MainActivity.java 文件:

package com.example.androidlayout;

import androidx.appcompat.app.AppCompatActivity;

import android.content.res.Configuration;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.provider.MediaStore;
import android.view.View;
import android.widget.LinearLayout;

public class MainActivity extends AppCompatActivity {

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

    }
    public void capture(View view){
        Bitmap photo = getBitmapFromView((LinearLayout) findViewById(R.id.layout_capture));
        String savedImageURL = MediaStore.Images.Media.insertImage(
                getContentResolver(),
                photo,
                "your_layout",
                "image"
        );
    }
    public static Bitmap getBitmapFromView(View view) {
        //Define a bitmap with the same size as the view
        Bitmap returnedBitmap = Bitmap.createBitmap(view.getWidth(), view.getHeight(),Bitmap.Config.ARGB_8888);
        //Bind a canvas to it
        Canvas canvas = new Canvas(returnedBitmap);
        //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 returnedBitmap;
    }
}

它将图像保存到您的画廊。

【讨论】:

  • 当我尝试单击智能手机上的按钮 pastebin.com/KVcHvtbt 时出现此错误,但它在模拟器上有效
  • 我已添加到清单 但 sae 错误发生了!
  • 我试图去应用信息并发现存储权限被拒绝。所以我同意它,它现在可以工作了。
猜你喜欢
  • 2013-06-13
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2020-12-14
  • 2014-03-10
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多