1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 xmlns:tools="http://schemas.android.com/tools" 5 android:layout_width="match_parent" 6 android:layout_height="wrap_content" 7 android:layout_gravity="top" 8 android:gravity="top" 9 android:orientation="vertical" 10 tools:context="host.exp.exponent.experience.ErrorActivity"> 11 12 <LinearLayout 13 android:layout_width="match_parent" 14 android:layout_height="wrap_content" 15 android:layout_below="@+id/console_editText" 16 android:layout_centerHorizontal="true" 17 android:layout_marginLeft="40dp" 18 android:layout_marginRight="40dp" 19 android:layout_marginTop="10dp" 20 android:layout_marginBottom="10dp" 21 android:weightSum="2" 22 android:gravity="center_horizontal" 23 android:orientation="horizontal"> 24 25 <host.exp.exponent.views.ExponentImageButton 26 android:id="@+id/console_home_button" 27 android:layout_width="wrap_content" 28 android:layout_height="wrap_content" 29 android:layout_weight="1" 30 android:background="@android:color/transparent" 31 android:src="@drawable/ic_home_white_36dp" 32 android:textColor="@color/colorPrimaryDark" 33 android:textSize="15sp"/> 34 35 <host.exp.exponent.views.ExponentImageButton 36 android:id="@+id/console_reload_button" 37 android:layout_width="wrap_content" 38 android:layout_height="wrap_content" 39 android:layout_weight="1" 40 android:background="@android:color/transparent" 41 android:src="@drawable/ic_refresh_white_36dp" 42 android:textColor="@color/colorPrimaryDark" 43 android:textSize="15sp"/> 44 </LinearLayout> 45 46 <ListView 47 android:id="@+id/list_view" 48 android:layout_width="match_parent" 49 android:layout_height="match_parent" 50 android:paddingBottom="10dp" 51 android:paddingLeft="10dp" 52 android:paddingRight="10dp" 53 android:background="@color/white" /> 54 55 56</LinearLayout> 57