mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 21:55:48 +03:00
1183e51c19
# Conflicts: # res/drawable-hdpi/ic_checkbox_marked.png # res/drawable-mdpi/ic_checkbox_marked.png # res/drawable-xhdpi/ic_checkbox_marked.png # res/drawable-xxhdpi/ic_checkbox_marked.png # res/layout/grid_image.xml # res/values/strings.xml # src/com/owncloud/android/notifications/NotificationBuilderWithProgressBar.java # src/com/owncloud/android/ui/activity/FileDisplayActivity.java # src/com/owncloud/android/ui/adapter/FileListListAdapter.java # src/com/owncloud/android/ui/dialog/RemoveFileDialogFragment.java # src/com/owncloud/android/ui/fragment/OCFileListFragment.java
160 lines
6.4 KiB
XML
160 lines
6.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
ownCloud Android client application
|
|
|
|
Copyright (C) 2012 Bartek Przybylski
|
|
Copyright (C) 2015 ownCloud Inc.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License version 2,
|
|
as published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/ListItemLayout"
|
|
android:layout_width="match_parent"
|
|
android:background="@drawable/list_selector"
|
|
android:orientation="vertical"
|
|
android:layout_height="@dimen/standard_list_item_size">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<FrameLayout
|
|
android:layout_width="60dp"
|
|
android:layout_height="@dimen/standard_list_item_size"
|
|
android:paddingLeft="12dp"
|
|
android:paddingBottom="@dimen/standard_padding"
|
|
android:paddingTop="@dimen/standard_padding"
|
|
android:paddingRight="4dp"
|
|
android:focusable="false"
|
|
android:focusableInTouchMode="false">
|
|
|
|
<ImageView
|
|
android:id="@+id/localFileIndicator"
|
|
android:layout_width="@dimen/file_icon_size"
|
|
android:layout_height="@dimen/file_icon_size"
|
|
android:layout_gravity="top|right"
|
|
android:layout_marginRight="4dp"
|
|
android:src="@drawable/ic_synced" />
|
|
|
|
<ImageView
|
|
android:id="@+id/thumbnail"
|
|
android:layout_width="@dimen/file_icon_size"
|
|
android:layout_height="@dimen/file_icon_size"
|
|
android:layout_gravity="left|center_vertical"
|
|
android:src="@drawable/ic_menu_archive" />
|
|
|
|
<ImageView
|
|
android:id="@+id/favoriteIcon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|right"
|
|
android:layout_marginRight="4dp"
|
|
android:src="@drawable/ic_available_offline" />
|
|
</FrameLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:gravity="top"
|
|
android:paddingTop="@dimen/standard_padding"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/Filename"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="0dp"
|
|
android:layout_marginRight="4dp"
|
|
android:ellipsize="middle"
|
|
android:singleLine="true"
|
|
android:text="TextView"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="@dimen/two_line_primary_text_size" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="0dp"
|
|
android:layout_marginRight="4dp"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/file_size"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Size MB"
|
|
android:textColor="@color/list_item_lastmod_and_filesize_text"
|
|
android:textSize="@dimen/two_line_secondary_text_size"/>
|
|
|
|
<TextView
|
|
android:id="@+id/file_separator"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="right"
|
|
android:text=", "
|
|
android:textColor="@color/list_item_lastmod_and_filesize_text"
|
|
android:textSize="@dimen/two_line_secondary_text_size"/>
|
|
|
|
<TextView
|
|
android:id="@+id/last_mod"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="right"
|
|
android:text="Mod Date"
|
|
android:textColor="@color/list_item_lastmod_and_filesize_text"
|
|
android:textSize="@dimen/two_line_secondary_text_size"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:paddingRight="@dimen/standard_padding">
|
|
|
|
<ImageView
|
|
android:id="@+id/sharedIcon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginTop="4dp"
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_marginBottom="4dp"
|
|
android:layout_marginRight="4dp"
|
|
android:src="@drawable/shared_via_link" />
|
|
|
|
<ImageView
|
|
android:id="@+id/custom_checkbox"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="4dp"
|
|
|
|
android:src="@drawable/ic_checkbox_blank_outline"
|
|
android:layout_toRightOf="@id/sharedIcon"/>
|
|
</RelativeLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@color/list_divider_background"></View>
|
|
|
|
</LinearLayout>
|