diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2014-04-22 13:55:20 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2014-04-22 13:55:20 +0200 |
commit | 1fe2a8da456a3fbf3752c7a8ae218891b632d552 (patch) | |
tree | 6734ccb076b47bd8105d9fe8fea4c48bdfdfd198 /res/layout | |
parent | e68482e1b8646884cc7e7a749bd5a2954472b8cf (diff) | |
download | AntennaPod-1fe2a8da456a3fbf3752c7a8ae218891b632d552.zip |
Resolved dialog issues + fragment crashes
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/feeditem_dialog.xml | 19 |
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 |