diff options
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/activity_feeds.xml | 13 | ||||
-rw-r--r-- | app/src/main/res/layout/activity_filters.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/item_feed.xml | 19 |
3 files changed, 33 insertions, 1 deletions
diff --git a/app/src/main/res/layout/activity_feeds.xml b/app/src/main/res/layout/activity_feeds.xml new file mode 100644 index 0000000..f71eb1e --- /dev/null +++ b/app/src/main/res/layout/activity_feeds.xml @@ -0,0 +1,13 @@ +<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" + tools:context="org.rssin.android.FeedsActivity"> + + <ListView + android:id="@+id/feeds_list" + android:layout_width="match_parent" + android:layout_height="match_parent"/> + +</RelativeLayout> diff --git a/app/src/main/res/layout/activity_filters.xml b/app/src/main/res/layout/activity_filters.xml index 700e939..c948344 100644 --- a/app/src/main/res/layout/activity_filters.xml +++ b/app/src/main/res/layout/activity_filters.xml @@ -12,6 +12,6 @@ <ListView android:id="@+id/filters_list" android:layout_width="match_parent" - android:layout_height="match_parent"></ListView> + android:layout_height="match_parent"/> </RelativeLayout> diff --git a/app/src/main/res/layout/item_feed.xml b/app/src/main/res/layout/item_feed.xml new file mode 100644 index 0000000..8c78f62 --- /dev/null +++ b/app/src/main/res/layout/item_feed.xml @@ -0,0 +1,19 @@ +<?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" + android:padding="10dp"> + + <TextView android:id="@+id/feed_item_title" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:textSize="@dimen/font_size_large"/> + + <TextView android:id="@+id/feed_item_url" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:textSize="@dimen/font_size_small"/> + +</LinearLayout>
\ No newline at end of file |