Microsoft Windows Phone 8.1 support ends (13 Jul 2017)

Microsoft has ended support for Windows Phone 8.1

Planned SDK features

How to hide "button" search, Outlines, Print

More
9 years 1 month ago - 9 years 1 month ago #11939 by [email protected]
I use this code to open pdf on Android. -How to hide "button" search, Outlines, Print

Intent intent = new Intent(getActivity(), com.radaee.reader.PDFViewAct.class);
intent.putExtra("PDFPath", file.toString());
intent.putExtra("PDFPswd", "");
startActivity(intent);

Last edit: 9 years 1 month ago by [email protected].
More
9 years 1 month ago #11940 by Davide
Hi,
you can hide them programmatically in PDFViewController doing something like that :
Code:
btn_view.setVisibility(View.GONE); btn_find.setVisibility(View.GONE); btn_outline.setVisibility(View.GONE); btn_print.setVisibility(View.GONE); btn_annot.setVisibility(View.GONE); btn_select.setVisibility(View.GONE); btn_undo.setVisibility(View.GONE); btn_redo.setVisibility(View.GONE);

Or hide them directly in the bar_cmd.xml.
Time to create page: 0.392 seconds
Powered by Kunena Forum