21 lines
823 B
XML
21 lines
823 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/leak_canary_toast_background"
|
|
android:padding="16dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@mipmap/leak_canary_icon"/>
|
|
<TextView
|
|
android:textSize="18sp"
|
|
android:textColor="#ffffff"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/leak_canary_toast_heap_dump"/>
|
|
</LinearLayout>
|