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 35 lines 1.4 kB view raw
1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout 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="fill_parent" 7 android:layout_height="fill_parent" 8 android:background="@color/signal_background_primary" 9 android:orientation="vertical"> 10 11 <EditText 12 android:id="@+id/country_search" 13 android:layout_width="fill_parent" 14 android:layout_height="wrap_content" 15 android:drawableStart="@drawable/symbol_search_24" 16 android:hint="@string/country_selection_fragment__search" 17 app:drawableTint="@color/signal_icon_tint_primary" /> 18 19 <ListView 20 android:id="@android:id/list" 21 android:layout_width="fill_parent" 22 android:layout_height="fill_parent" 23 android:choiceMode="singleChoice" 24 android:divider="@color/signal_divider_minor" 25 android:dividerHeight="1dp" /> 26 27 <TextView 28 android:id="@android:id/empty" 29 android:layout_width="fill_parent" 30 android:layout_height="fill_parent" 31 android:gravity="center" 32 android:text="@string/country_selection_fragment__loading_countries" 33 android:textAppearance="?android:attr/textAppearanceLarge" /> 34 35</LinearLayout>