Created
February 7, 2017 11:54
-
-
Save alfianyusufabdullah/38ac6aa5dfd9cb20bef40ef7b7a3a0f7 to your computer and use it in GitHub Desktop.
Tutorial GridView
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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