2020-05-06 01:43:04 +00:00
|
|
|
<FrameLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-04-15 02:52:23 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-05-06 01:43:04 +00:00
|
|
|
android:layout_height="match_parent">
|
2015-11-03 01:40:41 +00:00
|
|
|
|
2020-04-15 02:52:23 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/emptyStateContainer"
|
|
|
|
android:layout_width="match_parent"
|
2015-11-03 01:40:41 +00:00
|
|
|
android:layout_height="match_parent"
|
2020-05-06 01:43:04 +00:00
|
|
|
android:gravity="center"
|
2020-04-15 02:52:23 +00:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="You don't have any contacts yet"
|
|
|
|
android:textColor="@color/text"
|
|
|
|
android:textSize="@dimen/medium_font_size" />
|
2020-05-06 01:43:04 +00:00
|
|
|
|
2020-04-15 02:52:23 +00:00
|
|
|
</LinearLayout>
|
2017-11-25 06:00:30 +00:00
|
|
|
|
2020-04-15 02:52:23 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/mainContentContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
2020-05-06 01:43:04 +00:00
|
|
|
android:id="@+id/swipeRefreshLayout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2017-11-25 06:00:30 +00:00
|
|
|
|
2020-04-15 02:52:23 +00:00
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:scrollbars="vertical" />
|
2017-11-25 06:00:30 +00:00
|
|
|
|
2020-05-06 01:43:04 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/loadingTextView"
|
2020-04-15 02:52:23 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-05-06 01:43:04 +00:00
|
|
|
android:gravity="center"
|
|
|
|
android:textColor="@color/text"
|
2020-04-15 02:52:23 +00:00
|
|
|
android:text="@string/contact_selection_group_activity__finding_contacts"
|
2020-05-06 01:43:04 +00:00
|
|
|
android:textSize="@dimen/large_font_size" />
|
2017-11-25 06:00:30 +00:00
|
|
|
|
2020-04-15 02:52:23 +00:00
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
2017-11-25 06:00:30 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2015-11-03 01:40:41 +00:00
|
|
|
</FrameLayout>
|