Advertisement
WBergmann

arbeit_layout.xml

Jul 20th, 2016
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.87 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="match_parent" android:layout_height="match_parent">
  4.  
  5.     <TextView
  6.        android:layout_width="wrap_content"
  7.        android:layout_height="wrap_content"
  8.        android:textAppearance="?android:attr/textAppearanceLarge"
  9.        android:text="first Layout"
  10.        android:id="@+id/textView2"
  11.        android:layout_centerVertical="true"
  12.        android:layout_centerHorizontal="true" />
  13.  
  14.     <Spinner
  15.        android:layout_width="wrap_content"
  16.        android:layout_height="wrap_content"
  17.        android:id="@+id/arbeit_spinner"
  18.        android:spinnerMode="dropdown"
  19.        android:layout_alignParentTop="true"
  20.        android:layout_alignParentLeft="true"
  21.        android:layout_alignParentStart="true" />
  22. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement