2017-02-26 20:38:18 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-03-17 23:12:23 +01:00
|
|
|
android:id="@+id/managed_folder_holder"
|
2017-02-26 20:38:18 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MyTextView
|
2017-03-17 23:12:23 +01:00
|
|
|
android:id="@+id/managed_folder_title"
|
2017-02-26 21:10:52 +01:00
|
|
|
android:layout_width="match_parent"
|
2017-02-26 20:38:18 +01:00
|
|
|
android:layout_height="wrap_content"
|
2017-02-26 21:10:52 +01:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginLeft="@dimen/medium_margin"
|
|
|
|
android:layout_marginRight="@dimen/medium_margin"
|
2017-03-17 23:12:23 +01:00
|
|
|
android:layout_toLeftOf="@+id/managed_folders_icon"
|
|
|
|
android:layout_toStartOf="@+id/managed_folders_icon"/>
|
2017-02-26 21:10:52 +01:00
|
|
|
|
2017-03-18 18:34:46 +01:00
|
|
|
<ImageView
|
2017-03-17 23:12:23 +01:00
|
|
|
android:id="@+id/managed_folders_icon"
|
2017-02-26 21:10:52 +01:00
|
|
|
style="@style/MyBorderlessBackgroundStyle"
|
|
|
|
android:layout_width="@dimen/exclude_folder_img_size"
|
|
|
|
android:layout_height="@dimen/exclude_folder_img_size"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:padding="@dimen/medium_margin"
|
|
|
|
android:src="@drawable/ic_cross"/>
|
2017-02-26 20:38:18 +01:00
|
|
|
|
|
|
|
</RelativeLayout>
|