Advertisement
Jgug

Android_layout_01

Jul 24th, 2014
571
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.27 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  4.              android:orientation="horizontal"
  5.              android:background="@drawable/abc_cab_background_bottom_holo_dark"
  6.              android:layout_width="match_parent"
  7.              android:layout_height="match_parent"
  8.              >
  9.  
  10.     <LinearLayout
  11.        android:orientation="vertical"
  12.        android:layout_width="match_parent"
  13.        android:layout_height="match_parent"
  14.        android:layout_weight="50"
  15.        >
  16.  
  17.  
  18.  
  19.  
  20.         <LinearLayout
  21.            android:orientation="vertical"
  22.            android:layout_width="match_parent"
  23.            android:layout_height="match_parent"
  24.            android:layout_weight="40"
  25.            >
  26.  
  27.             <Space
  28.                android:layout_width="match_parent"
  29.                android:layout_height="wrap_content"
  30.                android:layout_weight="2.5"
  31.                />
  32.  
  33.             <TextView
  34.                android:layout_width="wrap_content"
  35.                android:layout_height="wrap_content"
  36.                android:text="Блядович Хуячич"
  37.                android:textSize="12sp"
  38.                android:textColor="@color/abc_search_url_text_holo"
  39.                android:layout_gravity="center"
  40.                android:layout_weight="10"
  41.                />
  42.  
  43.             <Space
  44.                android:layout_width="match_parent"
  45.                android:layout_height="wrap_content"
  46.                android:layout_weight="2.5"
  47.                />
  48.  
  49.             <ImageView
  50.                android:layout_width="match_parent"
  51.                android:layout_height="wrap_content"
  52.                android:layout_gravity="center"
  53.                android:src="@drawable/ic_launcher"
  54.                android:layout_weight="70"
  55.                />
  56.  
  57.             <Space
  58.                android:layout_width="match_parent"
  59.                android:layout_height="wrap_content"
  60.                android:layout_weight="2.5"
  61.                />
  62.  
  63.             <Button
  64.                android:layout_width="wrap_content"
  65.                android:layout_height="wrap_content"
  66.                android:text="Впилиться"
  67.                android:textSize="12sp"
  68.                android:layout_gravity="left"
  69.                android:layout_weight="5"
  70.                />
  71.  
  72.             <Space
  73.                android:layout_width="match_parent"
  74.                android:layout_height="wrap_content"
  75.                android:layout_weight="2.5"
  76.                />
  77.  
  78.             <Button
  79.                android:layout_width="wrap_content"
  80.                android:layout_height="wrap_content"
  81.                android:text="Выпились"
  82.                android:textSize="12sp"
  83.                android:layout_gravity="left"
  84.                android:layout_weight="5"
  85.                />
  86.  
  87.  
  88.  
  89.  
  90.         </LinearLayout>
  91.  
  92.         <Space
  93.            android:layout_width="match_parent"
  94.            android:layout_height="match_parent"
  95.            android:layout_weight="60"
  96.            />
  97.  
  98.      </LinearLayout>
  99.  
  100.     <Space
  101.        android:layout_width="match_parent"
  102.        android:layout_height="match_parent"
  103.        android:layout_weight="50"
  104.        />
  105.  
  106.  
  107. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement