string - Passing textView to other apps with text properties -


i calling onclicklistner send textview text other apps..

my code is:

    bshare.setonclicklistener(new view.onclicklistener() {         @override         public void onclick(view v) {             tf = typeface.createfromasset(getassets(),"fonts/custom.ttf");             textview.settypeface(tf);             string strsend = textview.gettext().tostring();             intent sendintent = new intent();             sendintent.setaction(intent.action_send);             sendintent.putextra(intent.extra_text, strsend);             sendintent.settype("text/plain");             startactivity(intent.createchooser(sendintent, strsend));         }     }); 

now share textview not preserve tf help? thank you.


Comments

Popular posts from this blog

How to access named pipes using JavaScript in Firefox add-on? -

multithreading - OPAL (Open Phone Abstraction Library) Transport not terminated when reattaching thread? -

node.js - req param returns an empty array -