Advertisement
Guest User

Untitled

a guest
May 1st, 2014
6
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 KB | None | 0 0
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:id="@+id/container"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@drawable/clp_sfondo"
  7. android:orientation="vertical"
  8. tools:context="com.CreaLeParole.menu_principale"
  9. tools:ignore="MergeRootFrame" >
  10.  
  11. <GridLayout
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:columnCount="1" >
  15.  
  16. <ImageView
  17. android:id="@+id/imageView1"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:layout_gravity="left"
  21. android:adjustViewBounds="true"
  22. android:overScrollMode="always"
  23. android:scaleType="fitXY"
  24. android:scrollbars="none"
  25. android:src="@drawable/action_bar" />
  26.  
  27. <ImageView
  28. android:id="@+id/imageView2"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:layout_column="0"
  32. android:layout_gravity="center"
  33. android:layout_marginBottom="20dp"
  34. android:layout_marginTop="2dp"
  35. android:layout_row="0"
  36. android:src="@drawable/scritta_crealeparole" />
  37.  
  38. <Button
  39. android:id="@+id/buttonImpostazioniMenuPrincipale"
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:layout_column="0"
  43. android:layout_gravity="right|center_vertical"
  44. android:layout_marginBottom="15dp"
  45. android:layout_marginRight="10dp"
  46. android:layout_row="0"
  47. android:background="@drawable/button_impostazioni"
  48. android:fitsSystemWindows="true"
  49. android:maxWidth="64dp"
  50. android:minHeight="38dip" />
  51. </GridLayout>
  52.  
  53. <ScrollView
  54. android:id="@+id/ScrollView1"
  55. android:layout_width="match_parent"
  56. android:layout_height="match_parent"
  57. android:fillViewport="true" >
  58.  
  59. <LinearLayout
  60. android:id="@+id/LinearLayout1"
  61. android:layout_width="match_parent"
  62. android:layout_height="match_parent"
  63. android:orientation="vertical" >
  64.  
  65. <Button
  66. android:id="@+id/buttonNuovaPartita"
  67. android:layout_width="wrap_content"
  68. android:layout_height="wrap_content"
  69. android:layout_gravity="center_horizontal|top"
  70. android:layout_marginLeft="20dp"
  71. android:layout_marginRight="20dp"
  72. android:layout_marginTop="20dp"
  73. android:background="@drawable/button_nuova_partita"
  74. android:textColor="#ffff" />
  75.  
  76. <Button
  77. android:id="@+id/button3"
  78. android:layout_width="wrap_content"
  79. android:layout_height="wrap_content"
  80. android:layout_gravity="center"
  81. android:layout_marginLeft="20dp"
  82. android:layout_marginRight="20dp"
  83. android:layout_marginTop="10dp"
  84. android:background="@drawable/button_partite_terminate" />
  85.  
  86. <Button
  87. android:id="@+id/buttonTutorial"
  88. android:layout_width="wrap_content"
  89. android:layout_height="wrap_content"
  90. android:layout_gravity="center"
  91. android:layout_marginLeft="20dp"
  92. android:layout_marginRight="20dp"
  93. android:layout_marginTop="10dp"
  94. android:background="@drawable/button_statistiche" />
  95.  
  96. <TextView
  97. android:id="@+id/textView1"
  98. android:layout_width="wrap_content"
  99. android:layout_height="wrap_content"
  100. android:layout_marginLeft="20dp"
  101. android:layout_marginTop="30dp"
  102. android:text="Partite del giocatore"
  103. android:textAppearance="?android:attr/textAppearanceMedium"
  104. android:textColor="#ffff"
  105. android:textStyle="bold" />
  106.  
  107. </LinearLayout>
  108. </ScrollView>
  109.  
  110. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement