Winson Chung | 785d2eb | 2011-04-14 16:08:02 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2011 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
Daniel Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 16 | <com.android.launcher3.AppsCustomizeTabHost |
Winson Chung | 785d2eb | 2011-04-14 16:08:02 -0700 | [diff] [blame] | 17 | xmlns:android="http://schemas.android.com/apk/res/android" |
Adam Cohen | 63f1ec0 | 2014-08-12 09:23:13 -0700 | [diff] [blame^] | 18 | xmlns:launcher="http://schemas.android.com/apk/res-auto/com.android.launcher3" |
| 19 | android:clipChildren="false"> |
Adam Cohen | 6c5891a | 2014-07-09 23:53:15 -0700 | [diff] [blame] | 20 | |
Winson Chung | 785d2eb | 2011-04-14 16:08:02 -0700 | [diff] [blame] | 21 | <LinearLayout |
Adam Cohen | 6c5891a | 2014-07-09 23:53:15 -0700 | [diff] [blame] | 22 | android:id="@+id/content" |
Winson Chung | 785d2eb | 2011-04-14 16:08:02 -0700 | [diff] [blame] | 23 | android:layout_width="match_parent" |
Michael Jurka | 1899a36 | 2011-11-03 13:50:45 -0700 | [diff] [blame] | 24 | android:layout_height="match_parent" |
Adam Cohen | 6c5891a | 2014-07-09 23:53:15 -0700 | [diff] [blame] | 25 | android:clipChildren="false" |
| 26 | android:orientation="vertical"> |
| 27 | |
Adam Cohen | 9bfdb76 | 2014-07-21 17:44:06 -0700 | [diff] [blame] | 28 | <FrameLayout |
Winson Chung | 785d2eb | 2011-04-14 16:08:02 -0700 | [diff] [blame] | 29 | android:layout_width="match_parent" |
Adam Cohen | 6c5891a | 2014-07-09 23:53:15 -0700 | [diff] [blame] | 30 | android:layout_height="0dp" |
Adam Cohen | 63f1ec0 | 2014-08-12 09:23:13 -0700 | [diff] [blame^] | 31 | android:layout_weight="1" |
| 32 | android:clipChildren="false"> |
Adam Cohen | 9bfdb76 | 2014-07-21 17:44:06 -0700 | [diff] [blame] | 33 | <FrameLayout |
| 34 | android:id="@+id/fake_page_container" |
| 35 | android:layout_width="match_parent" |
Adam Cohen | 63f1ec0 | 2014-08-12 09:23:13 -0700 | [diff] [blame^] | 36 | android:layout_height="match_parent" |
| 37 | android:clipChildren="false" |
| 38 | android:clipToPadding="false"> |
Adam Cohen | 9bfdb76 | 2014-07-21 17:44:06 -0700 | [diff] [blame] | 39 | <FrameLayout |
Adam Cohen | 63f1ec0 | 2014-08-12 09:23:13 -0700 | [diff] [blame^] | 40 | android:id="@+id/fake_page" |
| 41 | android:layout_width="match_parent" |
| 42 | android:layout_height="match_parent" |
| 43 | android:clipToPadding="false" /> |
Adam Cohen | 9bfdb76 | 2014-07-21 17:44:06 -0700 | [diff] [blame] | 44 | </FrameLayout> |
| 45 | <com.android.launcher3.AppsCustomizePagedView |
| 46 | android:id="@+id/apps_customize_pane_content" |
| 47 | android:layout_width="match_parent" |
| 48 | android:layout_height="match_parent" |
| 49 | launcher:widgetCountX="@integer/apps_customize_widget_cell_count_x" |
| 50 | launcher:widgetCountY="@integer/apps_customize_widget_cell_count_y" |
| 51 | launcher:clingFocusedX="@integer/apps_customize_cling_focused_x" |
| 52 | launcher:clingFocusedY="@integer/apps_customize_cling_focused_y" |
| 53 | launcher:maxGap="@dimen/workspace_max_gap" |
| 54 | launcher:pageIndicator="@+id/apps_customize_page_indicator" /> |
| 55 | </FrameLayout> |
Adam Cohen | 6c5891a | 2014-07-09 23:53:15 -0700 | [diff] [blame] | 56 | <include |
| 57 | android:id="@+id/apps_customize_page_indicator" |
| 58 | layout="@layout/page_indicator" |
| 59 | android:layout_width="wrap_content" |
| 60 | android:layout_height="wrap_content" |
| 61 | android:layout_gravity="center" /> |
Winson Chung | 82f5553 | 2011-08-09 14:14:23 -0700 | [diff] [blame] | 62 | </LinearLayout> |
Adam Cohen | 6c5891a | 2014-07-09 23:53:15 -0700 | [diff] [blame] | 63 | |
| 64 | <include |
| 65 | android:id="@+id/market_button" |
| 66 | layout="@layout/market_button" |
| 67 | android:layout_width="wrap_content" |
| 68 | android:layout_height="match_parent" |
| 69 | android:layout_gravity="end" |
| 70 | android:visibility="gone"/> |
| 71 | |
Daniel Sandler | 325dc23 | 2013-06-05 22:57:57 -0400 | [diff] [blame] | 72 | </com.android.launcher3.AppsCustomizeTabHost> |