Skip to content

Commit

Permalink
feat: resize pictures on main activity
Browse files Browse the repository at this point in the history
  • Loading branch information
tara-pogancev committed Aug 23, 2022
1 parent 423189b commit 5afca54
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
Binary file added DeNoise/app/src/main/res/drawable/forest_tiny.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DeNoise/app/src/main/res/drawable/ocean_tiny.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DeNoise/app/src/main/res/drawable/rain_tiny.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DeNoise/app/src/main/res/drawable/shore_tiny.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DeNoise/app/src/main/res/drawable/sunset_tiny.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DeNoise/app/src/main/res/drawable/water_tiny.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 7 additions & 7 deletions DeNoise/app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/ocean" />
android:src="@drawable/ocean_tiny" />

<RelativeLayout
android:layout_width="match_parent"
Expand Down Expand Up @@ -192,7 +192,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/waterfall" />
android:src="@drawable/waterfall_tiny" />

<RelativeLayout
android:layout_width="match_parent"
Expand Down Expand Up @@ -228,7 +228,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/sunset" />
android:src="@drawable/sunset_tiny" />

<RelativeLayout
android:layout_width="match_parent"
Expand Down Expand Up @@ -264,7 +264,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/rain" />
android:src="@drawable/rain_tiny" />

<RelativeLayout
android:layout_width="match_parent"
Expand Down Expand Up @@ -300,7 +300,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/water" />
android:src="@drawable/tiny_water" />

<RelativeLayout
android:layout_width="match_parent"
Expand Down Expand Up @@ -336,7 +336,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/forest" />
android:src="@drawable/forest_tiny" />

<RelativeLayout
android:layout_width="match_parent"
Expand Down Expand Up @@ -372,7 +372,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/shore" />
android:src="@drawable/shore_tiny" />

<RelativeLayout
android:layout_width="match_parent"
Expand Down

0 comments on commit 5afca54

Please sign in to comment.