Microsoft Windows Phone 8.1 support ends (13 Jul 2017)

Microsoft has ended support for Windows Phone 8.1

Questions about Android development and PDF

How to copy the text from pdf and paste?

More
9 years 2 months ago #11701 by rachnasagar
How to copy the text from pdf and paste any where or in notes?

I have tried many times but its not possible to copy from pdf and paste any where ?
More
9 years 2 months ago #11703 by Davide
Hi,
you can select the text by using the 4th button of the pdf toolbar, then in the dialog select "Copy text to clipboard".
In the java code you will get the selected text in OnPDFSelectEnd method of PDFViewAct class, to copy it to clipboard you have to add the following code in that method after the first if( rad_group.getCheckedRadioButtonId() == R.id.rad_copy ) :
Code:
if( rad_group.getCheckedRadioButtonId() == R.id.rad_copy ) { Toast.makeText(PDFViewAct.this, "todo copy text:" + sel_text, Toast.LENGTH_SHORT).show(); android.content.ClipboardManager clipboard = (android.content.ClipboardManager) getSystemService(CLIPBOARD_SERVICE); android.content.ClipData clip = android.content.ClipData.newPlainText("Radaee", sel_text); clipboard.setPrimaryClip(clip); }
Time to create page: 0.385 seconds
Powered by Kunena Forum