我正在使用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>
答案 0 :(得分:0)
因此,我解决了一个很奇怪的问题。由于在视图中添加布局会导致计算高度,因此我在创建pdf(带有pdf宽度)的活动中创建了一个 invisible 视图:
<!-- 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的比例。因此不需要任何转换。