問題已經在這裏問:create PDF of RecyclerView in FULL length 而我也有同樣的問題,因爲我還沒有找到解決方案,我想用全長生成RecyclerView內容的PDF。但沒有找到解決辦法。從RecyclerView完整內容創建PDF?
我已經嘗試了所有可用的解決方案和所有可能的方法來從RecycleView生成PDF。我已經嘗試
解決方案:
https://gist.github.com/PrashamTrivedi/809d2541776c8c141d9a
Take a screenshot of RecyclerView in FULL length
Convert Listview Items into a single Bitmap Image
試過這上面提到的所有解決方案,但它們中的任何不跟我和獲取工作的錯誤,有時寬度&身高問題或某時獲得空白位ap作爲輸出不知道爲什麼。
問題:
我RecyclerView與HTML內容以及在內容的意象。
考慮將以下屏幕顯示爲包含內容的RecyclerView。在RecyclerView具有內容
相同與100+項以上圖像。
RecyclerView項目佈局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:fresco="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/leftImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:adjustViewBounds="true"
android:maxHeight="350dp"
fresco:actualImageScaleType="fitCenter"
fresco:placeholderImage="@color/white" />
<jp.wasabeef.richeditor.RichEditor
android:id="@+id/editor"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/margin10dp"
android:layout_marginRight="@dimen/margin10dp"
android:layout_weight="1"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false" />
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/rightImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:adjustViewBounds="true"
android:maxHeight="350dp"
fresco:actualImageScaleType="fitCenter"
fresco:placeholderImage="@color/white" />
</LinearLayout>
如何產生這種從recyclerview內容的PDF?任何幫助將不勝感激。
謝謝。
生成PDF的samble代碼你試圖當前顯示屏幕保存爲圖片,並追加的所有圖像,使單一的PDF? –
@Divyesh無法工作,因爲它的回收者視圖 - 整個顯示屏不在屏幕上。視圖被回收 –
@Divyesh請正確閱讀問題。 –