Skip to content

Instantly share code, notes, and snippets.

@alfianyusufabdullah
Created February 7, 2017 11:54
Show Gist options
  • Save alfianyusufabdullah/38ac6aa5dfd9cb20bef40ef7b7a3a0f7 to your computer and use it in GitHub Desktop.
Save alfianyusufabdullah/38ac6aa5dfd9cb20bef40ef7b7a3a0f7 to your computer and use it in GitHub Desktop.
Tutorial GridView
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.jonesrandom.tutorialgridview.MainActivity">
<GridView
android:layout_margin="5dp"
android:id="@+id/listGrid"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:horizontalSpacing="5dp"
android:numColumns="2"
android:stretchMode="columnWidth"
android:verticalSpacing="5dp" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment