Show the layout to hsare with user in phone and tablet
[pub/Android/ownCloud.git] / res / layout / share_file_dialog.xml
diff --git a/res/layout/share_file_dialog.xml b/res/layout/share_file_dialog.xml
new file mode 100644 (file)
index 0000000..7998734
--- /dev/null
@@ -0,0 +1,110 @@
+<?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/>.
+-->
+
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:tools="http://schemas.android.com/tools"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    tools:context="com.owncloud.android.ui.dialog.ShareFileDialogFragment">
+
+    <ScrollView
+        android:id="@+id/shareScrollView"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:fillViewport="true">
+
+        <LinearLayout
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:orientation="vertical"
+            android:layout_marginBottom="8dp">
+
+            <RelativeLayout
+                android:id="@+id/shareHeaderContainer"
+                android:layout_width="match_parent"
+                android:layout_height="wrap_content"
+                android:layout_margin="8dp">
+
+                <ImageView
+                    android:id="@+id/shareFileIcon"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:src="@drawable/file"
+                    android:layout_margin="8dp"
+                    android:maxHeight="96dp"
+                    android:maxWidth="96dp"/>
+
+                <TextView
+                    android:id="@+id/shareFileName"
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:text="@string/placeholder_filename"
+                    android:textAppearance="?android:attr/textAppearanceLarge"
+                    android:layout_marginTop="39dp"
+                    android:layout_alignParentTop="true"
+                    android:layout_toRightOf="@+id/shareFileIcon"
+                    android:layout_toEndOf="@+id/shareFileIcon" />
+
+                <TextView
+                    android:layout_width="wrap_content"
+                    android:layout_height="wrap_content"
+                    android:textAppearance="?android:attr/textAppearanceMedium"
+                    android:text="@string/placeholder_filesize"
+                    android:id="@+id/shareFileSize"
+                    android:layout_below="@+id/shareFileName"
+                    android:layout_toRightOf="@+id/shareFileIcon"
+                    android:layout_toEndOf="@+id/shareFileIcon"
+                    android:layout_marginTop="12dp" />
+
+            </RelativeLayout>
+
+            <TextView
+                android:layout_width="match_parent"
+                android:layout_height="wrap_content"
+                android:textAppearance="?android:attr/textAppearanceMedium"
+                android:text="@string/share_with_user_section_title"
+                android:id="@+id/shareWithUsersSectionTitle"
+                android:layout_gravity="left"
+                android:padding="8dp"
+                android:background="@color/actionbar_start_color"
+                android:textColor="@color/white"/>
+
+            <ListView
+                android:layout_width="match_parent"
+                android:layout_height="wrap_content"
+                android:id="@+id/shareUsersList"
+                android:visibility="gone" />
+
+            <TextView
+                android:layout_width="match_parent"
+                android:layout_height="wrap_content"
+                android:id="@+id/shareNoUsers"
+                android:text="@string/share_no_users"
+                android:padding="12dp" />
+
+            <android.support.v7.widget.AppCompatButton
+                android:id="@+id/addUserButton"
+                style="@style/ownCloud.Button"
+                android:layout_width="match_parent"
+                android:layout_height="wrap_content"
+                android:layout_gravity="center_horizontal"
+                android:text="@string/share_add_user_or_group"
+                android:contentDescription="shareAddUserButton"/>
+        </LinearLayout>
+    </ScrollView>
+</FrameLayout>