|
0
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
3 |
android:layout_width="fill_parent"
|
|
|
4 |
android:layout_height="wrap_content" >
|
|
|
5 |
|
|
|
6 |
<TextView
|
|
|
7 |
android:id="@+id/hdate"
|
|
|
8 |
android:layout_width="wrap_content"
|
|
|
9 |
android:layout_height="wrap_content"
|
|
|
10 |
android:layout_alignParentRight="true"
|
|
|
11 |
android:textColor="@color/file_date_color"
|
|
|
12 |
android:textSize="@dimen/file_attr_size"
|
|
|
13 |
android:paddingRight="3dp"
|
|
|
14 |
/>
|
|
|
15 |
|
|
|
16 |
<TextView
|
|
|
17 |
android:id="@+id/hsize"
|
|
|
18 |
android:layout_width="wrap_content"
|
|
|
19 |
android:layout_height="wrap_content"
|
|
|
20 |
android:layout_toLeftOf="@id/hdate"
|
|
|
21 |
android:textColor="@color/file_size_color_positive"
|
|
|
22 |
android:textSize="@dimen/file_attr_size"
|
|
|
23 |
/>
|
|
|
24 |
|
|
|
25 |
<TextView
|
|
|
26 |
android:id="@+id/htext"
|
|
|
27 |
android:layout_width="match_parent"
|
|
|
28 |
android:layout_height="wrap_content"
|
|
|
29 |
android:layout_toLeftOf="@id/hsize"
|
|
|
30 |
android:ellipsize="end"
|
|
|
31 |
android:maxLines="1"
|
|
|
32 |
android:textSize="@dimen/file_name_size"
|
|
|
33 |
android:textColor="@color/file_name_color_positive"
|
|
|
34 |
android:paddingLeft="3dp"
|
|
|
35 |
android:text="bleee"
|
|
|
36 |
/>
|
|
|
37 |
|
|
|
38 |
</RelativeLayout> |