Back to project page bumper.
The source code is released under:
MIT License
If you think the Android project bumper 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 com.varwise.bumper; //w w w. ja v a2 s .com import android.app.Activity; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.view.View; public class OffendersStatement extends Activity { public static String baseKey = "OffendersStatement"; protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.offenders_statement); } public void sendEmail(View v) { ScreenDB.setFinishedDate(baseKey, getApplicationContext()); Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("mailto", "", null)); emailIntent.putExtra(Intent.EXTRA_SUBJECT, "Offender's Statement"); String rawFolderPath = "android.resource://" + getPackageName() + "/" + R.raw.oswiadczenie; Uri emailUri = Uri.parse(rawFolderPath ); emailIntent.putExtra(Intent.EXTRA_STREAM, emailUri); startActivity(Intent.createChooser(emailIntent, "Offender's Statement")); } }