Advertisement
kernel_memory_dump

Untitled

Apr 14th, 2014
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.50 KB | None | 0 0
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.    xmlns:tools="http://schemas.android.com/tools"
  3.    android:id="@+id/LinearLayout1"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:orientation="vertical"
  7.    android:paddingBottom="@dimen/activity_vertical_margin"
  8.    android:paddingLeft="@dimen/activity_horizontal_margin"
  9.    android:paddingRight="@dimen/activity_horizontal_margin"
  10.    android:paddingTop="@dimen/activity_vertical_margin"
  11.    tools:context="rajak.igre.kviz.MainActivity$PlaceholderFragment" >
  12.  
  13.     <TextView
  14.        android:id="@+id/txtPitanje"
  15.        android:layout_width="wrap_content"
  16.        android:layout_height="wrap_content"
  17.        android:text="@string/hello_world" />
  18.    
  19.     <RadioGroup
  20.        android:layout_width="wrap_content"
  21.        android:layout_height="wrap_content" >
  22.  
  23.         <RadioButton
  24.        android:id="@+id/rbtnOpcijaA"
  25.        android:layout_width="wrap_content"
  26.        android:layout_height="wrap_content"
  27.        android:text="opcijaA"
  28.        />
  29.                 <RadioButton
  30.        android:id="@+id/rbtnOpcijaB"
  31.        android:layout_width="wrap_content"
  32.        android:layout_height="wrap_content"
  33.        android:text="opcijaB"
  34.        />
  35.                
  36.                         <RadioButton
  37.        android:id="@+id/rbtnOpcijaC"
  38.        android:layout_width="wrap_content"
  39.        android:layout_height="wrap_content"
  40.        android:text="opcijaC"
  41.        />
  42.        
  43.     </RadioGroup>
  44.  
  45. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement