1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 android:id="@+id/empty_account" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 android:orientation="vertical" 8 android:background="@color/empty_state_background" 9 android:visibility="gone"> 10 11 <ImageView 12 android:id="@+id/empty_account_image" 13 android:layout_width="wrap_content" 14 android:layout_height="wrap_content" 15 android:scaleType="centerInside" 16 android:adjustViewBounds="true" 17 android:src="@drawable/accounts_empty"/> 18 19 <TextView 20 android:id="@+id/empty_account_view_text" 21 android:layout_width="wrap_content" 22 android:layout_height="wrap_content" 23 android:layout_gravity="center_horizontal" 24 android:paddingTop="@dimen/empty_account_view_text_padding_top" 25 android:text="@string/emptyAccount" 26 style="@style/EmptyStateTextStyle"/> 27 28 <Button 29 android:id="@+id/add_contact_button" 30 android:layout_width="wrap_content" 31 android:layout_height="wrap_content" 32 android:layout_gravity="center_horizontal" 33 android:text="@string/menu_addToGroup" 34 style="@style/AddContactsButtonStyle"/> 35</LinearLayout>