summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorTony Mantler <nicoya@google.com>2014-08-12 17:34:04 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-08-12 16:54:46 +0000
commit15823fa4573dc598986aefc7ea04667d9422fddd (patch)
tree452d5a5f05f67f6b029d5f4d23899eda9a6c4d85 /res
parent9bb2bb06ab60c0b4643b39950b7c6b975c1887e2 (diff)
parent17170ea988d80053698ec8b27be50c301072c29e (diff)
downloadandroid_packages_apps_UnifiedEmail-15823fa4573dc598986aefc7ea04667d9422fddd.tar.gz
android_packages_apps_UnifiedEmail-15823fa4573dc598986aefc7ea04667d9422fddd.tar.bz2
android_packages_apps_UnifiedEmail-15823fa4573dc598986aefc7ea04667d9422fddd.zip
Merge "Give the blank header a divider line" into ub-gmail-ur14-dev
Diffstat (limited to 'res')
-rw-r--r--res/layout/folder_list_blank_header.xml13
1 files changed, 9 insertions, 4 deletions
diff --git a/res/layout/folder_list_blank_header.xml b/res/layout/folder_list_blank_header.xml
index ec255ebec..89d15d10d 100644
--- a/res/layout/folder_list_blank_header.xml
+++ b/res/layout/folder_list_blank_header.xml
@@ -15,7 +15,12 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-
-<Space xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="8dp" />
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_height="wrap_content"
+ android:layout_width="match_parent">
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/divider_height"
+ android:layout_marginBottom="8dp"
+ android:background="@color/divider_color" />
+</FrameLayout>