|
@@ -1,17 +1,17 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+<LinearLayout 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"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
android:background="@color/background_color"
|
|
|
+ android:orientation="vertical"
|
|
|
tools:context=".ui.workspace.WorkspaceFragment">
|
|
|
|
|
|
<LinearLayout
|
|
|
android:id="@+id/workspace_title"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="@dimen/title_height"
|
|
|
- android:layout_alignParentTop="true"
|
|
|
android:background="@color/title_background_color"
|
|
|
android:orientation="vertical">
|
|
|
|
|
@@ -30,8 +30,6 @@
|
|
|
android:id="@+id/user_info"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="80dp"
|
|
|
- android:layout_below="@+id/workspace_title"
|
|
|
- android:layout_marginTop="@dimen/common_padding"
|
|
|
android:background="@color/white"
|
|
|
android:orientation="horizontal">
|
|
|
|
|
@@ -39,18 +37,18 @@
|
|
|
android:id="@+id/user_icon"
|
|
|
android:layout_width="50dp"
|
|
|
android:layout_height="50dp"
|
|
|
- android:layout_marginStart="25dp"
|
|
|
android:layout_gravity="center_vertical"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
android:src="@mipmap/icon_user"
|
|
|
- tools:ignore="ContentDescription"/>
|
|
|
+ tools:ignore="ContentDescription" />
|
|
|
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
android:layout_marginStart="@dimen/common_padding"
|
|
|
android:layout_marginEnd="@dimen/common_padding"
|
|
|
- android:orientation="vertical"
|
|
|
- android:layout_gravity="center">
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
@@ -125,7 +123,7 @@
|
|
|
<ScrollView
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_below="@id/user_info"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
android:scrollbars="none">
|
|
|
|
|
|
<LinearLayout
|
|
@@ -140,11 +138,6 @@
|
|
|
android:background="@color/white"
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
- <View
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="@dimen/common_padding"
|
|
|
- android:background="@color/background_color" />
|
|
|
-
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
@@ -946,4 +939,4 @@
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
|
-</RelativeLayout>
|
|
|
+</LinearLayout>
|