Advertisement
Guest User

Untitled

a guest
Mar 12th, 2016
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.90 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:orientation="vertical">
  6.  
  7.     <LinearLayout
  8.        android:orientation="horizontal"
  9.        android:layout_width="match_parent"
  10.        android:layout_height="wrap_content">
  11.  
  12.         <TextView
  13.            android:layout_width="match_parent"
  14.            android:layout_height="wrap_content"
  15.            android:layout_weight="1"
  16.            android:gravity="center"
  17.            android:text="Domaci"
  18.            android:id="@+id/textView" />
  19.  
  20.         <TextView
  21.            android:layout_width="match_parent"
  22.            android:layout_height="wrap_content"
  23.            android:layout_weight="1"
  24.            android:gravity="center"
  25.            android:text="Gosti"
  26.            android:id="@+id/textView2" />
  27.     </LinearLayout>
  28.  
  29.     <LinearLayout
  30.        android:orientation="horizontal"
  31.        android:layout_width="match_parent"
  32.        android:layout_height="wrap_content">
  33.  
  34.         <TextView
  35.            android:layout_width="match_parent"
  36.            android:layout_height="wrap_content"
  37.            android:layout_weight="1"
  38.            android:gravity="center"
  39.            android:text="0"
  40.            android:id="@+id/textView3" />
  41.  
  42.         <TextView
  43.            android:layout_width="match_parent"
  44.            android:layout_height="wrap_content"
  45.            android:layout_weight="1"
  46.            android:gravity="center"
  47.            android:text="0"
  48.            android:id="@+id/textView4" />
  49.     </LinearLayout>
  50.  
  51.     <LinearLayout
  52.        android:orientation="horizontal"
  53.        android:layout_width="match_parent"
  54.        android:layout_height="wrap_content">
  55.  
  56.         <Button
  57.            android:layout_width="match_parent"
  58.            android:layout_height="wrap_content"
  59.            android:layout_weight="1"
  60.            android:text="+3"
  61.            android:id="@+id/button" />
  62.  
  63.         <Button
  64.            android:layout_width="match_parent"
  65.            android:layout_height="wrap_content"
  66.            android:layout_weight="1"
  67.            android:text="+3"
  68.            android:id="@+id/button2" />
  69.     </LinearLayout>
  70.  
  71.     <LinearLayout
  72.        android:orientation="horizontal"
  73.        android:layout_width="match_parent"
  74.        android:layout_height="wrap_content">
  75.  
  76.         <Button
  77.            android:layout_width="match_parent"
  78.            android:layout_height="wrap_content"
  79.            android:layout_weight="1"
  80.            android:text="+2"
  81.            android:id="@+id/button3" />
  82.  
  83.         <Button
  84.            android:layout_width="match_parent"
  85.            android:layout_height="wrap_content"
  86.            android:layout_weight="1"
  87.            android:text="+2"
  88.            android:id="@+id/button4" />
  89.     </LinearLayout>
  90.  
  91.     <LinearLayout
  92.        android:orientation="horizontal"
  93.        android:layout_width="match_parent"
  94.        android:layout_height="wrap_content">
  95.  
  96.         <Button
  97.            android:layout_width="match_parent"
  98.            android:layout_height="wrap_content"
  99.            android:layout_weight="1"
  100.            android:text="Slobodno Bacanje"
  101.            android:id="@+id/button5" />
  102.  
  103.         <Button
  104.            android:layout_width="match_parent"
  105.            android:layout_height="wrap_content"
  106.            android:layout_weight="1"
  107.            android:text="Slobodno Bacanje"
  108.            android:id="@+id/button6" />
  109.     </LinearLayout>
  110.  
  111.     <LinearLayout
  112.        android:orientation="horizontal"
  113.        android:layout_width="match_parent"
  114.        android:layout_height="wrap_content">
  115.  
  116.         <Button
  117.            android:layout_width="match_parent"
  118.            android:layout_height="wrap_content"
  119.            android:text="Reset"
  120.            android:id="@+id/button7" />
  121.     </LinearLayout>
  122. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement