Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
likorn
/
vocabulary_notebook
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
5ccfc374
authored
Nov 13, 2018
by
Paktalin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Redesigned LoginActivity
parent
1e0d43e6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
82 additions
and
29 deletions
app/src/main/AndroidManifest.xml
app/src/main/res/layout/activity_log_in.xml
app/src/main/res/layout/fragment_editable_word.xml
app/src/main/res/layout/word_item.xml
app/src/main/res/values/dimens.xml
app/src/main/res/values/styles.xml
app/src/main/AndroidManifest.xml
View file @
5ccfc374
...
...
@@ -13,7 +13,7 @@
android:label=
"@string/app_name"
android:roundIcon=
"@mipmap/ic_launcher_round"
android:supportsRtl=
"true"
android:theme=
"@style/
AppTheme
"
>
android:theme=
"@style/
NoTextActionBar
"
>
<activity
android:label=
"@string/app_name"
android:name=
".ui.activities.MainActivity"
...
...
@@ -27,7 +27,9 @@
</activity>
<activity
android:name=
".ui.activities.LogInActivity"
android:windowSoftInputMode=
"adjustResize"
>
android:windowSoftInputMode=
"adjustResize"
android:label=
"Vocabulary Notebook"
android:theme=
"@style/BasicStyle"
>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
...
...
app/src/main/res/layout/activity_log_in.xml
View file @
5ccfc374
...
...
@@ -6,61 +6,102 @@
xmlns:app=
"http://schemas.android.com/apk/res-auto"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
tools:context=
".ui.activities.LogInActivity"
>
tools:context=
".ui.activities.LogInActivity"
android:background=
"@color/background_color"
>
<android.support.constraint.ConstraintLayout
android:id=
"@+id/emailPasswordLayout"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:background=
"@drawable/sheet"
android:padding=
"@dimen/medium_padding"
android:layout_margin=
"@dimen/medium_margin"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
app:layout_constraintBottom_toTopOf=
"@+id/btnLogIn"
>
<EditText
android:id=
"@+id/etEmail"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginBottom=
"8dp"
android:layout_marginEnd=
"8dp"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"8dp"
android:layout_marginStart=
"8dp"
android:layout_marginTop=
"8dp"
android:layout_margin=
"@dimen/small_margin"
android:background=
"@android:color/transparent"
android:ems=
"10"
android:textSize=
"@dimen/text_size"
android:fontFamily=
"@font/neucha"
android:hint=
"@string/email_hint"
android:inputType=
"textEmailAddress"
android:paddingEnd=
"@dimen/small_padding"
android:paddingLeft=
"@dimen/small_padding"
android:paddingRight=
"@dimen/small_padding"
android:paddingStart=
"@dimen/small_padding"
android:textColor=
"@color/text_color"
app:layout_constraintBottom_toTopOf=
"@+id/etPassword"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
app:layout_constraintVertical_chainStyle=
"packed"
/>
<ImageView
android:id=
"@+id/lineEmail"
android:layout_width=
"0dp"
android:layout_height=
"wrap_content"
android:src=
"@drawable/line"
app:layout_constraintLeft_toLeftOf=
"@+id/etEmail"
app:layout_constraintRight_toRightOf=
"@+id/etEmail"
app:layout_constraintTop_toBottomOf=
"@+id/etEmail"
tools:ignore=
"ContentDescription"
/>
<EditText
android:id=
"@+id/etPassword"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginBottom=
"8dp"
android:layout_marginEnd=
"8dp"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"8dp"
android:layout_marginStart=
"8dp"
android:layout_marginTop=
"8dp"
android:layout_margin=
"@dimen/small_margin"
android:layout_marginTop=
"@dimen/medium_margin"
android:background=
"@android:color/transparent"
android:textSize=
"@dimen/text_size"
android:ems=
"10"
android:fontFamily=
"@font/neucha"
android:hint=
"@string/password_hint"
android:inputType=
"textPassword"
app:layout_constraintBottom_toTopOf=
"@+id/btnLogIn"
android:paddingEnd=
"@dimen/small_padding"
android:paddingLeft=
"@dimen/small_padding"
android:paddingRight=
"@dimen/small_padding"
android:paddingStart=
"@dimen/small_padding"
android:textColor=
"@color/text_color"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toBottomOf=
"@+id/etEmail"
/>
app:layout_constraintTop_toBottomOf=
"@+id/lineEmail"
/>
<ImageView
android:layout_width=
"0dp"
android:layout_height=
"wrap_content"
android:layout_marginBottom=
"@dimen/small_margin"
android:src=
"@drawable/line"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintLeft_toLeftOf=
"@+id/etPassword"
app:layout_constraintRight_toRightOf=
"@+id/etPassword"
app:layout_constraintTop_toBottomOf=
"@+id/etPassword"
tools:ignore=
"ContentDescription"
/>
</android.support.constraint.ConstraintLayout>
<Button
android:id=
"@+id/btnLogIn"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginBottom=
"8dp"
android:layout_marginEnd=
"8dp"
android:layout_marginLeft=
"8dp"
android:layout_marginRight=
"8dp"
android:layout_marginStart=
"8dp"
android:layout_marginTop=
"8dp"
android:layout_margin=
"@dimen/small_margin"
android:text=
"@string/log_in_text"
android:background=
"@android:color/transparent"
android:fontFamily=
"@font/neucha"
android:textSize=
"@dimen/button_text_size"
android:textColor=
"@color/sheet_color"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toStartOf=
"@id/btnSignUp"
app:layout_constraintHorizontal_chainStyle=
"packed"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toBottomOf=
"@+id/e
tPassword
"
/>
app:layout_constraintTop_toBottomOf=
"@+id/e
mailPasswordLayout
"
/>
<Button
android:id=
"@+id/btnSignUp"
...
...
@@ -71,6 +112,10 @@
android:layout_marginRight=
"8dp"
android:layout_marginStart=
"8dp"
android:text=
"@string/sign_up"
android:background=
"@android:color/transparent"
android:fontFamily=
"@font/neucha"
android:textSize=
"@dimen/button_text_size"
android:textColor=
"@color/sheet_color"
app:layout_constraintBottom_toBottomOf=
"@+id/btnLogIn"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toEndOf=
"@+id/btnLogIn"
...
...
app/src/main/res/layout/fragment_editable_word.xml
View file @
5ccfc374
...
...
@@ -42,7 +42,7 @@
android:background=
"@android:color/transparent"
android:hint=
"@string/hint_new_word"
android:inputType=
"text"
android:textSize=
"
22sp
"
android:textSize=
"
@dimen/text_size
"
app:fontFamily=
"@font/neucha"
android:textColor=
"@color/text_color"
tools:ignore=
"LabelFor"
/>
...
...
@@ -55,7 +55,7 @@
android:background=
"@android:color/transparent"
android:hint=
"@string/hint_translation"
android:inputType=
"text"
android:textSize=
"
22sp
"
android:textSize=
"
@dimen/text_size
"
app:fontFamily=
"@font/neucha"
android:textColor=
"@color/text_color"
tools:ignore=
"LabelFor"
/>
...
...
app/src/main/res/layout/word_item.xml
View file @
5ccfc374
...
...
@@ -40,7 +40,7 @@
android:layout_width=
"0dp"
android:layout_height=
"wrap_content"
android:layout_weight=
"1"
android:textSize=
"
22sp
"
android:textSize=
"
@dimen/text_size
"
app:fontFamily=
"@font/neucha"
android:textColor=
"@color/text_color"
tools:ignore=
"LabelFor"
/>
...
...
@@ -50,7 +50,7 @@
android:layout_width=
"0dp"
android:layout_height=
"wrap_content"
android:layout_weight=
"1"
android:textSize=
"
22sp
"
android:textSize=
"
@dimen/text_size
"
app:fontFamily=
"@font/neucha"
android:textColor=
"@color/text_color"
tools:ignore=
"LabelFor"
/>
...
...
app/src/main/res/values/dimens.xml
View file @
5ccfc374
...
...
@@ -6,4 +6,8 @@
<dimen
name=
"zero_corner_radius"
>
0dp
</dimen>
<dimen
name=
"small_margin"
>
8dp
</dimen>
<dimen
name=
"small_padding"
>
8dp
</dimen>
<dimen
name=
"button_text_size"
>
24sp
</dimen>
<dimen
name=
"medium_padding"
>
16dp
</dimen>
<dimen
name=
"medium_margin"
>
16dp
</dimen>
<dimen
name=
"text_size"
>
22sp
</dimen>
</resources>
app/src/main/res/values/styles.xml
View file @
5ccfc374
<resources>
<style
name=
"
AppThem
e"
parent=
"Base.Theme.AppCompat.Light.DarkActionBar"
>
<style
name=
"
BasicStyl
e"
parent=
"Base.Theme.AppCompat.Light.DarkActionBar"
>
<item
name=
"colorPrimary"
>
@color/colorPrimary
</item>
<item
name=
"colorPrimaryDark"
>
@color/colorPrimaryDark
</item>
<item
name=
"colorAccent"
>
@color/colorAccent
</item>
</style>
<style
name=
"NoTextActionBar"
parent=
"BasicStyle"
>
<item
name=
"actionBarStyle"
>
@style/Widget.Styled.ActionBar
</item>
<item
name=
"android:actionBarStyle"
>
@style/Widget.Styled.ActionBar
</item>
<item
name=
"android:actionOverflowButtonStyle"
>
@style/MyActionButtonOverflow
</item>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment