|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<LinearLayout |
| 3 | + android:id="@+id/properties_holder" |
| 4 | + xmlns:android="http://schemas.android.com/apk/res/android" |
| 5 | + android:layout_width="match_parent" |
| 6 | + android:layout_height="match_parent" |
| 7 | + android:orientation="vertical" |
| 8 | + android:paddingLeft="@dimen/activity_margin" |
| 9 | + android:paddingRight="@dimen/activity_margin" |
| 10 | + android:paddingTop="@dimen/activity_margin"> |
| 11 | + |
| 12 | + <TextView |
| 13 | + android:id="@+id/properties_name_label" |
| 14 | + android:layout_width="match_parent" |
| 15 | + android:layout_height="wrap_content" |
| 16 | + android:text="@string/name" |
| 17 | + android:textSize="@dimen/details_text_size"/> |
| 18 | + |
| 19 | + <TextView |
| 20 | + android:id="@+id/properties_name" |
| 21 | + android:layout_width="match_parent" |
| 22 | + android:layout_height="wrap_content" |
| 23 | + android:padding="@dimen/small_margin" |
| 24 | + android:textColor="@android:color/black"/> |
| 25 | + |
| 26 | + <TextView |
| 27 | + android:id="@+id/properties_path_label" |
| 28 | + android:layout_width="match_parent" |
| 29 | + android:layout_height="wrap_content" |
| 30 | + android:layout_marginTop="@dimen/activity_margin" |
| 31 | + android:text="@string/path" |
| 32 | + android:textSize="@dimen/details_text_size"/> |
| 33 | + |
| 34 | + <TextView |
| 35 | + android:id="@+id/properties_path" |
| 36 | + android:layout_width="match_parent" |
| 37 | + android:layout_height="wrap_content" |
| 38 | + android:padding="@dimen/small_margin" |
| 39 | + android:textColor="@android:color/black"/> |
| 40 | + |
| 41 | + <TextView |
| 42 | + android:id="@+id/properties_size_label" |
| 43 | + android:layout_width="match_parent" |
| 44 | + android:layout_height="wrap_content" |
| 45 | + android:layout_marginTop="@dimen/activity_margin" |
| 46 | + android:text="@string/size" |
| 47 | + android:textSize="@dimen/details_text_size"/> |
| 48 | + |
| 49 | + <TextView |
| 50 | + android:id="@+id/properties_size" |
| 51 | + android:layout_width="match_parent" |
| 52 | + android:layout_height="wrap_content" |
| 53 | + android:padding="@dimen/small_margin" |
| 54 | + android:textColor="@android:color/black"/> |
| 55 | + |
| 56 | + <TextView |
| 57 | + android:id="@+id/properties_last_modified_label" |
| 58 | + android:layout_width="match_parent" |
| 59 | + android:layout_height="wrap_content" |
| 60 | + android:layout_marginTop="@dimen/activity_margin" |
| 61 | + android:text="@string/last_modified" |
| 62 | + android:textSize="@dimen/details_text_size"/> |
| 63 | + |
| 64 | + <TextView |
| 65 | + android:id="@+id/properties_last_modified" |
| 66 | + android:layout_width="match_parent" |
| 67 | + android:layout_height="wrap_content" |
| 68 | + android:padding="@dimen/small_margin" |
| 69 | + android:textColor="@android:color/black"/> |
| 70 | + |
| 71 | + <TextView |
| 72 | + android:id="@+id/properties_files_count_label" |
| 73 | + android:layout_width="match_parent" |
| 74 | + android:layout_height="wrap_content" |
| 75 | + android:layout_marginTop="@dimen/activity_margin" |
| 76 | + android:text="@string/files_count" |
| 77 | + android:textSize="@dimen/details_text_size" |
| 78 | + android:visibility="gone"/> |
| 79 | + |
| 80 | + <TextView |
| 81 | + android:id="@+id/properties_files_count" |
| 82 | + android:layout_width="match_parent" |
| 83 | + android:layout_height="wrap_content" |
| 84 | + android:padding="@dimen/small_margin" |
| 85 | + android:textColor="@android:color/black" |
| 86 | + android:visibility="gone"/> |
| 87 | + |
| 88 | +</LinearLayout> |
0 commit comments