mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-25 05:57:59 +01:00
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<?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">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/exclude_folders_wrapper"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/excluded_folders_holder"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"/>
|
|
|
|
<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"/>
|
|
</RelativeLayout>
|
|
</ScrollView>
|