2009-03-03 19:32:27 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<!-- Copyright (C) 2008 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
|
2011-06-13 16:55:12 -07:00
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2011-06-13 16:55:12 -07:00
|
|
|
|
2009-03-03 19:32:27 -08:00
|
|
|
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.
|
|
|
|
|
-->
|
|
|
|
|
|
2013-06-05 22:57:57 -04:00
|
|
|
<com.android.launcher3.Folder
|
2011-04-12 16:29:25 -07:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-06-05 22:57:57 -04:00
|
|
|
xmlns:launcher="http://schemas.android.com/apk/res-auto/com.android.launcher3"
|
2011-06-17 13:26:23 -07:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2011-05-02 15:36:58 -07:00
|
|
|
android:orientation="vertical"
|
2011-05-13 20:57:39 -07:00
|
|
|
android:background="@drawable/portal_container_holo">
|
2011-05-02 15:36:58 -07:00
|
|
|
|
2013-06-06 21:27:03 -07:00
|
|
|
<ScrollView
|
|
|
|
|
android:id="@+id/scroll_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
<com.android.launcher3.CellLayout
|
|
|
|
|
android:id="@+id/folder_content"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:cacheColorHint="#ff333333"
|
2013-08-12 16:19:28 -07:00
|
|
|
android:hapticFeedbackEnabled="false" />
|
2013-06-06 21:27:03 -07:00
|
|
|
</ScrollView>
|
2011-06-17 13:26:23 -07:00
|
|
|
|
2013-06-05 22:57:57 -04:00
|
|
|
<com.android.launcher3.FolderEditText
|
2011-06-17 13:26:23 -07:00
|
|
|
android:id="@+id/folder_name"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_centerHorizontal="true"
|
2011-08-24 14:00:54 -07:00
|
|
|
android:paddingTop="@dimen/folder_name_padding"
|
|
|
|
|
android:paddingBottom="@dimen/folder_name_padding"
|
2011-06-17 13:26:23 -07:00
|
|
|
android:background="#00000000"
|
2011-06-27 21:32:23 -07:00
|
|
|
android:hint="@string/folder_hint_text"
|
2011-07-26 21:07:43 -07:00
|
|
|
android:textSize="14sp"
|
2013-09-20 12:05:49 -07:00
|
|
|
android:textColor="#ff777777"
|
2013-10-11 12:10:28 -07:00
|
|
|
android:textColorHighlight="#ffCCCCCC"
|
2013-09-20 17:04:51 -07:00
|
|
|
android:textCursorDrawable="@null"
|
2011-06-17 13:26:23 -07:00
|
|
|
android:gravity="center_horizontal"
|
2011-09-29 12:16:06 -07:00
|
|
|
android:singleLine="true"
|
2013-09-18 15:14:17 -07:00
|
|
|
android:imeOptions="flagNoExtractUi"
|
|
|
|
|
android:fontFamily="sans-serif-condensed"/>
|
2013-06-05 22:57:57 -04:00
|
|
|
</com.android.launcher3.Folder>
|