50 lines
2.0 KiB
XML
50 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="apps.amine.bou.readerforselfoss.SourcesActivity"
|
|
xmlns:fab="http://schemas.android.com/apk/res-auto">
|
|
<android.support.design.widget.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
app:theme="@style/ToolBarStyle" />
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/activity_sources"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scrollbars="vertical"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
</android.support.v7.widget.RecyclerView>
|
|
|
|
<com.melnykov.fab.FloatingActionButton
|
|
android:id="@+id/fab"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end|bottom|right"
|
|
android:src="@drawable/ic_add_black_24dp"
|
|
android:tint="?android:textColorPrimary"
|
|
fab:fab_colorNormal="?attr/colorAccent"
|
|
fab:fab_colorPressed="?attr/colorAccentDark"
|
|
fab:fab_colorRipple="@color/pink"
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_marginBottom="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:layout_marginRight="16dp"/>
|
|
</RelativeLayout>
|