Advertisement
SkolaRajakAndroid

layout xml PREGAZITI postojeci sa ovim

Sep 3rd, 2015
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.02 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.     <CheckBox
  8.        android:id="@+id/chkIos"
  9.        android:layout_width="wrap_content"
  10.        android:layout_height="wrap_content"
  11.        android:text="@string/chk_ios" />
  12.        
  13.     <CheckBox
  14.        android:id="@+id/chkAndroid"
  15.        android:layout_width="wrap_content"
  16.        android:layout_height="wrap_content"
  17.        android:text="@string/chk_android"
  18.        android:checked="true" />
  19.  
  20.     <CheckBox
  21.        android:id="@+id/chkWindows"
  22.        android:layout_width="wrap_content"
  23.        android:layout_height="wrap_content"
  24.        android:text="@string/chk_windows" />
  25.  
  26.     <Button
  27.        android:id="@+id/btnDisplay"
  28.        android:layout_width="wrap_content"
  29.        android:layout_height="wrap_content"
  30.        android:text="@string/btn_display" />
  31.  
  32. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement