Commit 03708487 authored by Grigory Fedorov's avatar Grigory Fedorov

Account floating action buttons and "up" action button are scrollable.

parent e824b6dd
......@@ -69,45 +69,65 @@
</RelativeLayout>
<FrameLayout
android:id="@+id/fab_up_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="18dp"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_above="@+id/account_action_buttons"
>
<com.melnykov.fab.FloatingActionButton
android:id="@+id/fab_up"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
fab:fab_type="mini"
fab:fab_colorNormal="@color/red_500"
fab:fab_colorPressed="@color/red_700"
fab:fab_colorRipple="@color/color_primary_light"
android:src="@drawable/ic_arrow_up_white_24dp"
android:clickable="false"
android:layout_marginTop="4dp"
android:layout_marginBottom="12dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
/>
</FrameLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
<ScrollView
android:id="@+id/account_action_buttons_container"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
android:orientation="vertical"
android:layout_marginRight="18dp"
android:id="@+id/account_action_buttons"
android:layout_marginBottom="4dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<FrameLayout
android:id="@+id/fab_up_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<com.melnykov.fab.FloatingActionButton
android:id="@+id/fab_up"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
fab:fab_type="mini"
fab:fab_colorNormal="@color/red_500"
fab:fab_colorPressed="@color/red_700"
fab:fab_colorRipple="@color/color_primary_light"
android:src="@drawable/ic_arrow_up_white_24dp"
android:clickable="false"
android:layout_marginTop="4dp"
android:layout_marginBottom="12dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
/>
</FrameLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/account_action_buttons"
>
</LinearLayout>
</LinearLayout>
</ScrollView>
</RelativeLayout>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment