Skip to content

Instantly share code, notes, and snippets.

@jobinjj
Created April 3, 2019 14:27
Show Gist options
  • Save jobinjj/947b77c0b013d101c975caa6e2f11346 to your computer and use it in GitHub Desktop.
Save jobinjj/947b77c0b013d101c975caa6e2f11346 to your computer and use it in GitHub Desktop.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/custom_toast_container"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp"
android:background="#DAAA"
>
<ImageView android:src="@drawable/ic_launcher_foreground"
android:layout_width="44dp"
android:layout_height="44dp"
android:layout_marginRight="8dp"
/>
<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FFF"
android:layout_marginRight="8dp"
android:text="This is a toast"
android:layout_gravity="center_vertical"
/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment