2017-02-26 19:44:25 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-11-16 22:05:44 +01:00
|
|
|
<RelativeLayout
|
2017-02-26 19:44:25 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-11-16 22:15:33 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:id="@+id/manage_folders_wrapper"
|
2017-02-26 19:44:25 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2017-11-16 22:05:44 +01:00
|
|
|
<com.simplemobiletools.commons.views.MyRecyclerView
|
2017-11-16 22:15:33 +01:00
|
|
|
android:id="@+id/manage_folders_list"
|
2017-02-26 19:44:25 +01:00
|
|
|
android:layout_width="match_parent"
|
2017-11-16 22:05:44 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
2017-12-29 20:40:22 +01:00
|
|
|
android:scrollbars="vertical"
|
2018-02-04 18:00:09 +01:00
|
|
|
app:layoutManager="com.simplemobiletools.commons.views.MyLinearLayoutManager"/>
|
2017-02-26 19:44:25 +01:00
|
|
|
|
2017-11-16 22:05:44 +01:00
|
|
|
<com.simplemobiletools.commons.views.MyTextView
|
2017-11-16 22:15:33 +01:00
|
|
|
android:id="@+id/manage_folders_placeholder"
|
2017-11-16 22:05:44 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:paddingLeft="@dimen/big_margin"
|
|
|
|
android:paddingTop="@dimen/activity_margin"
|
2018-11-18 21:53:49 +01:00
|
|
|
android:paddingRight="@dimen/big_margin"
|
2017-11-16 22:05:44 +01:00
|
|
|
android:text="@string/excluded_activity_placeholder"
|
|
|
|
android:visibility="gone"/>
|
2017-03-18 10:41:20 +01:00
|
|
|
|
2017-11-16 22:05:44 +01:00
|
|
|
</RelativeLayout>
|