Эх сурвалжийг харах

Create the layout to share with a user

masensio 9 жил өмнө
parent
commit
8e3d7bdc8f

+ 101 - 0
res/layout/share_layout.xml

@@ -0,0 +1,101 @@
+<?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/>.
+-->
+<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
+    android:id="@+id/shareScrollView"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:fillViewport="true"
+    style="Theme.owncloud">
+  <LinearLayout
+      android:layout_width="match_parent"
+      android:layout_height="wrap_content"
+      android:background="@color/background_material_light"
+      android:orientation="vertical">
+
+    <RelativeLayout
+        android:id="@+id/shareHeaderContainer"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_marginTop="8dp"
+        android:layout_marginBottom="8dp"
+        android:background="@color/background_color">
+
+      <ImageView
+          android:id="@+id/shareFileIcon"
+          android:layout_width="wrap_content"
+          android:layout_height="wrap_content"
+          android:src="@drawable/file" />
+
+      <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>

+ 4 - 0
res/values/strings.xml

@@ -367,4 +367,8 @@
     <string name="file_list__footer__files_and_folder">%1$d files, 1 folder</string>
     <string name="file_list__footer__files_and_folders">%1$d files, %2$d folders</string>
 
+    <string name="share_with_user_section_title">Share with Users and Groups</string>
+    <string name="share_no_users">No data shared with users yet</string>
+    <string name="share_add_user_or_group">Add User or Group</string>
+
 </resources>