123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?xml version="1.0" encoding="utf-8"?>
- <ScrollView 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.fragment.EditShareFragment"
- android:id="@+id/shareScroll">
- <LinearLayout android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:id="@+id/editShareTitle"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/share_with_edit_title"
- android:textAppearance="@style/TextAppearance.AppCompat.Title"
- android:padding="@dimen/standard_padding"
- android:singleLine="true"
- android:ellipsize="middle"
- />
- <View
- android:id="@+id/share_header_divider"
- android:layout_width="match_parent"
- android:layout_height="2dp"
- android:background="@color/owncloud_blue"
- />
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/standard_margin"
- android:layout_marginRight="@dimen/standard_margin"
- android:layout_marginBottom="@dimen/standard_margin">
- <android.support.v7.widget.SwitchCompat
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/share_privilege_can_edit"
- android:id="@+id/canEditSwitch"
- android:layout_gravity="start"
- android:layout_marginTop="@dimen/standard_half_margin"
- android:textColor="@color/color_accent"
- android:paddingLeft="0dp"
- style="?android:attr/listSeparatorTextViewStyle"
- />
- <CheckBox
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/canEditCreateCheckBox"
- android:text="@string/share_privilege_can_edit_create"
- android:visibility="gone"
- />
- <CheckBox
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/canEditChangeCheckBox"
- android:text="@string/share_privilege_can_edit_change"
- android:visibility="gone"
- />
- <CheckBox
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:id="@+id/canEditDeleteCheckBox"
- android:text="@string/share_privilege_can_edit_delete"
- android:visibility="gone"
- />
- <android.support.v7.widget.SwitchCompat
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/share_privilege_can_share"
- android:id="@+id/canShareSwitch"
- android:layout_gravity="start"
- android:layout_marginTop="@dimen/standard_half_margin"
- android:textColor="@color/color_accent"
- android:paddingLeft="0dp"
- style="?android:attr/listSeparatorTextViewStyle"
- />
- </LinearLayout>
- </LinearLayout>
- </ScrollView>
|