19 lines
633 B
XML
19 lines
633 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:gravity="center"
|
|
android:background="@drawable/snackbar_background_la">
|
|
|
|
<TextView
|
|
android:id="@+id/text_message"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="16sp"
|
|
android:layout_margin="8dp"
|
|
android:text="Snackbar Text" />
|
|
|
|
</LinearLayout>
|