2018-01-16 20:48:52 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clickable="false"
|
|
|
|
android:paddingLeft="@dimen/video_item_search_padding"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:paddingTop="@dimen/video_item_search_padding"
|
|
|
|
android:paddingRight="@dimen/video_item_search_padding">
|
2018-01-16 20:48:52 +01:00
|
|
|
|
|
|
|
<EditText
|
2021-07-27 19:31:58 +02:00
|
|
|
android:id="@+id/dialogEditText"
|
2018-01-16 20:48:52 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-07-27 19:31:58 +02:00
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:layout_marginBottom="6dp"
|
2021-07-27 19:31:58 +02:00
|
|
|
android:maxLines="1" />
|
2020-10-09 20:24:02 +02:00
|
|
|
</RelativeLayout>
|