如何以PDF格式获取我的完整活动

时间:2016-06-17 09:22:41

标签: java android pdf bitmap itextg

首先,我是法国人,我会尽力用英语解释我的问题。

所以,我想用屏幕转换PDF:listeTrouActivity.java

但是正如你所看到的,有滚动视图,孔列可以下到18个孔。

所以我遵循了一些教程:

http://valokafor.com/how-to-convert-android-view-to-pdf/#comment-1018

我开始使用库ITextG

但我的问题是,当我将我的位图转换为PDF时,它会给我一张只有我的屏幕尺寸的PDF。我的活动完全被削减了。

所以我希望你们可以帮助我,我的代码在我的活动中将我的位图转换为PDF,名为ListTrouActivity.java:

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    CoursePdf coursePdf = new CoursePdf();
    int id = item.getItemId();
    if (id == R.id.action_settings) {
        return true;
    }
    if (id == R.id.saveHasPDF) {
        View mRootView = findViewById(R.id.RootView);
        String state = Environment.getExternalStorageState();
        if (!Environment.MEDIA_MOUNTED.equals(state)){
            Toast.makeText(ListTrouActivity.this, "OK", Toast.LENGTH_SHORT).show();
        }

        File pdfDir = new File(DEFAULT_PATH, "MyApp");
        if (!pdfDir.exists()){
            pdfDir.mkdirs();
        }

        LayoutInflater inflater = (LayoutInflater) this.getSystemService(LAYOUT_INFLATER_SERVICE);
        LinearLayout root = (LinearLayout) inflater.inflate(R.layout.liste_trou_activity, null); //RelativeLayout is root view of my UI(xml) file.
        root.setDrawingCacheEnabled(true);
        Bitmap screen = coursePdf.getBitmapFromView2(this.getWindow().findViewById(R.id.RootView));

        // here give id of our root layout (here its my RelativeLayout's id)

        File pdfFile = new File(pdfDir, "myPdfFile.pdf");

        try {
            Rectangle pagesize = new Rectangle(1720f, 3200f);
            Document document = new Document(pagesize, 36f, 72f, 108f, 180f);

            PdfWriter.getInstance(document, new FileOutputStream(pdfFile));
            document.open();
            ByteArrayOutputStream stream = new ByteArrayOutputStream();
            screen.compress(Bitmap.CompressFormat.PNG, 100, stream);
            byte[] byteArray = stream.toByteArray();

            coursePdf.addImage(document,byteArray);
            document.close();
        }
        catch (Exception e){
            e.printStackTrace();
        }

        Intent intent = new Intent(Intent.ACTION_VIEW);
        Uri uri = Uri.fromFile(new File(pdfDir,  "myPdfFile.pdf"));
        intent.setDataAndType(uri, "application/pdf");
        intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
        startActivity(intent);
    }
    return super.onOptionsItemSelected(item);
}

CoursePDF.java中的getBitmapFromView代码:

    public static Bitmap getBitmapFromView2(View view) {
    //Define a bitmap with the same size as the view
    Bitmap returnedBitmap = Bitmap.createBitmap(view.getWidth(), view.getHeight(),Bitmap.Config.ARGB_8888);
    //Bind a canvas to it
    Canvas canvas = new Canvas(returnedBitmap);
    //Get the view's background
    Drawable bgDrawable =view.getBackground();
    if (bgDrawable!=null)
        //has background drawable, then draw it on the canvas
        bgDrawable.draw(canvas);
    else
        //does not have background drawable, then draw white background on the canvas
        canvas.drawColor(Color.WHITE);
    // draw the view on the canvas
    view.draw(canvas);
    //return the bitmap
    return returnedBitmap;
}

我的CoursePDF.java中的addImage代码:

public static void addImage(Document document, byte[] byteArray)
{
    Image image = null;
    try
    {
        image = Image.getInstance(byteArray);
    }
    catch (BadElementException e)
    {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    catch (MalformedURLException e)
    {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    catch (IOException e)
    {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    // image.scaleAbsolute(150f, 150f);
    try
    {
        document.add(image);
    } catch (DocumentException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

不幸的是我不能在这里通过我的liste_trou_activity.xml代码,否则我将达到157,000个字符。

如果你真的需要它,请问我会再试一次。

我希望你们都能理解我的要求,如果没有,请再次问我,我会再次尝试解释。

感谢阅读,希望你们能帮助我。

1 个答案:

答案 0 :(得分:0)

看看我能想到的最好的是拍摄完整的可滚动活动的快照,然后动态编写pdf,其内容为快照。 对于快照更喜欢[拍摄可滚动活动的快照]

然后写动态pdf。你会得到你想要的东西