2015-07-14 14:31:03 -07:00
|
|
|
|
2015-11-02 17:40:41 -08:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-07-14 14:31:03 -07:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
|
|
android:id="@+id/swipe_refresh"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2015-11-02 17:40:41 -08:00
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/recycler_view"
|
2015-07-14 14:31:03 -07:00
|
|
|
android:layout_width="match_parent"
|
2016-09-07 21:26:34 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scrollbars="vertical" />
|
2015-07-14 14:31:03 -07:00
|
|
|
|
|
|
|
<TextView android:id="@android:id/empty"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center|center_vertical"
|
|
|
|
android:layout_marginTop="15dp"
|
|
|
|
android:text="@string/contact_selection_group_activity__finding_contacts"
|
|
|
|
android:textSize="20sp" />
|
|
|
|
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
2015-11-02 17:40:41 -08:00
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.RecyclerViewFastScroller
|
|
|
|
android:id="@+id/fast_scroller"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2015-11-23 10:46:01 -08:00
|
|
|
android:visibility="gone"
|
2015-11-26 19:04:27 +01:00
|
|
|
android:layout_gravity="end"/>
|
2015-11-02 17:40:41 -08:00
|
|
|
|
|
|
|
</FrameLayout>
|