如何在Android中使用gridview内容创建PDF?

时间:2019-05-25 06:05:23

标签: android gridview scroll pdf-generation

我正在尝试使用gridview内容创建pdf文件,并且可以正常工作,但是当我打开文件时,它仅在中心显示可见区域数据第2行和两列?

<HorizontalScrollView
        android:layout_width="match_parent"
        android:layout_height="fill_parent">

    <FrameLayout
        android:layout_width="fill_parent"
        android:layout_height="match_parent">

        <LinearLayout
            android:id="@+id/linearLayout"
            android:layout_width="595pt"
            android:layout_height="842pt"
            android:orientation="horizontal">

            <GridView
                android:id="@+id/gridView"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_margin="4dp"
                android:columnWidth="320dp"
                android:gravity="center"
                android:numColumns="auto_fit"
                android:horizontalSpacing="1dp"
                android:scrollbarAlwaysDrawHorizontalTrack="true"
                android:scrollbarAlwaysDrawVerticalTrack="true"
                android:scrollbars="horizontal"
                android:stretchMode="none"
                android:verticalSpacing="1dp">

            </GridView>


        </LinearLayout>
    </FrameLayout>

    </HorizontalScrollView> 

我希望所有内容都以pdf格式显示。我正在将A4尺寸的pdf尺寸提供给linearlayout。

预期结果

Grid View in activity

创建PDF后获得实际结果

enter image description here

0 个答案:

没有答案