diff options
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/activity_filter.xml | 13 | ||||
-rw-r--r-- | app/src/main/res/layout/item_feeditem.xml | 19 | ||||
-rw-r--r-- | app/src/main/res/menu/menu_filter.xml | 6 | ||||
-rw-r--r-- | app/src/main/res/values/strings.xml | 3 |
4 files changed, 41 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_filter.xml b/app/src/main/res/layout/activity_filter.xml new file mode 100644 index 0000000..b144d08 --- /dev/null +++ b/app/src/main/res/layout/activity_filter.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.FilterActivity"> + + <ListView + android:id="@+id/filter_items_list" + android:layout_width="match_parent" + android:layout_height="match_parent"/> + +</RelativeLayout> diff --git a/app/src/main/res/layout/item_feeditem.xml b/app/src/main/res/layout/item_feeditem.xml new file mode 100644 index 0000000..9f4c553 --- /dev/null +++ b/app/src/main/res/layout/item_feeditem.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/feeditem_title" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:textSize="@dimen/font_size_normal"/> + + <TextView android:id="@+id/feeditem_summary" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:textSize="@dimen/font_size_small"/> + +</LinearLayout>
\ No newline at end of file diff --git a/app/src/main/res/menu/menu_filter.xml b/app/src/main/res/menu/menu_filter.xml new file mode 100644 index 0000000..aaf1ca1 --- /dev/null +++ b/app/src/main/res/menu/menu_filter.xml @@ -0,0 +1,6 @@ +<menu xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" + xmlns:tools="http://schemas.android.com/tools" tools:context="org.rssin.android.FilterActivity"> + <item android:id="@+id/action_settings" android:title="@string/action_settings" + android:orderInCategory="100" app:showAsAction="never" /> +</menu> diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 9b5ffb4..3c6a364 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -26,4 +26,7 @@ <string name="error_delete_filter">Couldn\'t delete filter</string> <string name="error_invalid_url">Invalid URL</string> + <string name="title_activity_filter">FilterActivity</string> + + <string name="hello_world">Hello world!</string> </resources> |