Advertisement
PoulYakov

Untitled

Nov 23rd, 2022
1,015
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. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent"
  5.    android:orientation="horizontal">
  6.  
  7.  
  8.     <LinearLayout
  9.        android:layout_width="0dp"
  10.        android:layout_height="match_parent"
  11.        android:layout_weight="3"
  12.        android:orientation="vertical">
  13.  
  14.         <TextView
  15.            android:layout_width="match_parent"
  16.            android:layout_height="24dp"
  17.            android:text="Фамилия" />
  18.  
  19.         <TextView
  20.            android:layout_width="match_parent"
  21.            android:layout_height="24dp"
  22.            android:text="Имя" />
  23.  
  24.         <TextView
  25.            android:layout_width="match_parent"
  26.            android:layout_height="24dp"
  27.            android:text="Отчество" />
  28.  
  29.         <TextView
  30.            android:layout_width="match_parent"
  31.            android:layout_height="24dp"
  32.            android:text="Год" />
  33.  
  34.         <TextView
  35.            android:layout_width="match_parent"
  36.            android:layout_height="24dp"
  37.            android:text="Школа" />
  38.  
  39.         <TextView
  40.            android:layout_width="match_parent"
  41.            android:layout_height="24dp"
  42.            android:text="Город" />
  43.  
  44.         <TextView
  45.            android:layout_width="match_parent"
  46.            android:layout_height="24dp"
  47.            android:text="Опыт программирования" />
  48.  
  49.         <TextView
  50.            android:layout_width="match_parent"
  51.            android:layout_height="24dp"
  52.            android:text="Знание языков программирования
  53. " />
  54.  
  55.  
  56.     </LinearLayout>
  57.  
  58.     <LinearLayout
  59.        android:layout_width="0dp"
  60.        android:layout_height="match_parent"
  61.        android:layout_weight="1"
  62.        android:orientation="vertical">
  63.  
  64.  
  65.         <EditText
  66.            android:layout_width="match_parent"
  67.            android:layout_height="24dp" />
  68.  
  69.         <EditText
  70.            android:layout_width="match_parent"
  71.            android:layout_height="24dp" />
  72.  
  73.         <EditText
  74.            android:layout_width="match_parent"
  75.            android:layout_height="24dp" />
  76.  
  77.         <EditText
  78.            android:layout_width="match_parent"
  79.            android:layout_height="24dp" />
  80.  
  81.         <EditText
  82.            android:layout_width="match_parent"
  83.            android:layout_height="24dp" />
  84.  
  85.  
  86.         <RadioGroup
  87.            android:layout_width="wrap_content"
  88.            android:layout_height="wrap_content">
  89.  
  90.             <RadioButton
  91.                android:layout_width="30dp"
  92.                android:layout_height="24dp" />
  93.  
  94.             <RadioButton
  95.                android:layout_width="30dp"
  96.                android:layout_height="24dp" />
  97.         </RadioGroup>
  98.  
  99.         <CheckBox
  100.            android:layout_width="30dp"
  101.            android:layout_height="24dp" />
  102.  
  103.  
  104.     </LinearLayout>
  105.  
  106.     <LinearLayout
  107.        android:layout_width="0dp"
  108.        android:layout_height="match_parent"
  109.        android:layout_weight="4">
  110.         <CalendarView
  111.            android:layout_width="match_parent"
  112.            android:layout_height="match_parent" />
  113.     </LinearLayout>
  114.    
  115.  
  116. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement