diff options
author | Andrew Lee <anwlee@google.com> | 2015-03-16 12:18:27 -0700 |
---|---|---|
committer | Andrew Lee <anwlee@google.com> | 2015-03-16 12:18:27 -0700 |
commit | 6fa7a4c530f047a3ebb28eed77047381b88ca0fc (patch) | |
tree | 3f7322c3d8f2518f007badff60f513efd7448b5a | |
parent | 616b7f2c33a4294e100cc1851a012cd04ac3500d (diff) |
Fix remove view visibility.
It was "broken" because it was hidden under the action bar. Fixed
by adding the height of the action bar as top margin to the remove
view.
Bug: 19684430
Change-Id: I0ea54184499d41e5267ddff8862ba3bc9ca2efbe
-rw-r--r-- | res/layout/lists_fragment.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/res/layout/lists_fragment.xml b/res/layout/lists_fragment.xml index 98a1422c0..bcf414b07 100644 --- a/res/layout/lists_fragment.xml +++ b/res/layout/lists_fragment.xml @@ -56,6 +56,7 @@ android:id="@+id/remove_view" android:layout_width="match_parent" android:layout_height="@dimen/tab_height" + android:layout_marginTop="@dimen/action_bar_height_large" android:layout_alignParentTop="true" > <LinearLayout |