| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:flatui="http://schemas.android.com/apk/res-auto"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@mipmap/login_background"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true"
- android:layout_marginBottom="@dimen/space_100"
- android:orientation="vertical"
- android:paddingLeft="@dimen/space_30"
- android:paddingRight="@dimen/space_30">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="15dip"
- android:gravity="left"
- android:orientation="vertical">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/login_ip_address"
- android:textColor="@color/black"
- android:textSize="@dimen/text_size_18" />
- <com.jsjty.jdc.app.widget.flatui.views.FlatEditText
- android:id="@+id/login_ip_input"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_5"
- android:gravity="center_vertical"
- android:hint="@string/login_ip_input"
- android:includeFontPadding="true"
- android:maxLines="1"
- flatui:fl_fieldStyle="fl_box"
- flatui:fl_theme="@array/sea" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="15dip"
- android:gravity="left"
- android:orientation="vertical">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/login_port_address"
- android:textColor="@color/black"
- android:textSize="@dimen/text_size_18" />
- <com.jsjty.jdc.app.widget.flatui.views.FlatEditText
- android:id="@+id/login_port_input"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_5"
- android:gravity="center_vertical"
- android:hint="@string/login_port_input"
- android:includeFontPadding="true"
- android:inputType="number"
- android:maxLines="1"
- flatui:fl_fieldStyle="fl_box"
- flatui:fl_theme="@array/sea" />
- </LinearLayout>
- <TextView
- android:id="@+id/login_btn_save"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_20"
- android:background="@mipmap/login_btn"
- android:gravity="center"
- android:text="@string/login_ip_save"
- android:textColor="@color/white"
- android:textSize="@dimen/text_size_22" />
- <TextView
- android:id="@+id/login_btn_cancel"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_10"
- android:background="@mipmap/login_cancel"
- android:gravity="center"
- android:text="@string/login_ip_cancel"
- android:textColor="@color/white"
- android:textSize="@dimen/text_size_22" />
- </LinearLayout>
- </RelativeLayout>
|