diff options
author | Size43 | 2015-06-04 14:54:35 +0200 |
---|---|---|
committer | Size43 | 2015-06-04 14:54:35 +0200 |
commit | 22d240bb367d369117605e040d0f17cf1077aafe (patch) | |
tree | 8d2fc5aeef7c1d0cb7b364fce15e4a7258caf1dd /app/src/main/res | |
parent | merge (diff) |
Added hamburger menu, working filters and unified inbox. Open old UI by going to the settings
Diffstat (limited to 'app/src/main/res')
-rwxr-xr-x | app/src/main/res/layout/fragment_home_screen.xml | 8 | ||||
-rwxr-xr-x | app/src/main/res/menu/home_screen.xml | 2 |
2 files changed, 3 insertions, 7 deletions
diff --git a/app/src/main/res/layout/fragment_home_screen.xml b/app/src/main/res/layout/fragment_home_screen.xml index a502805..e33a34e 100755 --- a/app/src/main/res/layout/fragment_home_screen.xml +++ b/app/src/main/res/layout/fragment_home_screen.xml @@ -1,10 +1,8 @@ <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" android:paddingLeft="@dimen/activity_horizontal_margin"
- android:paddingRight="@dimen/activity_horizontal_margin"
- android:paddingTop="@dimen/activity_vertical_margin"
- android:paddingBottom="@dimen/activity_vertical_margin"
- tools:context="org.rssin.android.HomeScreenActivity$PlaceholderFragment">
+ android:layout_height="match_parent"
+ android:padding="0dp"
+ tools:context="org.rssin.android.HomeScreenActivity.AllFeedsaFragment">
<android.support.v7.widget.RecyclerView
android:id="@+id/unified_inbox_feeditems"
diff --git a/app/src/main/res/menu/home_screen.xml b/app/src/main/res/menu/home_screen.xml index cf4b03a..3358601 100755 --- a/app/src/main/res/menu/home_screen.xml +++ b/app/src/main/res/menu/home_screen.xml @@ -2,8 +2,6 @@ xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context="org.rssin.android.HomeScreenActivity">
- <item android:id="@+id/action_example" android:title="@string/action_example"
- app:showAsAction="withText|ifRoom" />
<item android:id="@+id/action_settings" android:title="@string/action_settings"
android:orderInCategory="100" app:showAsAction="never" />
</menu>
|