shlist

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

layout_home_screen.xml (2167B)


      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/homeScreenLayout"
      5     android:orientation="vertical">
      6 
      7     <!-- <TextView
      8          android:layout_width="match_parent"
      9          android:layout_height="wrap_content"
     10          android:text="Foobar"
     11          android:id="@+id/deviceID"
     12          android:textAppearance="?android:attr/textAppearanceLarge"
     13          android:background="@color/white"
     14          android:textColor="@color/black"
     15          android:paddingTop="10dp"
     16          android:paddingBottom="10dp"
     17          android:paddingLeft="5dp"
     18          android:textSize="15sp"/>-->
     19 
     20     <TextView
     21         android:layout_width="match_parent"
     22         android:layout_height="wrap_content"
     23         android:text="Current Lists"
     24         android:id="@+id/currentListsTV"
     25         android:textAppearance="?android:attr/textAppearanceLarge"
     26         android:background="@color/black"
     27         android:textColor="@color/white"
     28         android:paddingTop="10dp"
     29         android:paddingBottom="10dp"
     30         android:paddingLeft="5dp"
     31         android:textSize="15sp"/>
     32 
     33     <ListView
     34         android:id="@+id/currentLists"
     35         android:layout_width="fill_parent"
     36         android:layout_height="275dp"
     37         android:layout_weight="0.4"/>
     38 
     39     <TableLayout
     40         android:layout_width="match_parent"
     41         android:layout_height="wrap_content"
     42         android:layout_gravity="right"></TableLayout>
     43 
     44     <TextView
     45         android:layout_width="match_parent"
     46         android:layout_height="wrap_content"
     47         android:text="Available Lists"
     48         android:id="@+id/openListsTV"
     49         android:background="@color/black"
     50         android:textColor="@color/white"
     51         android:textAppearance="?android:attr/textAppearanceLarge"
     52         android:paddingTop="10dp"
     53         android:paddingBottom="10dp"
     54         android:paddingLeft="5dp"
     55         android:textSize="15sp"/>
     56 
     57     <ListView
     58         android:id="@+id/openLists"
     59         android:layout_width="fill_parent"
     60         android:layout_height="275dp"
     61         android:layout_weight="0.4"/>
     62 
     63 </LinearLayout>