2017-02-26 19:44:25 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/excluded_folders_scrollview"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2017-03-18 10:22:52 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/exclude_folders_wrapper"
|
2017-02-26 19:44:25 +01:00
|
|
|
android:layout_width="match_parent"
|
2017-03-18 10:22:52 +01:00
|
|
|
android:layout_height="wrap_content">
|
2017-02-26 19:44:25 +01:00
|
|
|
|
2017-03-18 10:22:52 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/excluded_folders_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"/>
|
2017-03-18 10:41:20 +01:00
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MyTextView
|
|
|
|
android:id="@+id/excluded_folders_placeholder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:paddingLeft="@dimen/big_margin"
|
|
|
|
android:paddingRight="@dimen/big_margin"
|
|
|
|
android:paddingTop="@dimen/activity_margin"
|
|
|
|
android:text="@string/excluded_activity_placeholder"
|
|
|
|
android:visibility="gone"/>
|
2017-03-18 10:22:52 +01:00
|
|
|
</RelativeLayout>
|
2017-02-26 19:44:25 +01:00
|
|
|
</ScrollView>
|