PdfDocument - 在布局结束时剪切页面

问题描述 投票:1回答:1

我正在使用Android PdfDocument类创建一个Pdf文件。我正在从XML文件(ConstraintLayout中的LinearLayout)中扩展布局,然后在运行时通过添加带有外部数据的新行来完成。

问题是输出pdf可能很长或很短。我想在充气布局之前避免指定页面高度。但是,在将布局添加到页面之前,我找不到测量布局高度的解决方案

这是实际的代码:

PdfDocument document = new PdfDocument();

//set page width and height
PdfDocument.PageInfo pageInfo = new PdfDocument.PageInfo.Builder(227,992, 1).create();
PdfDocument.Page page = document.startPage(pageInfo);

//inflating the layout
View v = getLayoutInflater().inflate(R.layout.rapportino, null);

//add data to layout
//...

//measure the layout, draw it and finish page
int measureWidth = View.MeasureSpec.makeMeasureSpec(page.getCanvas().getWidth(), View.MeasureSpec.EXACTLY);
int measuredHeight = View.MeasureSpec.makeMeasureSpec(page.getCanvas().getHeight(), View.MeasureSpec.EXACTLY);
v.measure(measureWidth, measuredHeight);
v.layout(0, 0, measureWidth, measuredHeight);
v.draw(page.getCanvas());
document.finishPage(page);

//write to file..

有没有办法根据视图的高度创建PDF?

编辑:这是我正在膨胀的布局

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    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="wrap_content">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:orientation="vertical"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <TextView
            android:id="@+id/rapportino_indirizzo_textview"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:layout_marginBottom="10dp"
            android:gravity="end"
            android:textColor="#000000"
            android:textSize="@dimen/rapportino_global_textsize" />

        <!-- 
            other textview, linearlayout and imageview 
            ..
            ..  
        -->

    </LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
android pdf-generation android-linearlayout
1个回答
0
投票

所以,我解决了一个非常奇怪的解决方案。由于向视图添加布局会导致计算高度,因此我在活动中创建了一个不可见的视图,我在创建pdf(宽度为pdf):

<!-- add this to your activity -->
<LinearLayout
    android:visibility="invisible"
    android:id="@+id/output_pdf_view"
    android:orientation="vertical"
    android:layout_width="226dp"
    android:layout_height="wrap_content" />

然后我将膨胀的布局添加到不可见的视图(在用外部数据填充之后)。使用观察者,您可以在计算时获得高度。

//inflating the layout
View v = getLayoutInflater().inflate(R.layout.rapportino, null);

//add data to layout (rows, images etc.)
//...

//find the invisible view
LinearLayout invisibleOutputPdfView = findViewById(R.id.output_pdf_view);

//add the pdf layout and observe changes
invisibleOutputPdfView.addView(v);
invisibleOutputPdfView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {
            //remove the listener
            invisibleOutputPdfView.getViewTreeObserver().removeOnGlobalLayoutListener(this);

            int height = invisibleOutputPdfView.getHeight();
            createPDF(height, ..);
        }
    });

注意:由于某种原因,似乎在生成pdf时dp和pt之间的比率为1:1。因此不需要转换。

© www.soinside.com 2019 - 2024. All rights reserved.