shlist

share and manage lists between multiple people
Log | Files | Refs

add_list_prompt.xml (1221B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      3     android:id="@+id/addListPromptLayout"
      4     android:layout_width="fill_parent"
      5     android:layout_height="fill_parent"
      6     android:orientation="vertical"
      7     android:padding="10dp"
      8     android:weightSum="1">
      9 
     10     <EditText
     11         android:id="@+id/userInput"
     12         android:layout_width="match_parent"
     13         android:inputType="text"
     14         android:layout_height="wrap_content"
     15         android:hint="List Name"
     16         android:layout_marginLeft="10dp"
     17         android:layout_marginRight="10dp">
     18 
     19         <requestFocus />
     20 
     21     </EditText>
     22 
     23     <TextView
     24         android:layout_width="254dp"
     25         android:layout_height="wrap_content"
     26         android:text="lkdashjadshjkads"
     27         android:id="@+id/textView5"
     28         android:layout_gravity="right"
     29         android:layout_weight="0.19" />
     30 
     31     <Button
     32         android:layout_width="wrap_content"
     33         android:layout_height="wrap_content"
     34         android:text="New Button"
     35         android:id="@+id/button"
     36         android:layout_gravity="center_horizontal"
     37         android:onClick="function1"/>
     38 
     39 </LinearLayout>