2017-02-26 20:38:18 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-05-09 22:18:21 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-11-16 22:05:44 +01:00
|
|
|
android:id="@+id/manage_folder_holder"
|
2017-02-26 20:38:18 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-11-16 22:05:44 +01:00
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:foreground="@drawable/selector"
|
2022-05-09 22:18:21 +02:00
|
|
|
android:paddingStart="@dimen/activity_margin">
|
2017-02-26 20:38:18 +01:00
|
|
|
|
|
|
|
<com.simplemobiletools.commons.views.MyTextView
|
2017-11-16 22:05:44 +01:00
|
|
|
android:id="@+id/manage_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"
|
2022-05-09 22:18:21 +02:00
|
|
|
android:layout_marginTop="@dimen/medium_margin"
|
|
|
|
android:layout_toStartOf="@+id/overflow_menu_icon"
|
|
|
|
tools:text="/Internal/DCIM" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/overflow_menu_icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
|
|
android:padding="@dimen/activity_margin"
|
|
|
|
android:src="@drawable/ic_three_dots_vector" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/overflow_menu_anchor"
|
|
|
|
style="@style/OverflowMenuAnchorStyle"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_centerVertical="true" />
|
2017-02-26 20:38:18 +01:00
|
|
|
|
|
|
|
</RelativeLayout>
|