Initial commit
This commit is contained in:
50
resources/res/layout-sw600dp/alert_login_layout.xml
Normal file
50
resources/res/layout-sw600dp/alert_login_layout.xml
Normal file
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:gravity="center"
|
||||
android:orientation="vertical"
|
||||
android:background="@drawable/shape_white_rect_no_stroke"
|
||||
android:paddingTop="@dimen/dp_20"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<TextView
|
||||
android:textSize="@dimen/txt_size_22"
|
||||
android:textColor="#000000"
|
||||
android:gravity="center"
|
||||
android:id="@+id/titleTextView"
|
||||
android:layout_width="300dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="@dimen/dp_50"
|
||||
android:text="@string/alert_login"
|
||||
android:maxEms="10"/>
|
||||
<View
|
||||
android:background="#cfd0d0"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:layout_marginTop="20dp"/>
|
||||
<LinearLayout
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="60dp">
|
||||
<TextView
|
||||
android:textSize="@dimen/txt_size_20"
|
||||
android:textColor="#39c6ea"
|
||||
android:gravity="center"
|
||||
android:id="@+id/cancel_button"
|
||||
android:background="@drawable/selector_click_button"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:text="@string/cancel"
|
||||
android:layout_weight="1"/>
|
||||
<TextView
|
||||
android:textSize="@dimen/txt_size_20"
|
||||
android:textColor="#39c6ea"
|
||||
android:gravity="center"
|
||||
android:id="@+id/ok_button"
|
||||
android:background="@drawable/selector_click_button"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:text="@string/login"
|
||||
android:layout_weight="1"/>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
Reference in New Issue
Block a user