summaryrefslogtreecommitdiffstats
path: root/res/layout/filtershow_color_picker.xml
diff options
context:
space:
mode:
authorJohn Hoford <hoford@google.com>2013-09-04 17:20:04 -0700
committerJohn Hoford <hoford@google.com>2013-09-04 17:40:45 -0700
commit4196c7da24f0393887a9eb4f3bbfebfbc122d3b0 (patch)
tree11ee7e18cff6c80b3f39e641be0db7fa8af92379 /res/layout/filtershow_color_picker.xml
parent805a7fe57da2534462f4720abc7fe9cdb8f7ecc9 (diff)
downloadandroid_packages_apps_Gallery2-4196c7da24f0393887a9eb4f3bbfebfbc122d3b0.tar.gz
android_packages_apps_Gallery2-4196c7da24f0393887a9eb4f3bbfebfbc122d3b0.tar.bz2
android_packages_apps_Gallery2-4196c7da24f0393887a9eb4f3bbfebfbc122d3b0.zip
remove title bar from color picker dialog
Change-Id: I242ded7941dab60a1501dbb4f34dcafbfe302bd3
Diffstat (limited to 'res/layout/filtershow_color_picker.xml')
-rw-r--r--res/layout/filtershow_color_picker.xml70
1 files changed, 37 insertions, 33 deletions
diff --git a/res/layout/filtershow_color_picker.xml b/res/layout/filtershow_color_picker.xml
index db3249181..ab264104c 100644
--- a/res/layout/filtershow_color_picker.xml
+++ b/res/layout/filtershow_color_picker.xml
@@ -14,38 +14,42 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:id="@+id/RelativeLayout1"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/default_background"
- >
-
- <com.android.gallery3d.filtershow.colorpicker.ColorOpacityView
- android:id="@+id/colorOpacityView"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"/>
-
- <com.android.gallery3d.filtershow.colorpicker.ColorSVRectView
- android:id="@+id/colorRectView"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="4"
- android:layout_marginRight="1dp" />
-
- <com.android.gallery3d.filtershow.colorpicker.ColorHueView
- android:id="@+id/ColorHueView"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1" />
-
- <Button
- android:id="@+id/btnSelect"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/color_pick_select" />
-
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:id="@+id/RelativeLayout1"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="@color/default_background">
+
+ <com.android.gallery3d.filtershow.colorpicker.ColorOpacityView
+ android:id="@+id/colorOpacityView"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1"/>
+
+ <com.android.gallery3d.filtershow.colorpicker.ColorSVRectView
+ android:id="@+id/colorRectView"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="4"
+ android:layout_marginRight="1dp"/>
+
+ <com.android.gallery3d.filtershow.colorpicker.ColorHueView
+ android:id="@+id/ColorHueView"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1"/>
+
+ <Button
+ android:id="@+id/btnSelect"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/color_pick_select"
+ android:layout_margin="14dp"/>
+
+ </LinearLayout>
</LinearLayout> \ No newline at end of file