2020-08-30 06:47:04 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:animateLayoutChanges="true"
|
|
|
|
android:background="?android:attr/selectableItemBackground"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
|
|
|
android:orientation="vertical"
|
2020-11-09 10:48:38 +00:00
|
|
|
android:paddingEnd="?android:attr/scrollbarSize">
|
2020-08-30 06:47:04 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:baselineAligned="false"
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-11-09 10:48:38 +00:00
|
|
|
android:layout_marginStart="15dp"
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
android:layout_marginEnd="6dp"
|
|
|
|
android:layout_marginBottom="6dp"
|
2020-08-30 06:47:04 +00:00
|
|
|
android:layout_weight="1">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@android:id/title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:fadingEdge="horizontal"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceListItem"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
tools:text="Test" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@android:id/summary"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@android:id/title"
|
|
|
|
android:layout_alignStart="@android:id/title"
|
|
|
|
android:maxLines="4"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceListItemSmall"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
tools:text="summary" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<com.google.android.material.switchmaterial.SwitchMaterial
|
|
|
|
android:id="@+id/cbSaveTo"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:contentDescription="@string/save_to_folder"
|
2020-11-09 10:48:38 +00:00
|
|
|
android:paddingEnd="10dp" />
|
2020-08-30 06:47:04 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/button_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-11-09 10:48:38 +00:00
|
|
|
android:layout_marginStart="15dp"
|
2020-08-30 06:47:04 +00:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal"
|
2020-09-20 18:52:34 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
2020-08-30 06:47:04 +00:00
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
|
|
android:id="@+id/btnSaveTo"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/select_folder" />
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
android:id="@+id/custom_path"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceListItemSmall"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
tools:text="test path" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|