<?xml version="1.0" encoding="utf-8"?>
|
<android.support.constraint.ConstraintLayout 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:layout_gravity="center">
|
|
<ImageView
|
android:id="@+id/font_image_view"
|
android:layout_width="14dp"
|
android:layout_height="14dp"
|
android:src="@drawable/toast_normal_bg"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintTop_toTopOf="parent" />
|
|
<TextView
|
android:id="@+id/font_text_view"
|
style="@style/GlassText.Normal"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="5dp"
|
android:text="Custom Dialog Content"
|
android:textAllCaps="false"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintLeft_toRightOf="@id/font_image_view"
|
app:layout_constraintTop_toTopOf="parent" />
|
|
</android.support.constraint.ConstraintLayout>
|