Skip to content

Commit

Permalink
Fixing image resize issue
Browse files Browse the repository at this point in the history
  • Loading branch information
BijoySingh committed Feb 28, 2018
1 parent 9dda826 commit 82396c4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId "com.bijoysingh.quicknote"
minSdkVersion 17
targetSdkVersion 27
versionCode 61
versionName "4.5.3"
versionCode 62
versionName "4.5.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/item_note.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_height="96dp"
android:adjustViewBounds="true" />

<LinearLayout
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/item_note_staggered.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_height="96dp"
android:scaleType="centerCrop"
android:adjustViewBounds="true" />

<LinearLayout
Expand Down

0 comments on commit 82396c4

Please sign in to comment.