Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.06 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="wrap_content"
  5.              android:orientation="horizontal">
  6.  
  7.     <TextView
  8.        android:id="@+id/lessonNumber"
  9.        android:layout_width="wrap_content"
  10.        android:layout_height="wrap_content"
  11.        android:layout_marginBottom="8dp"
  12.        android:layout_marginLeft="16dp"
  13.        android:layout_marginRight="16dp"
  14.        android:layout_marginTop="8dp"
  15.        android:layout_weight="0"
  16.        android:text="3"
  17.        android:textAppearance="?attr/textAppearanceListItem"
  18.        android:textSize="24sp"/>
  19.  
  20.     <Spinner
  21.        android:id="@+id/lessonSpinner"
  22.        android:layout_width="wrap_content"
  23.        android:layout_height="wrap_content"
  24.        android:layout_marginBottom="8dp"
  25.        android:layout_marginLeft="4dp"
  26.        android:layout_marginTop="8dp"
  27.        android:layout_weight="1"
  28.  
  29.        />
  30.  
  31.  
  32. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement