shlist

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

layout_list_screen.xml (1492B)


      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:orientation="vertical">
      5 
      6 
      7     <TextView
      8         android:layout_width="match_parent"
      9         android:layout_height="wrap_content"
     10         android:text="Shared Items"
     11         android:id="@+id/sharedItemsTV"
     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     <ListView
     21         android:id="@+id/sharedItems"
     22         android:layout_width="fill_parent"
     23         android:layout_height="275dp"
     24         android:layout_weight="0.4"/>
     25 
     26     <TextView
     27         android:layout_width="match_parent"
     28         android:layout_height="wrap_content"
     29         android:text="Private Items"
     30         android:id="@+id/privateItemsTV"
     31         android:background="@color/black"
     32         android:textColor="@color/white"
     33         android:textAppearance="?android:attr/textAppearanceLarge"
     34         android:paddingTop="10dp"
     35         android:paddingBottom="10dp"
     36         android:paddingLeft="5dp"
     37         android:textSize="15sp"/>
     38 
     39     <ListView
     40         android:id="@+id/privateItems"
     41         android:layout_width="fill_parent"
     42         android:layout_height="275dp"
     43         android:layout_weight="0.4"/>
     44 
     45 </LinearLayout>