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 60 lines 2.5 kB view raw
1<?xml version="1.0" encoding="utf-8"?> 2<merge xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 xmlns:tools="http://schemas.android.com/tools" 5 android:layout_width="match_parent" 6 android:layout_height="wrap_content" 7 android:clipChildren="false" 8 android:clipToPadding="false" 9 android:paddingBottom="10dp" 10 tools:parentTag="android.widget.FrameLayout" 11 tools:viewBindingIgnore="true"> 12 13 <LinearLayout 14 android:layout_width="match_parent" 15 android:layout_height="wrap_content" 16 android:clipChildren="false" 17 android:clipToPadding="false" 18 android:orientation="vertical"> 19 20 <ImageView 21 android:layout_width="match_parent" 22 android:layout_height="24dp" 23 android:src="@drawable/megaphone_onboarding_gradient" /> 24 25 <androidx.constraintlayout.widget.ConstraintLayout 26 android:layout_width="match_parent" 27 android:layout_height="wrap_content" 28 android:background="@color/signal_background_primary" 29 android:clipChildren="false" 30 android:clipToPadding="false" 31 android:paddingBottom="12dp"> 32 33 <TextView 34 android:id="@+id/onboarding_megaphone_title" 35 style="@style/TextAppearance.Signal.Title2.Bold" 36 android:layout_width="match_parent" 37 android:layout_height="wrap_content" 38 android:layout_marginStart="16dp" 39 android:layout_marginTop="4dp" 40 android:text="@string/Megaphones_get_started" 41 app:layout_constraintTop_toTopOf="parent" /> 42 43 <androidx.recyclerview.widget.RecyclerView 44 android:id="@+id/onboarding_megaphone_list" 45 android:layout_width="match_parent" 46 android:layout_height="wrap_content" 47 android:layout_marginStart="16dp" 48 android:layout_marginTop="10dp" 49 android:clipChildren="false" 50 android:clipToPadding="false" 51 android:orientation="horizontal" 52 app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" 53 app:layout_constraintTop_toBottomOf="@id/onboarding_megaphone_title" 54 tools:listitem="@layout/onboarding_megaphone_card" /> 55 56 </androidx.constraintlayout.widget.ConstraintLayout> 57 58 </LinearLayout> 59 60</merge>