Skip to content

Instantly share code, notes, and snippets.

@khkred
Created June 11, 2018 14:38
Show Gist options
  • Save khkred/646264eb1b38872828a1f33003cbb884 to your computer and use it in GitHub Desktop.
Save khkred/646264eb1b38872828a1f33003cbb884 to your computer and use it in GitHub Desktop.
Assignment: I need 8 images in a matrix of 4*2. It should look like a gallery app. I have provided one such image.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ImageView
android:src="@drawable/material_1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"/>
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment