Skip to content

Commit

Permalink
Changed compare icon and layout
Browse files Browse the repository at this point in the history
  • Loading branch information
trife committed Jan 20, 2019
1 parent 0024d13 commit 0bfabf8
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 9 deletions.
Binary file added .idea/caches/build_file_checksums.ser
Binary file not shown.
29 changes: 29 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ android {
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "org.phenoapps.verify"
minSdkVersion 14
minSdkVersion 16
targetSdkVersion 27
versionCode 1
versionName "1.0.1"
versionCode 2
versionName "1.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled = true
vectorDrawables.useSupportLibrary = true
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/drawable/ic_file_compare.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#FF000000"
android:fillColor="#FFFFFFFF"
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"/>
</vector>
17 changes: 12 additions & 5 deletions app/src/main/res/layout/choice_compare_layout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,32 @@
android:layout_height="wrap_content">

<RadioGroup
android:id="@+id/compare_radio_group"
android:layout_width="match_parent"
android:layout_height="51dp"
android:orientation="horizontal"
android:id="@+id/compare_radio_group">
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:orientation="vertical">

<RadioButton
android:id="@+id/radioButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingLeft="20dp"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:text="Contains"
android:textAppearance="@style/AppIntroDefaultHeading" />
android:textSize="18sp" />

<RadioButton
android:id="@+id/radioButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingLeft="20dp"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:text="Matches"
android:textAppearance="@style/AppIntroDefaultHeading" />
android:textSize="18sp" />
</RadioGroup>
</RelativeLayout>

0 comments on commit 0bfabf8

Please sign in to comment.