<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:id="@+id/rl"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
tools:context=".ui.activity.MLLoginActivity"
|
tools:ignore="MissingDefaultResource">
|
|
<LinearLayout
|
android:id="@+id/ll"
|
android:layout_width="match_parent"
|
android:layout_height="450dp"
|
android:layout_alignParentBottom="true"
|
android:background="@drawable/ml_activity_bg"
|
android:onClick="onClick"
|
android:orientation="horizontal"
|
tools:ignore="OnClick">
|
|
<FrameLayout
|
android:id="@+id/fl"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent" />
|
|
|
</LinearLayout>
|
|
<ImageView
|
android:id="@+id/img_switch"
|
android:layout_width="50dp"
|
android:layout_height="50dp"
|
android:layout_centerVertical="true"
|
android:padding="15dp"
|
android:paddingBottom="10dp"
|
android:paddingTop="10dp"
|
android:src="@mipmap/ml_ic_switch_left_red"
|
android:visibility="gone" />
|
|
<ImageView
|
android:id="@+id/img_emptyGuide"
|
android:layout_width="wrap_content"
|
android:layout_height="25dp"
|
android:layout_above="@id/ll"
|
android:layout_centerHorizontal="true"
|
android:layout_centerVertical="true"
|
android:layout_marginBottom="10dp"
|
android:adjustViewBounds="true"
|
android:src="@mipmap/ml_ic_empty_guide_port"
|
android:visibility="gone" />
|
</RelativeLayout>
|