Skip to content

Instantly share code, notes, and snippets.

View choiboi's full-sized avatar

James.C choiboi

View GitHub Profile
if (resultCode == RESULT_OK) {
if (requestCode == CAMERA_NO_FILEPATH) {
// Get the image from intent data.
Bundle bundle = data.getExtras();
// This Bundle object will contain the Bitmap image,
// so no Bitmap decoding will be required.
Bitmap img = (Bitmap) bundle.get("data");
mImage.setImageBitmap(img);
}
}
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/toast_bubble"
android:orientation="vertical" >
<TextView
android:id="@+id/toast_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
// Get the layout you want and set the values inside that layout.
View toastRoot = getLayoutInflater().inflate(R.layout.activity_toast_custom_toast, null);
TextView tvToast = (TextView) toastRoot.findViewById(R.id.toast_textview);
tvToast.setText(TOAST_CUSTOM_BG_MSG);
// Create new Toast object and set the view to the one you want.
Toast toast = new Toast(getApplicationContext());
toast.setView(toastRoot);
toast.show();
/*
* This method gets the image inside the template area and returns that bitmap.
* Process of how this method works:
* 1) Combine img and templateImage together with templateImage being on the top.
* 2) Create a new blank bitmap using the given width and height, which is the
* size of the template on the screen.
* 3) Starting in the center go through the image quadrant by quadrant copying
* the pixel value onto the new blank bitmap.
* 4) Once it hits the pixel colour values of the template lines, then set the pixel
* values from that point on transparent.