diff options
author | Marvin Borner | 2018-09-09 19:27:09 +0200 |
---|---|---|
committer | Marvin Borner | 2018-09-09 19:27:09 +0200 |
commit | 4821b9e70674f1f798fe57736811e1139691105b (patch) | |
tree | ea7e71e3692c32e09ce8605c3e89b419a861f59b /app/src/main/res/drawable | |
parent | bd0c9e48638e1706cc0f5201dc1182773d9196de (diff) |
Further login screen designing :lipstick: :art:
Diffstat (limited to 'app/src/main/res/drawable')
-rw-r--r-- | app/src/main/res/drawable/btn_fab_submit_gradient.xml | 20 | ||||
-rw-r--r-- | app/src/main/res/drawable/ic_fab_submit.xml | 10 | ||||
-rw-r--r-- | app/src/main/res/drawable/img_login_portrait.jpg | bin | 0 -> 4249729 bytes | |||
-rw-r--r-- | app/src/main/res/drawable/text_email_top_background.xml | 9 | ||||
-rw-r--r-- | app/src/main/res/drawable/text_password_bottom_background.xml | 9 |
5 files changed, 48 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/btn_fab_submit_gradient.xml b/app/src/main/res/drawable/btn_fab_submit_gradient.xml new file mode 100644 index 0000000..ad529d7 --- /dev/null +++ b/app/src/main/res/drawable/btn_fab_submit_gradient.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item> + <shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="oval"> + <gradient + android:angle="0" + android:endColor="#ff5252" + android:startColor="#f9a825" + android:type="linear" /> + </shape> + </item> + <item + android:bottom="10dp" + android:drawable="@drawable/ic_fab_submit" + android:gravity="center" + android:left="10dp" + android:right="10dp" + android:top="10dp" /> +</layer-list>
\ No newline at end of file diff --git a/app/src/main/res/drawable/ic_fab_submit.xml b/app/src/main/res/drawable/ic_fab_submit.xml new file mode 100644 index 0000000..2cee69d --- /dev/null +++ b/app/src/main/res/drawable/ic_fab_submit.xml @@ -0,0 +1,10 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:tint="#FFFFFF" + android:viewportHeight="24.0" + android:viewportWidth="24.0"> + <path + android:fillColor="#FF000000" + android:pathData="M9,16.17L4.83,12l-1.42,1.41L9,19 21,7l-1.41,-1.41z" /> +</vector> diff --git a/app/src/main/res/drawable/img_login_portrait.jpg b/app/src/main/res/drawable/img_login_portrait.jpg Binary files differnew file mode 100644 index 0000000..e2c666f --- /dev/null +++ b/app/src/main/res/drawable/img_login_portrait.jpg diff --git a/app/src/main/res/drawable/text_email_top_background.xml b/app/src/main/res/drawable/text_email_top_background.xml new file mode 100644 index 0000000..54e66e8 --- /dev/null +++ b/app/src/main/res/drawable/text_email_top_background.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <size android:height="60dp" /> + <solid android:color="#FFFFFF" /> + <corners + android:topLeftRadius="15dp" + android:topRightRadius="15dp" /> +</shape>
\ No newline at end of file diff --git a/app/src/main/res/drawable/text_password_bottom_background.xml b/app/src/main/res/drawable/text_password_bottom_background.xml new file mode 100644 index 0000000..c8432bf --- /dev/null +++ b/app/src/main/res/drawable/text_password_bottom_background.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <size android:height="60dp" /> + <solid android:color="#FFFFFF" /> + <corners + android:bottomLeftRadius="15dp" + android:bottomRightRadius="15dp" /> +</shape>
\ No newline at end of file |