Skip to content

Commit 0bfabf8

Browse files
author
trife
committed
Changed compare icon and layout
1 parent 0024d13 commit 0bfabf8

File tree

5 files changed

+45
-9
lines changed

5 files changed

+45
-9
lines changed
651 Bytes
Binary file not shown.

.idea/codeStyles/Project.xml

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ android {
66
buildToolsVersion '28.0.3'
77
defaultConfig {
88
applicationId "org.phenoapps.verify"
9-
minSdkVersion 14
9+
minSdkVersion 16
1010
targetSdkVersion 27
11-
versionCode 1
12-
versionName "1.0.1"
11+
versionCode 2
12+
versionName "1.1"
1313
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1414
multiDexEnabled = true
1515
vectorDrawables.useSupportLibrary = true

app/src/main/res/drawable/ic_file_compare.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
android:viewportWidth="24"
55
android:viewportHeight="24">
66
<path
7-
android:fillColor="#FF000000"
7+
android:fillColor="#FFFFFFFF"
88
android:pathData="M10,18H6V16H10V18M10,14H6V12H10V14M10,1V2H6C4.89,2 4,2.89 4,4V20A2,2 0,0 0,6 22H10V23H12V1H10M20,8V20C20,21.11 19.11,22 18,22H14V20H18V11H14V9H18.5L14,4.5V2L20,8M16,14H14V12H16V14M16,18H14V16H16V18Z"/>
99
</vector>

app/src/main/res/layout/choice_compare_layout.xml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,32 @@
55
android:layout_height="wrap_content">
66

77
<RadioGroup
8+
android:id="@+id/compare_radio_group"
89
android:layout_width="match_parent"
9-
android:layout_height="51dp"
10-
android:orientation="horizontal"
11-
android:id="@+id/compare_radio_group">
10+
android:layout_height="wrap_content"
11+
android:layout_margin="20dp"
12+
android:orientation="vertical">
1213

1314
<RadioButton
1415
android:id="@+id/radioButton"
1516
android:layout_width="wrap_content"
1617
android:layout_height="wrap_content"
1718
android:layout_weight="1"
19+
android:paddingLeft="20dp"
20+
android:paddingTop="10dp"
21+
android:paddingBottom="10dp"
1822
android:text="Contains"
19-
android:textAppearance="@style/AppIntroDefaultHeading" />
23+
android:textSize="18sp" />
2024

2125
<RadioButton
2226
android:id="@+id/radioButton2"
2327
android:layout_width="wrap_content"
2428
android:layout_height="wrap_content"
2529
android:layout_weight="1"
30+
android:paddingLeft="20dp"
31+
android:paddingTop="10dp"
32+
android:paddingBottom="10dp"
2633
android:text="Matches"
27-
android:textAppearance="@style/AppIntroDefaultHeading" />
34+
android:textSize="18sp" />
2835
</RadioGroup>
2936
</RelativeLayout>

0 commit comments

Comments
 (0)