Skip to content

Instantly share code, notes, and snippets.

@peterpazmandi
Created June 12, 2020 03:59
Show Gist options
  • Save peterpazmandi/345e8071135cc6a1dc41be8b09a1a493 to your computer and use it in GitHub Desktop.
Save peterpazmandi/345e8071135cc6a1dc41be8b09a1a493 to your computer and use it in GitHub Desktop.
<LinearLayout
android:id="@+id/cl_customToastContainer"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="12dp"
android:orientation="horizontal"
android:gravity="center"
android:background="@drawable/shape_roundedcorners">
<ImageView
android:id="@+id/iv_done"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_done_green" />
<TextView
android:id="@+id/tv_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Mission Completed"
android:textColor="@color/green"
android:layout_marginStart="6dp" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment