Advertisement
Guest User

activity_main.xml

a guest
Mar 24th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.96 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:orientation="vertical"
  7.    tools:context=".MainActivity">
  8.  
  9.     <ImageView
  10.        android:id="@+id/imageOne"
  11.        android:layout_width="150dp"
  12.        android:layout_height="150dp"
  13.        android:layout_margin="10dp"
  14.        android:layout_gravity="center"/>
  15.  
  16.     <ImageView
  17.        android:id="@+id/imageTwo"
  18.        android:layout_width="150dp"
  19.        android:layout_height="150dp"
  20.        android:layout_margin="10dp"
  21.        android:layout_gravity="center"/>
  22.  
  23.     <ImageView
  24.        android:id="@+id/imageThree"
  25.        android:layout_width="150dp"
  26.        android:layout_height="150dp"
  27.        android:layout_margin="10dp"
  28.        android:layout_gravity="center"/>
  29.  
  30.  
  31. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement