OSDN Git Service

The center column of the support tab is back to white
authorMatthew Fritze <mfritze@google.com>
Wed, 5 Oct 2016 18:07:08 +0000 (11:07 -0700)
committerMatthew Fritze <mfritze@google.com>
Wed, 5 Oct 2016 20:55:01 +0000 (13:55 -0700)
Regression came in here:
ag/1492761

Change-Id: I7ea5015abbe78d06b6df17d3caa3177642539023
Fixes:31958339
Test: Manual

res/layout/support_fragment.xml

index 913e607..7c79a63 100644 (file)
      limitations under the License.
 -->
 
-<android.support.v7.widget.RecyclerView
+<FrameLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/support_items"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:clipChildren="false"
     android:clipToPadding="false"
     android:focusable="false"
     android:paddingStart="@dimen/dashboard_padding_start"
-    android:paddingEnd="@dimen/dashboard_padding_end"/>
\ No newline at end of file
+    android:paddingEnd="@dimen/dashboard_padding_end">
+    <android.support.v7.widget.RecyclerView
+        android:id="@+id/support_items"
+        android:layout_height="match_parent"
+        android:layout_width="match_parent"
+        android:background="@color/card_background"/>
+</FrameLayout>