41 lines
1.8 KiB
XML
41 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/theme_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<RelativeLayout
|
|
android:id="@+id/xr_no_data"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp430">
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true">
|
|
<ImageView
|
|
android:id="@+id/img_no_data"
|
|
android:background="@drawable/icon_favourate_empty"
|
|
android:layout_width="@dimen/dp240"
|
|
android:layout_height="@dimen/dp240"/>
|
|
<TextView
|
|
android:textSize="@dimen/dp33"
|
|
android:textColor="@color/txt_98A5B6"
|
|
android:id="@+id/tv_no_login"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp25"
|
|
android:text="@string/favourite_official_no_data"
|
|
android:layout_below="@+id/img_no_data"
|
|
android:layout_centerHorizontal="true"/>
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|
|
<include
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/xr_no_data"
|
|
layout="@layout/layout_guess_fond"/>
|
|
</RelativeLayout>
|
|
</ScrollView>
|