summaryrefslogtreecommitdiff
path: root/res/layout/feeditem_dialog.xml
blob: 7d05603e8dd1e9d06eebb4d68d383c0d3b77aa37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?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">

    <TextView
        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"/>

    <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"/>

    <LinearLayout
        android:id="@+id/header"
        android:orientation="horizontal"
        android:layout_below="@id/title_divider"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <ImageButton
            android:layout_width="0dp"
            android:layout_height="48dp"
            android:layout_weight="1"
            android:id="@+id/butAction1"
            android:background="?attr/borderless_button"
            tools:ignore="ContentDescription"/>

        <ImageButton
            android:layout_width="0dp"
            android:layout_height="48dp"
            android:layout_weight="1"
            android:id="@+id/butAction2"
            android:background="?attr/borderless_button"
            tools:ignore="ContentDescription"/>

        <ImageButton
            android:layout_width="0dp"
            android:layout_height="48dp"
            android:layout_weight="1"
            android:id="@+id/butMoreActions"
            android:background="?attr/borderless_button"
            android:src="?attr/ic_action_overflow"
            android:contentDescription="@string/butAction_label"/>
    </LinearLayout>

    <View
        android:id="@+id/divider"
        android:layout_width="match_parent"
        android:layout_height="2dp"
        android:layout_below="@id/header"
        android:background="@color/bright_blue"/>

    <WebView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_below="@id/divider"
        android:layout_alignParentBottom="true"
        android:id="@+id/webview"/>

</RelativeLayout>