Welcome to mirror list, hosted at ThFree Co, Russian Federation.

item_access_control.xml « layout « res « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1edd8c21ad3401398c969ab11c1b32734d8187b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:paddingVertical="@dimen/spacer_2x">

    <ImageView
        android:id="@+id/avatar"
        android:layout_width="@dimen/avatar_size"
        android:layout_height="match_parent"
        android:layout_marginEnd="@dimen/spacer_2x"
        android:contentDescription="@null"
        app:srcCompat="@drawable/ic_person_grey600_24dp"
        tools:srcCompat="@tools:sample/avatars" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="@dimen/spacer_1x"
            android:orientation="horizontal">

            <TextView
                android:id="@+id/username"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_weight="1"
                android:textAppearance="?attr/textAppearanceListItem"
                tools:drawableEnd="@drawable/ic_sync_blue_24dp"
                tools:text="@tools:sample/full_names" />

            <androidx.appcompat.widget.AppCompatImageButton
                android:id="@+id/delete"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:background="?android:selectableItemBackground"
                android:padding="0dp"
                app:srcCompat="@drawable/ic_delete_black_24dp" />
        </LinearLayout>

        <com.google.android.flexbox.FlexboxLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            app:flexWrap="wrap"
            app:justifyContent="space_between">

            <androidx.appcompat.widget.SwitchCompat
                android:id="@+id/permission_edit"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:checked="true"
                android:text="@string/edit"
                app:switchPadding="@dimen/spacer_1x" />

            <androidx.appcompat.widget.SwitchCompat
                android:id="@+id/permission_share"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/simple_share"
                app:switchPadding="@dimen/spacer_1x" />

            <androidx.appcompat.widget.SwitchCompat
                android:id="@+id/permission_manage"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:checked="true"
                android:text="@string/simple_manage"
                app:switchPadding="@dimen/spacer_1x" />

        </com.google.android.flexbox.FlexboxLayout>
    </LinearLayout>

</LinearLayout>