Pit_Anonim

Untitled

Apr 6th, 2019
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.87 KB | None | 0 0
  1.  <LinearLayout
  2.        android:layout_width="300dp"
  3.        android:layout_height="wrap_content"
  4.        android:layout_alignParentTop="true"
  5.        android:layout_centerHorizontal="true"
  6.        android:orientation="vertical"
  7.        android:layout_marginTop="70dp">
  8.  
  9.         <TextView
  10.            style="@style/textStyle1"
  11.            android:layout_width="wrap_content"
  12.            android:layout_height="wrap_content"
  13.            android:text="Прочитанный материал:"/>
  14.  
  15.         <ProgressBar
  16.            android:id="@+id/progressBar"
  17.            style="?android:attr/progressBarStyleHorizontal"
  18.            android:layout_width="match_parent"
  19.            android:layout_height="wrap_content"
  20.            android:indeterminate="false"
  21.            android:max="100"
  22.            android:progress="20" />
  23.  
  24.         <TextView
  25.            style="@style/textStyle1"
  26.            android:layout_width="wrap_content"
  27.            android:layout_height="wrap_content"
  28.            android:text="Выполненые задания:" />
  29.  
  30.         <ProgressBar
  31.            style="?android:attr/progressBarStyleHorizontal"
  32.            android:layout_width="match_parent"
  33.            android:layout_height="wrap_content"
  34.            android:indeterminate="false"
  35.            android:max="100"
  36.            android:progress="20" />
  37.  
  38.         <TextView
  39.            style="@style/textStyle1"
  40.            android:layout_width="wrap_content"
  41.            android:layout_height="wrap_content"
  42.            android:text="Усвоение материала:" />
  43.  
  44.         <ProgressBar
  45.            style="?android:attr/progressBarStyleHorizontal"
  46.            android:layout_width="match_parent"
  47.            android:layout_height="wrap_content"
  48.            android:indeterminate="false"
  49.            android:max="100"
  50.            android:progress="20" />
  51.  
  52.         <TextView
  53.            android:layout_width="wrap_content"
  54.            android:layout_height="wrap_content"
  55.            android:text="Вам надо повторить ..."/>
  56.  
  57.     </LinearLayout>
  58.  
  59.  
  60.  
  61.     <LinearLayout
  62.        android:layout_width="wrap_content"
  63.        android:layout_height="wrap_content"
  64.        android:orientation="horizontal"
  65.        android:layout_centerHorizontal="true"
  66.        android:layout_alignParentBottom="true"
  67.        android:layout_marginBottom="30dp"
  68.        android:id="@+id/buttons">
  69.  
  70.         <Button
  71.            android:layout_width="170dp"
  72.            android:layout_height="wrap_content"
  73.            android:theme="@style/orangeButton"
  74.            android:textColor="#ffff"
  75.            android:text="Темы"/>
  76.  
  77.         <Button
  78.            android:layout_width="170dp"
  79.            android:layout_height="wrap_content"
  80.            android:theme="@style/redButton"
  81.            android:textColor="#ffff"
  82.            android:text="Зачёт"/>
  83.     </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment