Statistics
| Branch: | Revision:

root / res / layout / viewobject.xml @ 71e52c4a

History | View | Annotate | Download (4.2 kB)

1 3d6041e8 Phillip Toohill
<?xml version="1.0" encoding="utf-8"?>
2 3d6041e8 Phillip Toohill
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3 3d6041e8 Phillip Toohill
    android:layout_width="fill_parent"
4 3d6041e8 Phillip Toohill
    android:layout_height="fill_parent">
5 3d6041e8 Phillip Toohill
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
6 3d6041e8 Phillip Toohill
    android:id="@+id/view_server_layout"
7 3d6041e8 Phillip Toohill
    android:orientation="vertical"
8 3d6041e8 Phillip Toohill
    android:layout_width="fill_parent"
9 3d6041e8 Phillip Toohill
    android:layout_height="fill_parent"
10 3d6041e8 Phillip Toohill
    >
11 3d6041e8 Phillip Toohill
12 3d6041e8 Phillip Toohill
<!-- Container Name - Setting top margin to -700 so it will sit over the OS logo image -->
13 3d6041e8 Phillip Toohill
<TextView  
14 3d6041e8 Phillip Toohill
    android:layout_width="fill_parent" 
15 3d6041e8 Phillip Toohill
    android:layout_height="wrap_content"
16 3d6041e8 Phillip Toohill
    android:layout_marginLeft="22dip" 
17 6864568a Phillip Toohill
    android:layout_marginTop="20dip"
18 3d6041e8 Phillip Toohill
    android:text="Container Name"
19 3d6041e8 Phillip Toohill
    android:singleLine="false"
20 3d6041e8 Phillip Toohill
    />
21 71e52c4a Adam Menz
<HorizontalScrollView android:layout_height="wrap_content" android:layout_width="fill_parent" android:id="@+id/HorizontalScrollView1" android:layout_marginLeft="22dip" android:layout_marginRight="30dip">
22 71e52c4a Adam Menz
    <TextView android:id="@+id/view_container_name" android:layout_width="fill_parent" android:layout_marginLeft="22dip" android:layout_marginBottom="15dip" android:scrollHorizontally="true" android:layout_height="wrap_content" android:gravity="fill_horizontal" android:layout_marginRight="30dip" android:textColor="#fff" android:lines="1" android:textSize="20.0sp" android:textStyle="bold" android:fadeScrollbars="true"></TextView>
23 71e52c4a Adam Menz
</HorizontalScrollView>
24 3d6041e8 Phillip Toohill
    
25 6864568a Phillip Toohill
<!-- File Size  -->
26 3d6041e8 Phillip Toohill
<TextView  
27 3d6041e8 Phillip Toohill
    android:layout_width="fill_parent" 
28 3d6041e8 Phillip Toohill
    android:layout_height="wrap_content"
29 3d6041e8 Phillip Toohill
    android:layout_marginLeft="22dip" 
30 6864568a Phillip Toohill
    android:text="File Size "
31 3d6041e8 Phillip Toohill
    android:singleLine="false"
32 3d6041e8 Phillip Toohill
    />
33 3d6041e8 Phillip Toohill
<TextView android:id="@+id/view_file_bytes"
34 3d6041e8 Phillip Toohill
    android:layout_height="wrap_content"
35 3d6041e8 Phillip Toohill
    android:layout_width="fill_parent"
36 3d6041e8 Phillip Toohill
    android:layout_marginLeft="22dip"
37 3d6041e8 Phillip Toohill
    android:layout_marginRight="30dip"
38 3d6041e8 Phillip Toohill
    android:scrollHorizontally="true"
39 3d6041e8 Phillip Toohill
    android:gravity="fill_horizontal"
40 3d6041e8 Phillip Toohill
    android:textStyle="bold"
41 3d6041e8 Phillip Toohill
    android:textSize="20.0sp"
42 3d6041e8 Phillip Toohill
    android:textColor="#fff"
43 8b432514 Phillip Toohill
    android:layout_marginBottom="15dip"
44 3d6041e8 Phillip Toohill
    />
45 3d6041e8 Phillip Toohill
    
46 6864568a Phillip Toohill
<!-- Content Type -->
47 3d6041e8 Phillip Toohill
<TextView  
48 3d6041e8 Phillip Toohill
    android:layout_width="fill_parent" 
49 3d6041e8 Phillip Toohill
    android:layout_height="wrap_content"
50 3d6041e8 Phillip Toohill
    android:layout_marginLeft="22dip" 
51 3d6041e8 Phillip Toohill
    android:text="Content Type"
52 3d6041e8 Phillip Toohill
    android:singleLine="false"
53 3d6041e8 Phillip Toohill
    />
54 3d6041e8 Phillip Toohill
<TextView android:id="@+id/view_content_type"
55 3d6041e8 Phillip Toohill
    android:layout_height="wrap_content"
56 3d6041e8 Phillip Toohill
    android:layout_width="fill_parent"
57 3d6041e8 Phillip Toohill
    android:layout_marginLeft="22dip"
58 3d6041e8 Phillip Toohill
    android:layout_marginRight="30dip"
59 3d6041e8 Phillip Toohill
    android:scrollHorizontally="true"
60 3d6041e8 Phillip Toohill
    android:gravity="fill_horizontal"
61 3d6041e8 Phillip Toohill
    android:textStyle="bold"
62 3d6041e8 Phillip Toohill
    android:textSize="20.0sp"
63 3d6041e8 Phillip Toohill
    android:textColor="#fff"
64 8b432514 Phillip Toohill
    android:layout_marginBottom="15dip"
65 3d6041e8 Phillip Toohill
    />
66 3d6041e8 Phillip Toohill
67 3d6041e8 Phillip Toohill
<!-- Last Modification  -->
68 3d6041e8 Phillip Toohill
<TextView  
69 3d6041e8 Phillip Toohill
    android:layout_width="fill_parent" 
70 3d6041e8 Phillip Toohill
    android:layout_height="wrap_content"
71 3d6041e8 Phillip Toohill
    android:layout_marginLeft="22dip" 
72 78af992b unknown
    android:text="Last Modification Date"
73 3d6041e8 Phillip Toohill
    android:singleLine="false"
74 3d6041e8 Phillip Toohill
    />
75 3d6041e8 Phillip Toohill
<TextView android:id="@+id/view_file_modification"
76 3d6041e8 Phillip Toohill
    android:layout_height="wrap_content"
77 3d6041e8 Phillip Toohill
    android:layout_width="fill_parent"
78 3d6041e8 Phillip Toohill
    android:layout_marginLeft="22dip"
79 3d6041e8 Phillip Toohill
    android:layout_marginRight="30dip"
80 3d6041e8 Phillip Toohill
    android:scrollHorizontally="true"
81 3d6041e8 Phillip Toohill
    android:gravity="fill_horizontal"
82 3d6041e8 Phillip Toohill
    android:textStyle="bold"
83 3d6041e8 Phillip Toohill
    android:textSize="20.0sp"
84 3d6041e8 Phillip Toohill
    android:textColor="#fff"
85 8b432514 Phillip Toohill
    android:layout_marginBottom="15dip"
86 3d6041e8 Phillip Toohill
    />
87 51938302 Adam Menz
 <!-- Preview Button -->
88 5656caee Adam Menz
<LinearLayout android:layout_width="fill_parent" android:id="@+id/linearLayout1" android:layout_height="wrap_content">
89 5656caee Adam Menz
    <Button android:layout_gravity="left" android:layout_width="130dip" android:layout_marginTop="10dip" android:layout_marginLeft="20dip" android:text="Download" android:id="@+id/download_button" android:layout_height="wrap_content"></Button>
90 5656caee Adam Menz
    <Button android:layout_gravity="left" android:layout_width="130dip" android:layout_marginTop="10dip" android:layout_marginLeft="10dip" android:text="Preview File" android:id="@+id/preview_button" android:layout_height="wrap_content"></Button>
91 51938302 Adam Menz
</LinearLayout>
92 5656caee Adam Menz
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Files will be downloaded to the RackspaceCloud/ directory of your device's external storage." android:layout_marginLeft="20dip" android:layout_marginRight="20dip" android:gravity="center"></TextView>
93 3d6041e8 Phillip Toohill
        </LinearLayout>
94 3d6041e8 Phillip Toohill
95 3d6041e8 Phillip Toohill
 </ScrollView>