49 lines
1.6 KiB
XML
49 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content">
|
|
<ImageView
|
|
id="@+id/sharing_image"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"
|
|
adjustViewBounds="true"/>
|
|
<LinearLayout
|
|
gravity="center"
|
|
orientation="vertical"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"
|
|
layout_alignBottom="@+id/sharing_image"
|
|
layout_alignParentTop="true"
|
|
paddingStart="16dp"
|
|
paddingEnd="16dp">
|
|
<RelativeLayout
|
|
background="@drawable/shape_circle_white_background"
|
|
layout_width="70dp"
|
|
layout_height="70dp"
|
|
layout_marginBottom="24dp"
|
|
elevation="10dp">
|
|
<ImageView
|
|
id="@+id/sharing_logo"
|
|
layout_width="match_parent"
|
|
layout_height="match_parent"
|
|
layout_centerInParent="true"/>
|
|
</RelativeLayout>
|
|
<TextView
|
|
gravity="center_horizontal"
|
|
id="@+id/sub_text"
|
|
layout_width="wrap_content"
|
|
layout_height="wrap_content"
|
|
layout_marginBottom="16dp"
|
|
text="@string/favorite_is_empty"
|
|
textAllCaps="true"
|
|
style="@style/2132017897"/>
|
|
<TextView
|
|
gravity="center_horizontal"
|
|
id="@+id/title_text"
|
|
layout_width="wrap_content"
|
|
layout_height="wrap_content"
|
|
text="@string/favorite_is_empty"
|
|
style="@style/2132017905"/>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|