Advertisement
Guest User

main.xml

a guest
Sep 12th, 2012
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:background="@drawable/bg_1"
  6. android:orientation="vertical" >
  7.  
  8. <ImageView
  9. android:id="@+id/imageView1"
  10. android:layout_width="fill_parent"
  11. android:layout_height="55dp"
  12. android:background="@color/backcolor"
  13. android:padding="10dp"
  14. android:src="@drawable/logosmall" />
  15.  
  16. <GridView
  17. android:id="@+id/gridViewMyMenu"
  18. android:layout_width="fill_parent"
  19. android:layout_height="280dp"
  20. android:horizontalSpacing="5dp"
  21. android:numColumns="2"
  22. android:verticalSpacing="5dp" >
  23. </GridView>
  24.  
  25.  
  26. <LinearLayout
  27. android:id="@+id/l1"
  28. android:layout_width="fill_parent"
  29. android:layout_height="wrap_content"
  30. android:gravity="center_horizontal"
  31. android:layout_alignParentBottom="true">
  32.  
  33. <include layout="@layout/footer_tabs"/>
  34. </LinearLayout>
  35.  
  36.  
  37.  
  38. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement