shlist

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

layout_contacts_screen.xml (913B)


      1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      2     android:layout_width="match_parent"
      3     android:layout_height="match_parent"
      4     android:id="@+id/contactScreenLayout"
      5     android:orientation="vertical">
      6 
      7     <TextView
      8         android:layout_width="match_parent"
      9         android:layout_height="wrap_content"
     10         android:text="Contacts"
     11         android:id="@+id/currentListsTV"
     12         android:textAppearance="?android:attr/textAppearanceLarge"
     13         android:background="@color/black"
     14         android:textColor="@color/white"
     15         android:paddingTop="10dp"
     16         android:paddingBottom="10dp"
     17         android:paddingLeft="5dp"
     18         android:textSize="15sp"/>
     19 
     20 
     21     <ListView
     22         android:id="@+id/contactList"
     23         android:layout_width="fill_parent"
     24         android:layout_height="275dp"
     25         android:layout_weight="0.4"/>
     26 
     27 </LinearLayout>