捕获布局并将其保存为图像

yeotifhr  于 2021-07-12  发布在  Java
关注(0)|答案(1)|浏览(387)

我有下面的代码,我想当我点击按钮时,“@+id/layout\u capture”将被捕获并保存为一个图像。到指定名称的库中。我试过这个,但我的代码不起作用

<?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>

这是屏幕内容

在被抓获之后

谢谢你的时间❤

7hiiyaii

7hiiyaii1#

我复制了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;
    }
}

它会将图像保存到您的图库中。

相关问题