Posts

Showing posts with the label GridView

GridView in Android

Image
GridView in android shows the items in two dimensional scrolling grid . For details see the   GridView   reference. Step 1:   Create Project            a) Open Android Studio           b) Go to File >New> New Project  > Project Name  > Next > Next > Next > Finish  Step 2 :   Layout Design           open   activity_main.xml   file and add the bellow code  <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent">     <GridView         android:id="@+id/gridview"         android:layout_width="match_parent" ...