27 lines
997 B
XML
27 lines
997 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@color/leak_canary_background_color"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<ListView
|
|
android:id="@+id/leak_canary_display_leak_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:divider="@null"
|
|
android:dividerHeight="0dp"
|
|
android:layout_weight="1"/>
|
|
<TextView
|
|
android:textSize="12sp"
|
|
android:id="@+id/leak_canary_display_leak_failure"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"/>
|
|
<Button
|
|
android:id="@+id/leak_canary_action"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|