Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Unintended behavior
View staffing
Description
<RelativeLayout xmlns:android="
android:id="@+id/root_view"
xmlns:app="
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout
android:id="@+id/body_info_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<View
android:id="@+id/status_height"
android:layout_width="match_parent"
android:layout_height="@dimen/top_bar_title_height"
android:background="@color/white"
android:layout_alignParentTop="true"
android:visibility="visible" />
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbarlayout"
app:elevation="0dp"
android:background="@android:color/transparent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include
android:id="@+id/search_layout"
layout="@layout/common_searcher_top_header"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<include
android:id="@+id/tostore_layout"
layout="@layout/coupon_goods_store_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone" />
<include
android:visibility="gone"
layout="@layout/scrap_goods_sort_view" />
<include layout="@layout/scrape_good_header" />
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/goods_recycler_view"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:overScrollMode="never"
>
</android.support.v7.widget.RecyclerView>
<View
android:id="@+id/transparent_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:alpha="0.7"
android:background="#000000"
android:clickable="true"
android:visibility="gone" />
</android.support.design.widget.CoordinatorLayout>
</LinearLayout>
<RelativeLayout
android:id="@+id/goods_cart_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone" />
</RelativeLayout>