summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/feeditem_dialog.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/feeditem_dialog.xml')
-rw-r--r--app/src/main/res/layout/feeditem_dialog.xml45
1 files changed, 23 insertions, 22 deletions
diff --git a/app/src/main/res/layout/feeditem_dialog.xml b/app/src/main/res/layout/feeditem_dialog.xml
index 24abae762..5937480df 100644
--- a/app/src/main/res/layout/feeditem_dialog.xml
+++ b/app/src/main/res/layout/feeditem_dialog.xml
@@ -1,58 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
+ xmlns:tools="http://schemas.android.com/tools"
+ android:id="@+id/contentContainer"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
<TextView
+ android:id="@+id/txtvTitle"
+ style="@style/AntennaPod.Dialog.Title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_margin="16dp"
- android:id="@+id/txtvTitle"
android:layout_alignParentTop="true"
- style="@style/AntennaPod.Dialog.Title"
- android:maxLines="5"
- android:ellipsize="none"/>
+ android:layout_margin="16dp"
+ android:ellipsize="none"
+ android:maxLines="5" />
<View
android:id="@+id/title_divider"
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_below="@id/txtvTitle"
- android:background="@color/bright_blue"/>
+ android:background="@color/bright_blue" />
<LinearLayout
android:id="@+id/header"
- android:orientation="horizontal"
- android:layout_below="@id/title_divider"
android:layout_width="match_parent"
- android:layout_height="wrap_content">
+ android:layout_height="wrap_content"
+ android:layout_below="@id/title_divider"
+ android:orientation="horizontal">
<ImageButton
+ android:id="@+id/butAction1"
android:layout_width="0dp"
android:layout_height="48dp"
android:layout_weight="1"
- android:id="@+id/butAction1"
android:background="?attr/selectableItemBackground"
- tools:ignore="ContentDescription"/>
+ tools:ignore="ContentDescription" />
<ImageButton
+ android:id="@+id/butAction2"
android:layout_width="0dp"
android:layout_height="48dp"
android:layout_weight="1"
- android:id="@+id/butAction2"
android:background="?attr/selectableItemBackground"
- tools:ignore="ContentDescription"/>
+ tools:ignore="ContentDescription" />
<ImageButton
+ android:id="@+id/butMoreActions"
android:layout_width="0dp"
android:layout_height="48dp"
android:layout_weight="1"
- android:id="@+id/butMoreActions"
android:background="?attr/selectableItemBackground"
- android:src="?attr/ic_action_overflow"
- android:contentDescription="@string/butAction_label"/>
+ android:contentDescription="@string/butAction_label"
+ android:src="?attr/ic_action_overflow" />
</LinearLayout>
<View
@@ -60,13 +61,13 @@
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_below="@id/header"
- android:background="@color/bright_blue"/>
+ android:background="@color/bright_blue" />
<WebView
+ android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="0dp"
- android:layout_below="@id/divider"
android:layout_alignParentBottom="true"
- android:id="@+id/webview"/>
+ android:layout_below="@id/divider" />
</RelativeLayout> \ No newline at end of file