summaryrefslogtreecommitdiff
path: root/res/layout/main.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-09-08 15:28:38 +0400
committerAndrew Dolgov <[email protected]>2011-09-08 15:28:38 +0400
commita14e9cd14e3d9490a6c4680e54bcd7d691bf548b (patch)
treefc0b60387557aa0295b2b9927d32092d501a9336 /res/layout/main.xml
parenta04f7480142a787e22fb4e152aae566bf0c43f29 (diff)
implement fetching of feeds
Diffstat (limited to 'res/layout/main.xml')
-rw-r--r--res/layout/main.xml28
1 files changed, 21 insertions, 7 deletions
diff --git a/res/layout/main.xml b/res/layout/main.xml
index 4361cfe8..c91f2a76 100644
--- a/res/layout/main.xml
+++ b/res/layout/main.xml
@@ -1,7 +1,21 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
-</LinearLayout>
+
+ <LinearLayout android:id="@+id/linearLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal">
+
+ <LinearLayout android:layout_weight="1.5" android:layout_height="match_parent" android:id="@+id/linearLayout4" android:layout_width="match_parent">
+
+ <LinearLayout android:layout_height="match_parent" android:id="@+id/feeds_container" android:layout_width="match_parent">
+ </LinearLayout>
+
+ <ImageView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:background="?feedlistDivider"
+ android:paddingLeft="2dip" android:paddingRight="2dip"
+ android:layout_width="wrap_content" android:layout_height="match_parent"></ImageView>
+
+ </LinearLayout>
+
+ <LinearLayout android:layout_weight="0.5" android:layout_height="match_parent" android:id="@+id/headlines_container" android:layout_width="match_parent">
+ </LinearLayout>
+
+
+ </LinearLayout>