158 lines
6.3 KiB
XML
158 lines
6.3 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/grey_background"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
tools:context="cpm.com.gskmtorange.LoginActivity">
|
|
|
|
<!-- Login progress -->
|
|
<ProgressBar
|
|
android:id="@+id/login_progress"
|
|
style="?android:attr/progressBarStyleSmall"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:layout_marginBottom="8dp"/>
|
|
|
|
<ScrollView
|
|
android:id="@+id/login_form"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/grey_background">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp">
|
|
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="45dp"
|
|
android:layout_centerInParent="true"
|
|
android:layout_gravity="center_vertical"
|
|
android:background="@drawable/parinaam_logo" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<android.support.v7.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp"
|
|
android:layout_marginTop="20dp"
|
|
card_view:cardBackgroundColor="@color/white"
|
|
card_view:cardCornerRadius="5dp">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/email_login_form"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="40dp"
|
|
android:paddingTop="20dp">
|
|
|
|
<android.support.design.widget.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp">
|
|
|
|
<AutoCompleteTextView
|
|
android:id="@+id/userid"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/prompt_userid"
|
|
android:maxLines="1"
|
|
android:singleLine="true" />
|
|
</android.support.design.widget.TextInputLayout>
|
|
|
|
<android.support.design.widget.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp"
|
|
app:passwordToggleEnabled="true">
|
|
|
|
<EditText
|
|
android:id="@+id/password"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/prompt_password"
|
|
android:imeActionId="@+id/login"
|
|
android:imeActionLabel="@string/action_sign_in_short"
|
|
android:imeOptions="actionUnspecified"
|
|
android:inputType="textPassword"
|
|
android:maxLines="1"
|
|
android:singleLine="true" />
|
|
|
|
</android.support.design.widget.TextInputLayout>
|
|
|
|
<Button
|
|
android:id="@+id/user_login_button"
|
|
style="?android:textAppearanceSmall"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp"
|
|
android:layout_marginTop="16dp"
|
|
android:text="@string/action_sign_in"
|
|
android:textStyle="bold" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</android.support.v7.widget.CardView>
|
|
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/gsklogo"
|
|
android:layout_width="115dp"
|
|
android:layout_height="100dp"
|
|
|
|
android:layout_centerInParent="true"
|
|
android:background="@drawable/gsklogo"></ImageView>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_version_code"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:text="Version/Versiyon"
|
|
android:textSize="@dimen/text_size_normal" />
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</ScrollView>
|
|
</RelativeLayout> |