mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 21:55:48 +03:00
147 lines
5.3 KiB
XML
147 lines
5.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
ownCloud Android client application
|
|
|
|
Copyright (C) 2012 Bartek Przybylski
|
|
Copyright (C) 2012-2013 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="fill_parent"
|
|
android:background="@drawable/list_selector"
|
|
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/imageView2"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="22dp"
|
|
android:src="@drawable/local_file_indicator" />
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView1"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="9dp"
|
|
android:src="@drawable/ic_menu_archive" />
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView3"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|right"
|
|
android:layout_marginBottom="10dp"
|
|
android:layout_marginRight="2dp"
|
|
android:src="@drawable/ic_favorite" />
|
|
</FrameLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical"
|
|
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="4dp"
|
|
android:layout_marginRight="4dp"
|
|
android:ellipsize="middle"
|
|
android:singleLine="true"
|
|
android:text="TextView"
|
|
android:textColor="#303030"
|
|
android:textSize="16dip" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_marginRight="4dp"
|
|
android:weightSum="1">
|
|
|
|
<TextView
|
|
android:id="@+id/last_mod"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="TextView"
|
|
android:layout_weight=".5"
|
|
android:textColor="@color/list_item_lastmod_and_filesize_text"
|
|
android:textSize="12dip"/>
|
|
|
|
<TextView
|
|
android:id="@+id/file_size"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="right"
|
|
android:text="TextView"
|
|
android:textColor="@color/list_item_lastmod_and_filesize_text"
|
|
android:layout_weight=".5"
|
|
android:textSize="12dip"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="25dp"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/sharedIcon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_marginBottom="4dp"
|
|
android:layout_marginRight="4dp"
|
|
android:src="@drawable/sharedlink" />
|
|
|
|
<ImageView
|
|
android:id="@+id/sharedWithMeIcon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_marginRight="4dp"
|
|
android:layout_marginTop="4dp"
|
|
android:src="@drawable/shared_with_me" />
|
|
|
|
</LinearLayout>
|
|
|
|
<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:layout_marginRight="4dp"
|
|
android:gravity=""
|
|
android:src="@android:drawable/checkbox_off_background" />
|
|
|
|
</LinearLayout>
|