Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <LinearLayout
  7. android:orientation="vertical"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content">
  10.  
  11. <TextView
  12. android:id="@+id/messaggio"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:textAppearance="?android:attr/textAppearanceLarge"
  16. android:layout_marginBottom="10dp"
  17. android:layout_marginTop="10dp"
  18.  
  19. android:textStyle="bold"
  20. ></TextView>
  21. <ListView
  22. android:id="@+id/piante"
  23. android:layout_width="match_parent"
  24. android:layout_height="0dp"
  25. android:layout_margin="5dp"
  26. android:paddingBottom="10dp"
  27. android:layout_marginBottom="0dp"
  28. android:layout_weight="1"
  29. />
  30.  
  31.  
  32. </LinearLayout>
  33.  
  34. <ImageButton style="@style/AppTheme"
  35. android:layout_width="60dp"
  36. android:layout_height="60dp"
  37. android:id="@+id/fab"
  38. android:src="@drawable/plus"
  39. android:background="@drawable/fab"
  40. android:layout_gravity="end"
  41. android:layout_alignParentBottom="true"
  42. android:layout_alignParentRight="true"
  43. android:layout_alignParentEnd="true"
  44. android:layout_marginBottom="24dp"
  45. android:layout_marginRight="24dp"
  46. android:layout_marginEnd="24dp"/>
  47.  
  48. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement