Improve editor choice & expanded stream UI

This commit is contained in:
Rahul Kumar Patel
2021-02-22 00:10:08 +05:30
parent 86fac3e7c7
commit 548cced8a2
14 changed files with 318 additions and 57 deletions

View File

@@ -17,18 +17,37 @@
~
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<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="wrap_content"
android:orientation="vertical">
<ViewStub
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inflatedId="@+id/recycler_view" />
android:layout_gravity="start"
android:layout_marginStart="@dimen/margin_small"
android:layout_marginEnd="@dimen/margin_small"
android:orientation="horizontal">
<ViewStub
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inflatedId="@+id/title_view" />
</LinearLayout>
android:layout_centerVertical="true"
android:inflatedId="@+id/header_view" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toEndOf="@+id/header_view"
android:orientation="vertical"
tools:ignore="UnknownIdInLayout">
<ViewStub
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inflatedId="@+id/section_view" />
<ViewStub
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inflatedId="@+id/recycler_view" />
</LinearLayout>
</RelativeLayout>