Giter Site home page Giter Site logo

Comments (9)

anitaa1990 avatar anitaa1990 commented on July 16, 2024

Hey is there a solution for this? I get an empty screen as well instead of a pdf with data from the recyclerview

from android-pdfmyxml.

teenhava avatar teenhava commented on July 16, 2024

I have done it in another way example inside ScrollView place recyclerView then taking Bitmap of Scrollview according to it height then we can converting in png or pdf

from android-pdfmyxml.

HendrixString avatar HendrixString commented on July 16, 2024

Try the method . setInflateOnMainThread(true)

from android-pdfmyxml.

HendrixString avatar HendrixString commented on July 16, 2024

Also another thought. The main renderer scrolls the view it's rendering. Look at the source and try to disable it. Maybe it is related, try and tell me please

from android-pdfmyxml.

anitaa1990 avatar anitaa1990 commented on July 16, 2024

I am doing the following:

private void downloadPDF() {
        AbstractViewRenderer page = new AbstractViewRenderer(this, R.layout.view_report_pdf) {
            @Override
            protected void initView(View view) {
                View rootView = findViewById(R.id.scroll_view);
                ((ImageView)view.findViewById(R.id.iv_pdf)).setImageBitmap(getBitmapFromView(rootView, rootView.getHeight(), rootView.getWidth()));
            }
        };
        PdfDocument doc = new PdfDocument(this);
        doc.addPage(page);

        doc.setOrientation(PdfDocument.A4_MODE.PORTRAIT);
        doc.setProgressMessage(R.string.download_pdf_desc);
        doc.setProgressTitle(R.string.download_pdf_title);
        doc.setFileName("test");
        doc.setInflateOnMainThread(false);
        doc.setListener(new PdfDocument.Callback() {
            @Override
            public void onComplete(File file) {
                System.out.println("######" + file.getPath());
            }

            @Override
            public void onError(Exception e) {
                e.printStackTrace();
                System.out.println("######" + e.getMessage());
            }
        });

        doc.createPdf(this);
    }



    private Bitmap getBitmapFromView(View view, int height, int width) {
        Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
        Canvas canvas = new Canvas(bitmap);
        Drawable bgDrawable = view.getBackground();
        if (bgDrawable != null)
            bgDrawable.draw(canvas);
        else
            canvas.drawColor(Color.WHITE);
        view.draw(canvas);
        return bitmap;
    }

But I am only getting the visible part of the recyclerView in the pdf. Not sure why. The bitmap that is rendered is perfect!

from android-pdfmyxml.

HendrixString avatar HendrixString commented on July 16, 2024

try setInflateOnMainThread(true).
I see u have it on false

from android-pdfmyxml.

anitaa1990 avatar anitaa1990 commented on July 16, 2024

tried that also. Got the same issue

from android-pdfmyxml.

HendrixString avatar HendrixString commented on July 16, 2024

Weird.

from android-pdfmyxml.

AsadIqbalKhan123 avatar AsadIqbalKhan123 commented on July 16, 2024

tried that also. Got the same issue
that problem slove or not i know its weired to asked late 5 yr but you can help me >?

from android-pdfmyxml.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.