2014-11-07 17:26:21 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/ListItemLayout"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_height="56dp">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="56dp"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:focusable="false"
|
|
|
|
android:focusableInTouchMode="false">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imageView1"
|
|
|
|
android:layout_width="@dimen/file_icon_size"
|
|
|
|
android:layout_height="@dimen/file_icon_size"
|
2014-12-10 15:44:20 +03:00
|
|
|
android:layout_gravity="center"
|
2014-11-07 17:26:21 +03:00
|
|
|
android:src="@drawable/ic_menu_archive" />
|
2014-12-10 10:18:12 +03:00
|
|
|
|
2014-11-07 17:26:21 +03:00
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView
|
2014-11-14 19:02:58 +03:00
|
|
|
android:id="@+id/upload_name"
|
2014-11-07 17:26:21 +03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:ellipsize="middle"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textColor="#303030"
|
|
|
|
android:textSize="16dip" />
|
|
|
|
|
2014-11-30 22:18:27 +03:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:weightSum="1">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/upload_local_path"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight=".5"
|
|
|
|
android:textColor="@color/list_item_lastmod_and_filesize_text"
|
|
|
|
android:textSize="12dip"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/upload_file_size"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="right"
|
|
|
|
android:textColor="@color/list_item_lastmod_and_filesize_text"
|
|
|
|
android:layout_weight=".5"
|
|
|
|
android:textSize="12dip"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2014-11-07 17:26:21 +03:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:weightSum="1">
|
|
|
|
|
|
|
|
<TextView
|
2014-11-14 19:02:58 +03:00
|
|
|
android:id="@+id/upload_status"
|
2014-11-07 17:26:21 +03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight=".5"
|
|
|
|
android:textColor="@color/list_item_lastmod_and_filesize_text"
|
|
|
|
android:textSize="12dip"/>
|
|
|
|
|
|
|
|
<TextView
|
2014-11-30 22:18:27 +03:00
|
|
|
android:id="@+id/upload_date"
|
2014-11-07 17:26:21 +03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="right"
|
|
|
|
android:textColor="@color/list_item_lastmod_and_filesize_text"
|
|
|
|
android:layout_weight=".5"
|
|
|
|
android:textSize="12dip"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2014-12-12 12:59:44 +03:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:focusable="false"
|
|
|
|
android:focusableInTouchMode="false"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/upload_right_button"
|
|
|
|
android:background ="@drawable/btn_small_round"
|
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:focusable="false"
|
|
|
|
android:focusableInTouchMode="false"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
|
2014-11-07 17:26:21 +03:00
|
|
|
</LinearLayout>
|