summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2014-04-22 13:55:20 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2014-04-22 13:55:20 +0200
commit1fe2a8da456a3fbf3752c7a8ae218891b632d552 (patch)
tree6734ccb076b47bd8105d9fe8fea4c48bdfdfd198 /res/layout
parente68482e1b8646884cc7e7a749bd5a2954472b8cf (diff)
downloadAntennaPod-1fe2a8da456a3fbf3752c7a8ae218891b632d552.zip
Resolved dialog issues + fragment crashes
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/feeditem_dialog.xml19
1 files changed, 11 insertions, 8 deletions
diff --git a/res/layout/feeditem_dialog.xml b/res/layout/feeditem_dialog.xml
index 3b7c02b72..4241ef9c8 100644
--- a/res/layout/feeditem_dialog.xml
+++ b/res/layout/feeditem_dialog.xml
@@ -1,14 +1,14 @@
<?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:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
+<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">
<LinearLayout
android:id="@+id/header"
android:orientation="horizontal"
+ android:layout_alignParentTop="true"
android:layout_width="match_parent"
android:layout_height="wrap_content">
@@ -39,14 +39,17 @@
</LinearLayout>
<View
+ android:id="@+id/divider"
android:layout_width="match_parent"
android:layout_height="3dp"
+ android:layout_below="@id/header"
android:background="@color/bright_blue"/>
<WebView
android:layout_width="match_parent"
- android:layout_height="wrap_content"
+ android:layout_height="0dp"
+ android:layout_below="@id/divider"
+ android:layout_alignParentBottom="true"
android:id="@+id/webview"/>
-
-</LinearLayout> \ No newline at end of file
+</RelativeLayout> \ No newline at end of file