2015-07-14 21:31:03 +00:00
|
|
|
|
2015-11-03 01:40:41 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-07-14 21:31:03 +00: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-03 01:40:41 +00:00
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/recycler_view"
|
2015-07-14 21:31:03 +00:00
|
|
|
android:layout_width="match_parent"
|
2016-09-07 19:26:34 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scrollbars="vertical" />
|
2015-07-14 21:31:03 +00: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-03 01:40:41 +00:00
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.RecyclerViewFastScroller
|
|
|
|
android:id="@+id/fast_scroller"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2015-11-23 18:46:01 +00:00
|
|
|
android:visibility="gone"
|
2015-11-26 18:04:27 +00:00
|
|
|
android:layout_gravity="end"/>
|
2015-11-03 01:40:41 +00:00
|
|
|
|
|
|
|
</FrameLayout>
|