nextcloud-android/res/layout/edit_share_layout.xml

74 lines
No EOL
2.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<CheckBox
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/canShareCheckBox"
android:text="@string/share_privilege_can_share"
/>
<CheckBox
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/canEditCheckBox"
android:text="@string/share_privilege_can_edit"
/>
<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"
/>
<!-- ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/unshareButton"
android:src="@drawable/ic_cancel"
android:layout_gravity="center_horizontal"
/-->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/unshareButton"
style="@style/ownCloud.Button"
android:drawableRight="@drawable/ic_cancel"
android:drawableEnd="@drawable/ic_cancel"
android:text="@string/edit_share_unshare"
android:layout_gravity="center_horizontal"
/>
<android.support.v7.widget.AppCompatButton
android:id="@+id/doneButton"
style="@style/ownCloud.Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="@string/edit_share_done"
android:contentDescription="@string/edit_share_done"
/>
</LinearLayout>