Created
April 3, 2019 14:27
-
-
Save jobinjj/947b77c0b013d101c975caa6e2f11346 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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