23 lines
722 B
XML
23 lines
722 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
gravity="center"
|
||
|
orientation="vertical"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="match_parent">
|
||
|
<ImageView
|
||
|
layout_width="100dp"
|
||
|
layout_height="100dp"
|
||
|
layout_marginBottom="16dp"
|
||
|
src="@drawable/gifticon_empty_msg"/>
|
||
|
<TextView
|
||
|
layout_gravity="center"
|
||
|
id="@+id/gifts_empty_msg_text"
|
||
|
layout_width="wrap_content"
|
||
|
layout_height="wrap_content"
|
||
|
text="@string/gifts_receive_empty_msg"
|
||
|
textAlignment="center"
|
||
|
paddingStart="33dp"
|
||
|
paddingEnd="33dp"
|
||
|
style="@style/2132017836"/>
|
||
|
</LinearLayout>
|