1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools" 4 android:layout_width="match_parent" 5 android:layout_height="wrap_content" 6 android:layout_gravity="top" 7 android:gravity="top" 8 android:orientation="vertical" 9 tools:context="expo.modules.devlauncher.launcher.errors.DevLauncherErrorActivity"> 10 11 <LinearLayout 12 android:layout_width="match_parent" 13 android:layout_height="wrap_content" 14 android:layout_marginLeft="40dp" 15 android:layout_marginTop="10dp" 16 android:layout_marginRight="40dp" 17 android:layout_marginBottom="10dp" 18 android:gravity="center_horizontal" 19 android:orientation="horizontal" 20 android:weightSum="2"> 21 22 <ImageButton 23 android:id="@+id/console_home_button" 24 android:layout_width="wrap_content" 25 android:layout_height="wrap_content" 26 android:layout_weight="1" 27 android:background="@android:color/transparent" 28 android:src="@drawable/dev_laucher_ic_home_white_36dp" 29 android:textColor="@color/dev_launcher_colorPrimaryDark" 30 android:textSize="15sp" /> 31 32 <ImageButton 33 android:id="@+id/console_reload_button" 34 android:layout_width="wrap_content" 35 android:layout_height="wrap_content" 36 android:layout_weight="1" 37 android:background="@android:color/transparent" 38 android:src="@drawable/dev_launcher_ic_refresh_white_36dp" 39 android:textColor="@color/dev_launcher_colorPrimaryDark" 40 android:textSize="15sp" /> 41 </LinearLayout> 42 43 <ListView 44 android:id="@+id/list_view" 45 android:layout_width="match_parent" 46 android:layout_height="match_parent" 47 android:background="@color/dev_launcher_white" 48 android:paddingLeft="10dp" 49 android:paddingRight="10dp" 50 android:paddingBottom="10dp" /> 51 52 53</LinearLayout> 54