That fuck shit the fascists are using
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 83 lines 3.8 kB view raw
1<?xml version="1.0" encoding="utf-8"?> 2<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools" 4 tools:viewBindingIgnore="true" 5 xmlns:app="http://schemas.android.com/apk/res-auto" 6 android:layout_width="match_parent" 7 android:layout_height="match_parent"> 8 9 <org.tm.archive.util.views.DarkOverflowToolbar 10 android:id="@+id/toolbar" 11 android:layout_width="match_parent" 12 android:layout_height="56dp" 13 android:theme="?attr/settingsToolbarStyle" 14 app:layout_constraintEnd_toEndOf="parent" 15 app:layout_constraintStart_toStartOf="parent" 16 app:layout_constraintTop_toTopOf="parent" 17 app:navigationContentDescription="@string/DSLSettingsToolbar__navigate_up" 18 app:navigationIcon="@drawable/ic_arrow_left_24" 19 app:titleTextAppearance="@style/Signal.Text.Title" /> 20 21 <TextView 22 android:id="@+id/edit_notification_profile_schedule_title" 23 android:layout_width="match_parent" 24 android:layout_height="wrap_content" 25 android:layout_marginStart="24dp" 26 android:layout_marginTop="20dp" 27 android:layout_marginEnd="24dp" 28 android:gravity="center" 29 android:text="@string/AddAllowedMembers__allowed_notifications" 30 android:textAppearance="@style/TextAppearance.Signal.Title1" 31 app:layout_constraintEnd_toEndOf="parent" 32 app:layout_constraintStart_toStartOf="parent" 33 app:layout_constraintTop_toBottomOf="@id/toolbar" /> 34 35 <TextView 36 android:id="@+id/edit_notification_profile_schedule_description" 37 android:layout_width="match_parent" 38 android:layout_height="wrap_content" 39 android:layout_marginTop="12dp" 40 android:layout_marginStart="24dp" 41 android:layout_marginEnd="24dp" 42 android:gravity="center" 43 android:text="@string/AddAllowedMembers__add_people_and_groups_you_want_notifications_and_calls_from_when_this_profile_is_on" 44 android:textAppearance="@style/TextAppearance.Signal.Body1" 45 app:layout_constraintEnd_toEndOf="parent" 46 app:layout_constraintStart_toStartOf="parent" 47 app:layout_constraintTop_toBottomOf="@+id/edit_notification_profile_schedule_title" /> 48 49 <androidx.recyclerview.widget.RecyclerView 50 android:id="@+id/recycler" 51 android:layout_width="match_parent" 52 android:layout_height="0dp" 53 android:layout_marginTop="24dp" 54 android:clipChildren="false" 55 android:clipToPadding="false" 56 android:paddingBottom="60dp" 57 app:layout_constraintBottom_toBottomOf="parent" 58 app:layout_constraintTop_toBottomOf="@id/edit_notification_profile_schedule_description" /> 59 60 <View 61 android:id="@+id/toolbar_shadow" 62 android:layout_width="match_parent" 63 android:layout_height="5dp" 64 android:alpha="0" 65 android:background="@drawable/toolbar_shadow" 66 app:layout_constraintEnd_toEndOf="parent" 67 app:layout_constraintStart_toStartOf="parent" 68 app:layout_constraintTop_toTopOf="@id/recycler" /> 69 70 <org.tm.archive.util.views.CircularProgressMaterialButton 71 android:id="@+id/add_allowed_members_profile_next" 72 android:layout_width="wrap_content" 73 android:layout_height="wrap_content" 74 android:layout_gravity="bottom|end" 75 android:layout_marginEnd="16dp" 76 android:layout_marginBottom="16dp" 77 android:paddingStart="16dp" 78 android:paddingEnd="16dp" 79 app:circularProgressMaterialButton__label="@string/EditNotificationProfileFragment__next" 80 app:layout_constraintBottom_toBottomOf="parent" 81 app:layout_constraintEnd_toEndOf="parent" /> 82 83</androidx.constraintlayout.widget.ConstraintLayout>