mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 21:55:48 +03:00
85 lines
No EOL
3.1 KiB
XML
85 lines
No EOL
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
ownCloud Android client application
|
|
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/>.
|
|
|
|
-->
|
|
<com.owncloud.android.ui.SquareLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/ListItemLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_horizontal"
|
|
android:background="@drawable/list_selector"
|
|
android:gravity="center"
|
|
android:orientation="vertical" >
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal" >
|
|
|
|
<ImageView
|
|
android:id="@+id/thumbnail"
|
|
android:layout_width="72dp"
|
|
android:layout_height="72dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:src="@drawable/ic_menu_archive" />
|
|
|
|
<ImageView
|
|
android:id="@+id/sharedIcon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="4dp"
|
|
android:layout_gravity="top|right"
|
|
android:src="@drawable/shared_via_link" />
|
|
|
|
<ImageView
|
|
android:id="@+id/localFileIndicator"
|
|
android:layout_width="@dimen/file_icon_size"
|
|
android:layout_height="@dimen/file_icon_size"
|
|
android:layout_gravity="bottom|right"
|
|
android:layout_marginTop="2dp"
|
|
android:layout_marginRight="2dp"
|
|
android:src="@drawable/local_file_indicator" />
|
|
|
|
<ImageView
|
|
android:id="@+id/favoriteIcon"
|
|
android:layout_width="15dp"
|
|
android:layout_height="15dp"
|
|
android:layout_gravity="bottom|right"
|
|
android:layout_marginBottom="2dp"
|
|
android:layout_marginRight="2dp"
|
|
android:src="@drawable/ic_favorite" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/Filename"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_marginRight="4dp"
|
|
android:ellipsize="middle"
|
|
android:gravity="center_horizontal"
|
|
android:singleLine="true"
|
|
android:text="TextView"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="16dip" />
|
|
|
|
</com.owncloud.android.ui.SquareLinearLayout> |