63 lines
2.6 KiB
XML
63 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/fragment_wrapper"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<org.fossify.commons.views.MyTextView
|
|
android:id="@+id/fragment_placeholder"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:alpha="0.8"
|
|
android:gravity="center"
|
|
android:paddingStart="@dimen/activity_margin"
|
|
android:paddingTop="@dimen/activity_margin"
|
|
android:paddingEnd="@dimen/activity_margin"
|
|
android:text="@string/no_contacts_found"
|
|
android:textSize="@dimen/bigger_text_size"
|
|
android:textStyle="italic"
|
|
android:visibility="gone" />
|
|
|
|
<org.fossify.commons.views.MyTextView
|
|
android:id="@+id/fragment_placeholder_2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/fragment_placeholder"
|
|
android:layout_centerHorizontal="true"
|
|
android:background="@drawable/ripple_all_corners"
|
|
android:gravity="center"
|
|
android:padding="@dimen/activity_margin"
|
|
android:text="@string/change_filter"
|
|
android:textSize="@dimen/bigger_text_size"
|
|
android:visibility="gone" />
|
|
|
|
<com.qtalk.recyclerviewfastscroller.RecyclerViewFastScroller
|
|
android:id="@+id/fragment_fastscroller"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<org.fossify.commons.views.MyRecyclerView
|
|
android:id="@+id/fragment_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
android:layoutAnimation="@anim/layout_animation"
|
|
android:scrollbars="none"
|
|
app:layoutManager="org.fossify.commons.views.MyLinearLayoutManager" />
|
|
|
|
</com.qtalk.recyclerviewfastscroller.RecyclerViewFastScroller>
|
|
</RelativeLayout>
|
|
|
|
<org.fossify.commons.views.MyFloatingActionButton
|
|
android:id="@+id/fragment_fab"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|end"
|
|
android:layout_margin="@dimen/activity_margin"
|
|
android:src="@drawable/ic_plus_vector" />
|
|
|
|
</merge>
|