558654c6ec
- add a temporary new zoom animation for all apps - modify AllApps2D to allow it to be transparent - other changes to dismiss the customization drawer when appropriate Change-Id: I5660ab77f256ded299c1721c589983a1b30d56a4
57 lines
2.5 KiB
XML
57 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2010 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.
|
|
-->
|
|
<com.android.launcher2.AllAppsTabbed xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<TabWidget
|
|
android:id="@android:id/tabs"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
<FrameLayout
|
|
android:id="@android:id/tabcontent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<com.android.launcher2.AllApps2D
|
|
android:id="@+id/all_apps_2d"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="2dip">
|
|
<GridView android:id="@+id/all_apps_2d_grid"
|
|
android:tag="all_apps_2d_grid"
|
|
android:scrollbars="none"
|
|
android:drawSelectorOnTop="false"
|
|
android:listSelector="@drawable/grid_selector"
|
|
android:verticalSpacing="10dip"
|
|
android:numColumns="4"
|
|
android:fadingEdgeLength="0dip"
|
|
android:cacheColorHint="#00000000"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_marginBottom="@dimen/button_bar_height"
|
|
android:layout_marginTop="8dip"
|
|
android:nextFocusDown="@+id/all_apps_2d_home"
|
|
android:nextFocusUp="@null"
|
|
android:nextFocusLeft="@null"
|
|
android:nextFocusRight="@null" />
|
|
</com.android.launcher2.AllApps2D>
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
</com.android.launcher2.AllAppsTabbed>
|