Skip to content

Commit

Permalink
Designing + code cleanup(colors extracted to res)
Browse files Browse the repository at this point in the history
  • Loading branch information
glubshev2001 committed Jun 18, 2019
1 parent 8238840 commit df57d96
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 19 deletions.
2 changes: 1 addition & 1 deletion app/src/main/assets/1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[{"text":" Деревянистые р.: дер., куст. или кустч.; надземный стб. древеснеющий (по крайней мере в нижней части), одетый коркой, живёт несколько или много лет ", "to":2}, {"text":" Травянистые р.; надземные побеги, как правило, отмирают на зиму, а если зимуют, то не одеты коркой и не одревесневают", "to":49}, {"text":"Олег любит обобщать, поэтому сделал так, чтобы путь не обязательно определялся только тезой и антитезой (это можно убрать тупа через файл в ассетах)", "to":282}]
[{"text":" Деревянистые р.: дер., куст. или кустч.; надземный стб. древеснеющий (по крайней мере в нижней части), одетый коркой, живёт несколько или много лет ", "to":2}, {"text":" Травянистые р.; надземные побеги, как правило, отмирают на зиму, а если зимуют, то не одеты коркой и не одревесневают", "to":49}]
7 changes: 7 additions & 0 deletions app/src/main/res/drawable/ic_button.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<vector android:height="24dp" android:viewportHeight="39.6875"
android:viewportWidth="119.06249" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillAlpha="1" android:fillColor="#1f471f"
android:pathData="M0.151,-0.228h118.998v40.065h-118.998z" android:strokeWidth="0.26577991"/>
<path android:fillAlpha="0.7987805" android:fillColor="#4caf50"
android:pathData="M3.393,2.795h112.132v33.262h-112.132z" android:strokeWidth="0.26577991"/>
</vector>
4 changes: 2 additions & 2 deletions app/src/main/res/layout/activity_about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".AboutActivity" android:background="#4CAF50">
tools:context=".AboutActivity" android:background="@color/background">

<LinearLayout
android:orientation="horizontal"
Expand All @@ -14,6 +14,6 @@
android:text="@string/info"
android:layout_width="match_parent"
android:layout_height="match_parent" android:id="@+id/info-tv"
android:layout_weight="1"/>
android:layout_weight="1" android:textColor="@color/text"/>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
29 changes: 19 additions & 10 deletions app/src/main/res/layout/activity_intro.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="#4CAF50"
android:background="@color/background"
android:orientation="vertical"
android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center"
android:id="@+id/linearLayout" android:baselineAligned="false">
Expand All @@ -16,23 +16,32 @@
android:layout_width="wrap_content"
android:gravity="center"
android:layout_height="wrap_content" android:id="@+id/name" android:textSize="36sp"
android:typeface="serif" android:textStyle="bold|italic" android:textAllCaps="false"/>
android:typeface="serif" android:textStyle="bold|italic" android:textAllCaps="false"
android:background="@drawable/ic_button" android:layout_margin="10px" android:layout_marginLeft="10px"
android:layout_marginTop="10px" android:layout_marginRight="10px" android:layout_marginBottom="10px"/>
<Button
android:text="@string/classifier_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/button-classifier"/>
android:layout_width="match_parent"
android:layout_height="wrap_content" android:id="@+id/button-classifier"
android:background="@drawable/ic_button" android:textColor="@color/text"
style="@style/Widget.AppCompat.Button" android:layout_margin="10px" android:layout_marginLeft="10px"
android:layout_marginTop="10px" android:layout_marginRight="10px" android:layout_marginBottom="10px"/>
<Button
android:text="@string/about_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button-about"/>
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/button-about" android:background="@drawable/ic_button"
android:textColor="@color/text" style="@style/Widget.AppCompat.Button" android:layout_margin="10px"
android:layout_marginLeft="10px" android:layout_marginTop="10px" android:layout_marginRight="10px"
android:layout_marginBottom="10px"/>
</LinearLayout>
<TextView
android:text="@string/copyrights"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/textView2"
app:layout_constraintBottom_toBottomOf="@+id/linearLayout" android:layout_marginBottom="10dp"
app:layout_constraintStart_toStartOf="parent" android:layout_marginLeft="8dp"
android:layout_marginStart="8dp" app:layout_constraintEnd_toEndOf="parent" android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"/>
</LinearLayout>
android:layout_marginStart="8dp" app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp" android:textColor="@color/text"/>
</LinearLayout>
11 changes: 5 additions & 6 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
tools:context=".MainActivity" android:background="@color/background">
<FrameLayout android:layout_width="match_parent"
android:layout_height="0dp"
android:id="@+id/fragment_frame"
android:background="#4CAF50"
android:layout_weight="0.9">

</FrameLayout>
Expand All @@ -19,12 +18,12 @@
android:layout_height="wrap_content"
android:text="@string/back"
android:id="@+id/back_button"
android:layout_weight="1"/>
android:layout_weight="1" android:background="@drawable/ic_button"/>

<Button android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/to_start"
android:id="@+id/to_start_button"
android:layout_weight="1"/>
android:layout_weight="1" android:background="@drawable/ic_button"/>
</LinearLayout>
</LinearLayout>
2 changes: 2 additions & 0 deletions app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
<color name="colorPrimary">#008577</color>
<color name="colorPrimaryDark">#00574B</color>
<color name="colorAccent">#D81B60</color>
<color name="background">#4CAF50</color>
<color name="text">#041D05</color>
</resources>

0 comments on commit df57d96

Please sign in to comment.