From ca92bd6a906631a9881f730299f0c22afe13b280 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 20 May 2013 11:34:56 -0700 Subject: [PATCH] Fix title text color in detail view on Gingerbread Text color wasn't being set on the EditText, defaulted to black on Gingerbread. Set to white to match the list. --- commons/res/layout/fragment_media_detail.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commons/res/layout/fragment_media_detail.xml b/commons/res/layout/fragment_media_detail.xml index 1d7699564..d56a4c63f 100644 --- a/commons/res/layout/fragment_media_detail.xml +++ b/commons/res/layout/fragment_media_detail.xml @@ -42,7 +42,7 @@ android:layout_width="fill_parent" android:layout_height="wrap_content" android:imeOptions="flagNoExtractUi" - android:inputType="textNoSuggestions"/> + android:inputType="textNoSuggestions" android:textColor="#FFFFFF"/>