Activity和createpdf函数之间的依赖关系

时间:2014-01-03 19:57:23

标签: java android pdf itext

我想在Android应用中创建som pdf文件 我找到了一个教程,它工作正常,但是...
我在我的Activity中使用自己的函数createPDF() 我的问题是:我如何使用(例如TextView tv1)使用内部createPDF()函数填充段落?

一些示例代码

public class GenPDF extends Activity {

     TextView tv1;

        @Override
        protected void onCreate(Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.genpdf); 
                createPDF();        
        } 

public void createPDF()
        {
             Document doc = new Document();
             Paragraph p1 = new Paragraph(//my text from textview goes here//);
             doc.add(p1);
            }

例如,我如何将一些文本从tv1(这是一个TextView)放到段落p1?

1 个答案:

答案 0 :(得分:2)

像这样简单的东西对你有用。将来,请阅读TextView的文档,因为它很好地描述了如何获取其文本内容。

TextView textView = (TextView) findViewById(R.id.tv1);
String textViewContents = textView.getText();
Paragraph p1 = new Paragraph(textViewContents);
doc.add(p1);