Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:paddingBottom="@dimen/activity_vertical_margin"
  6. android:paddingLeft="@dimen/activity_horizontal_margin"
  7. android:paddingRight="@dimen/activity_horizontal_margin"
  8. android:paddingTop="@dimen/activity_vertical_margin"
  9. tools:context="com.example.start.MainActivity$PlaceholderFragment" >
  10.  
  11. <LinearLayout
  12. android:layout_width="fill_parent"
  13. android:layout_height="fill_parent"
  14. android:layout_alignParentLeft="true"
  15. android:layout_alignParentTop="true"
  16. android:orientation="horizontal"
  17. android:weightSum="3"
  18. >
  19.  
  20. <LinearLayout
  21. android:layout_width="fill_parent"
  22. android:layout_height="match_parent"
  23. android:layout_weight="1"
  24. android:
  25. android:background="@drawable/dbb" >
  26.  
  27. </LinearLayout>
  28.  
  29. <LinearLayout
  30.  
  31. android:layout_width="fill_parent"
  32. android:layout_height="fill_parent"
  33. android:layout_alignParentLeft="true"
  34. android:layout_alignParentTop="true"
  35.  
  36. android:orientation="vertical"
  37.  
  38. android:weightSum="2" >
  39.  
  40. <LinearLayout
  41. android:layout_weight="1"
  42. android:layout_height="fill_parent"
  43. android:layout_width="fill_parent"
  44.  
  45. >
  46.  
  47. <ImageView
  48. android:id="@+id/test_image"
  49. android:layout_width="wrap_content"
  50. android:layout_height="match_parent"
  51. android:background="@drawable/download" />
  52.  
  53. </LinearLayout>
  54.  
  55. <LinearLayout
  56. android:layout_width="385dp"
  57. android:layout_height="fill_parent" >
  58.  
  59. <ImageView
  60. android:id="@+id/test_image1"
  61. android:src="@drawable/download"
  62. android:layout_width="wrap_content"
  63. android:layout_height="wrap_content"
  64. />
  65. </LinearLayout>
  66.  
  67. </LinearLayout>
  68. </LinearLayout>
  69. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement