Back to project page tpblogr.
The source code is released under:
MIT License
If you think the Android project tpblogr listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package blogr.vpm.fr.blogr.publish; //from w w w.j av a 2s . c o m import android.content.Context; import android.content.Intent; /** * Created by vincent on 29/08/14. */ public class TPPostPublisher extends StdEmailPostPublisher { public TPPostPublisher(Context context) { super(context); setFormatter(new IdentityFormatter()); } @Override protected void putEmailContent(Intent intent, String content) { intent.putExtra(Intent.EXTRA_TEXT, content); } }