diff options
author | Skuhne <skuhne@google.com> | 2015-03-30 12:12:21 -0700 |
---|---|---|
committer | Skuhne <skuhne@google.com> | 2015-03-30 12:12:21 -0700 |
commit | 2c10a8cf7912df1729d65d9e1ac2ec1811267a34 (patch) | |
tree | eecb999e57d72ba8102a278002b6c603c5ca9b75 /packages/SystemUI/res/layout-sw600dp-port | |
parent | 27e3514e55df90ee183d939ef10b18a4bf773bce (diff) | |
download | frameworks_base-2c10a8cf7912df1729d65d9e1ac2ec1811267a34.zip frameworks_base-2c10a8cf7912df1729d65d9e1ac2ec1811267a34.tar.gz frameworks_base-2c10a8cf7912df1729d65d9e1ac2ec1811267a34.tar.bz2 |
Removing some tiling options for tablet usage
Bug: 19985265
Change-Id: I4e1dfb16222312b55115e23176223a839f156361
Diffstat (limited to 'packages/SystemUI/res/layout-sw600dp-port')
-rw-r--r-- | packages/SystemUI/res/layout-sw600dp-port/recents_task_resize_dialog.xml | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/packages/SystemUI/res/layout-sw600dp-port/recents_task_resize_dialog.xml b/packages/SystemUI/res/layout-sw600dp-port/recents_task_resize_dialog.xml new file mode 100644 index 0000000..e180daa --- /dev/null +++ b/packages/SystemUI/res/layout-sw600dp-port/recents_task_resize_dialog.xml @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2015 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + 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:layout_width="wrap_content" + android:layout_height="wrap_content" + android:padding="16dp" + android:orientation="vertical" + android:descendantFocusability="beforeDescendants" + android:focusableInTouchMode="true"> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal"> + <Button + android:id="@+id/place_top" + android:layout_width="36dp" + android:layout_height="36dp" + android:layout_weight="1" + android:layout_margin="10dp" + android:background="@drawable/vector_drawable_place_top" /> + <Button + android:id="@+id/place_bottom" + android:layout_width="36dp" + android:layout_height="36dp" + android:layout_weight="1" + android:layout_margin="10dp" + android:background="@drawable/vector_drawable_place_bottom" /> + <Button + android:id="@+id/place_top_left" + android:layout_width="36dp" + android:layout_height="36dp" + android:layout_weight="1" + android:layout_margin="10dp" + android:background="@drawable/vector_drawable_place_top_left" /> + <Button + android:id="@+id/place_top_right" + android:layout_width="36dp" + android:layout_height="36dp" + android:layout_weight="1" + android:layout_margin="10dp" + android:background="@drawable/vector_drawable_place_top_right" /> + <Button + android:id="@+id/place_bottom_left" + android:layout_width="36dp" + android:layout_height="36dp" + android:layout_weight="1" + android:layout_margin="10dp" + android:background="@drawable/vector_drawable_place_bottom_left" /> + <Button + android:id="@+id/place_bottom_right" + android:layout_width="36dp" + android:layout_height="36dp" + android:layout_weight="1" + android:layout_margin="10dp" + android:background="@drawable/vector_drawable_place_bottom_right" /> + <Button + android:id="@+id/place_full" + android:layout_width="36dp" + android:layout_height="36dp" + android:layout_weight="1" + android:layout_margin="10dp" + android:background="@drawable/vector_drawable_place_fullscreen" /> + </LinearLayout> +</LinearLayout>
\ No newline at end of file |