version:1.5

fix:迁移到奥乐云平台
add:
This commit is contained in:
2021-12-10 14:49:23 +08:00
parent 2462bafa85
commit ed8310da47
713 changed files with 6024 additions and 4805 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.graphics.ShadowDrawable
<com.aoleyun.os.graphics.ShadowDrawable
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/ic_remove_no_shadow"
android:elevation="@dimen/drop_target_shadow_elevation" />

View File

@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.graphics.ShadowDrawable
<com.aoleyun.os.graphics.ShadowDrawable
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/ic_setting"
android:elevation="@dimen/drop_target_shadow_elevation" />

View File

@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.graphics.ShadowDrawable
<com.aoleyun.os.graphics.ShadowDrawable
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/ic_uninstall_no_shadow"
android:elevation="@dimen/drop_target_shadow_elevation" />

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffffff" />
<stroke
android:width="0.8dp"
android:color="#ffffff" />
<!-- 圆角 -->
<corners android:radius="6dp" />
</shape>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 内部颜色 -->
<solid
android:color="@color/check_update_color" />
<!-- 圆角的幅度 -->
<corners
android:topLeftRadius="24dp"
android:topRightRadius="24dp"
android:bottomLeftRadius="24dp"
android:bottomRightRadius="24dp" />
</shape>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#F4F4F4" />
<stroke
android:width="0.8dp"
android:color="#F4F4F4" />
<!-- 圆角 -->
<corners android:radius="12dp" />
</shape>

View File

@@ -46,7 +46,7 @@
android:background="?android:attr/colorPrimaryDark"
android:theme="?attr/widgetsTheme">
<com.android.colorfulos.dragndrop.LivePreviewWidgetCell
<com.aoleyun.os.dragndrop.LivePreviewWidgetCell
android:id="@+id/widget_cell"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -59,7 +59,7 @@
<include layout="@layout/widget_cell_content" />
</com.android.colorfulos.dragndrop.LivePreviewWidgetCell>
</com.aoleyun.os.dragndrop.LivePreviewWidgetCell>
</FrameLayout>
</LinearLayout>
</ScrollView>

View File

@@ -16,7 +16,7 @@
<!-- The top and bottom paddings are defined in this container, but since we want
the list view to span the full width (for touch interception purposes), we
will bake the left/right padding into that view's background itself. -->
<com.android.colorfulos.allapps.AllAppsContainerView
<com.aoleyun.os.allapps.AllAppsContainerView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/apps_view"
android:layout_width="match_parent"
@@ -30,7 +30,7 @@
layout="@layout/all_apps_rv_layout"
android:visibility="gone" />
<com.android.colorfulos.allapps.FloatingHeaderView
<com.aoleyun.os.allapps.FloatingHeaderView
android:id="@+id/all_apps_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -41,7 +41,7 @@
<include layout="@layout/floating_header_content" />
<com.android.colorfulos.allapps.PersonalWorkSlidingTabStrip
<com.aoleyun.os.allapps.PersonalWorkSlidingTabStrip
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="@dimen/all_apps_header_tab_height"
@@ -71,12 +71,12 @@
android:textAllCaps="true"
android:textColor="@color/all_apps_tab_text"
android:textSize="14sp" />
</com.android.colorfulos.allapps.PersonalWorkSlidingTabStrip>
</com.android.colorfulos.allapps.FloatingHeaderView>
</com.aoleyun.os.allapps.PersonalWorkSlidingTabStrip>
</com.aoleyun.os.allapps.FloatingHeaderView>
<include
android:id="@id/search_container_all_apps"
layout="@layout/search_container_all_apps"/>
<include layout="@layout/all_apps_fast_scroller" />
</com.android.colorfulos.allapps.AllAppsContainerView>
</com.aoleyun.os.allapps.AllAppsContainerView>

View File

@@ -24,7 +24,7 @@
android:layout_below="@+id/search_container_all_apps"
android:layout_marginEnd="@dimen/fastscroll_popup_margin" />
<com.android.colorfulos.views.RecyclerViewFastScroller
<com.aoleyun.os.views.RecyclerViewFastScroller
android:id="@+id/fast_scroller"
android:layout_width="@dimen/fastscroll_width"
android:layout_height="wrap_content"

View File

@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.BubbleTextView
<com.aoleyun.os.BubbleTextView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:launcher="http://schemas.android.com/apk/res-auto"
style="@style/BaseIcon"

View File

@@ -14,7 +14,7 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<com.android.colorfulos.allapps.AllAppsRecyclerView
<com.aoleyun.os.allapps.AllAppsRecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/apps_list_view"
android:layout_width="match_parent"

View File

@@ -14,7 +14,7 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<com.android.colorfulos.allapps.AllAppsPagedView
<com.aoleyun.os.allapps.AllAppsPagedView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:launcher="http://schemas.android.com/apk/res-auto"
android:id="@+id/all_apps_tabs_view_pager"
@@ -33,4 +33,4 @@
<include layout="@layout/all_apps_rv_layout" />
</com.android.colorfulos.allapps.AllAppsPagedView>
</com.aoleyun.os.allapps.AllAppsPagedView>

View File

@@ -14,4 +14,4 @@
limitations under the License.
-->
<com.android.colorfulos.views.DoubleShadowBubbleTextView style="@style/BaseIcon.Workspace" />
<com.aoleyun.os.views.DoubleShadowBubbleTextView style="@style/BaseIcon.Workspace" />

View File

@@ -14,7 +14,7 @@
limitations under the License.
-->
<com.android.colorfulos.AppWidgetResizeFrame
<com.aoleyun.os.AppWidgetResizeFrame
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
@@ -64,4 +64,4 @@
android:tint="?attr/workspaceTextColor" />
</FrameLayout>
</com.android.colorfulos.AppWidgetResizeFrame>
</com.aoleyun.os.AppWidgetResizeFrame>

View File

@@ -0,0 +1,146 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="400dp"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="@drawable/bg_dialog"
android:minWidth="300dp"
android:orientation="vertical"
android:paddingTop="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:id="@+id/image"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_gravity="center"
android:layout_marginEnd="16dp"
android:maxWidth="80dp"
android:maxHeight="80dp"
android:visibility="gone" />
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_vertical"
android:textColor="#333333"
android:textSize="22sp"
android:textStyle="bold"
android:visibility="visible"
tools:text="请输入密码" />
</LinearLayout>
<EditText
android:id="@+id/message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="64dp"
android:layout_marginTop="64dp"
android:layout_marginEnd="64dp"
android:background="@drawable/edit_background"
android:gravity="center|left"
android:hint="请输入应用锁密码"
android:textColorHint="#999999"
android:inputType="text"
android:lineSpacingExtra="3dp"
android:lineSpacingMultiplier="1.2"
android:maxLines="1"
android:minHeight="50dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:singleLine="true"
android:textColor="#000000"
android:textSize="18sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout2"
tools:text="" />
<TextView
android:id="@+id/positive"
android:paddingStart="24dp"
android:paddingEnd="24dp"
android:layout_width="wrap_content"
android:layout_height="38dp"
android:layout_marginTop="40dp"
android:layout_marginBottom="32dp"
android:layout_weight="1"
android:background="@drawable/bt_sure_normnl"
android:gravity="center"
android:paddingTop="8dp"
android:paddingBottom="8dp"
android:singleLine="true"
android:textColor="#FFFFFF"
android:textSize="18sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/message"
tools:text="确定" />
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="#E4E4E4"
android:visibility="gone"
app:layout_constraintBottom_toTopOf="@+id/linearLayout3" />
<LinearLayout
android:id="@+id/linearLayout3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="64dp"
android:orientation="horizontal"
android:visibility="gone"
app:layout_constraintTop_toBottomOf="@+id/message">
<Button
android:id="@+id/negtive"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:layout_weight="1"
android:background="@null"
android:gravity="center"
android:paddingTop="8dp"
android:paddingBottom="8dp"
android:singleLine="true"
android:textColor="#999999"
android:textSize="18sp"
android:visibility="gone"
tools:text="No" />
<View
android:id="@+id/column_line"
android:layout_width="1px"
android:layout_height="match_parent"
android:background="#E4E4E4"
android:visibility="gone" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -14,14 +14,14 @@
limitations under the License.
-->
<com.android.colorfulos.shortcuts.DeepShortcutView
<com.aoleyun.os.shortcuts.DeepShortcutView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:launcher="http://schemas.android.com/apk/res-auto"
android:layout_width="@dimen/bg_popup_item_width"
android:layout_height="@dimen/bg_popup_item_height"
android:theme="@style/PopupItem" >
<com.android.colorfulos.shortcuts.DeepShortcutTextView
<com.aoleyun.os.shortcuts.DeepShortcutTextView
style="@style/BaseIcon"
android:id="@+id/bubble_text"
android:background="?android:attr/selectableItemBackground"
@@ -53,4 +53,4 @@
android:visibility="gone"
android:background="?attr/popupColorTertiary" />
</com.android.colorfulos.shortcuts.DeepShortcutView>
</com.aoleyun.os.shortcuts.DeepShortcutView>

View File

@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.DropTargetBar xmlns:android="http://schemas.android.com/apk/res/android"
<com.aoleyun.os.DropTargetBar xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="@dimen/dynamic_grid_drop_target_size"
android:layout_gravity="center_horizontal|top"
@@ -23,7 +23,7 @@
android:visibility="invisible">
<!-- Delete target -->
<com.android.colorfulos.DeleteDropTarget
<com.aoleyun.os.DeleteDropTarget
android:id="@+id/delete_target_text"
style="@style/DropTargetButton"
android:layout_width="wrap_content"
@@ -34,7 +34,7 @@
android:text="@string/remove_drop_target_label" />
<!-- Uninstall target -->
<com.android.colorfulos.SecondaryDropTarget
<com.aoleyun.os.SecondaryDropTarget
android:id="@+id/uninstall_target_text"
style="@style/DropTargetButton"
android:layout_width="wrap_content"
@@ -43,4 +43,4 @@
android:gravity="center"
android:text="@string/uninstall_drop_target_label" />
</com.android.colorfulos.DropTargetBar>
</com.aoleyun.os.DropTargetBar>

View File

@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.views.FloatingIconView
<com.aoleyun.os.views.FloatingIconView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

View File

@@ -14,7 +14,7 @@
limitations under the License.
-->
<com.android.colorfulos.BubbleTextView
<com.aoleyun.os.BubbleTextView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:launcher="http://schemas.android.com/apk/res-auto"
style="@style/BaseIcon"

View File

@@ -14,17 +14,17 @@
limitations under the License.
-->
<com.android.colorfulos.folder.FolderIcon
<com.aoleyun.os.folder.FolderIcon
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:focusable="true" >
<com.android.colorfulos.views.DoubleShadowBubbleTextView
<com.aoleyun.os.views.DoubleShadowBubbleTextView
style="@style/BaseIcon.Workspace"
android:id="@+id/folder_icon_name"
android:focusable="false"
android:layout_gravity="top"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</com.android.colorfulos.folder.FolderIcon>
</com.aoleyun.os.folder.FolderIcon>

View File

@@ -14,7 +14,7 @@
limitations under the License.
-->
<com.android.colorfulos.CellLayout
<com.aoleyun.os.CellLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:launcher="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"

View File

@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.Hotseat
<com.aoleyun.os.Hotseat
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:launcher="http://schemas.android.com/apk/res-auto"
android:id="@+id/hotseat"

View File

@@ -12,7 +12,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.LauncherRootView
<com.aoleyun.os.LauncherRootView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:launcher="http://schemas.android.com/apk/res-auto"
android:id="@+id/launcher"
@@ -20,7 +20,7 @@
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<com.android.colorfulos.dragndrop.DragLayer
<com.aoleyun.os.dragndrop.DragLayer
android:id="@+id/drag_layer"
android:layout_width="match_parent"
android:layout_height="match_parent"
@@ -30,7 +30,7 @@
<!-- The workspace contains 5 screens of cells -->
<!-- DO NOT CHANGE THE ID -->
<com.android.colorfulos.Workspace
<com.aoleyun.os.Workspace
android:id="@+id/workspace"
android:layout_width="match_parent"
android:layout_height="match_parent"
@@ -50,7 +50,7 @@
<!-- Keep these behind the workspace so that they are not visible when
we go into AllApps -->
<com.android.colorfulos.pageindicators.PageIndicatorDots
<com.aoleyun.os.pageindicators.PageIndicatorDots
android:id="@+id/page_indicator"
android:layout_width="match_parent"
android:layout_height="@dimen/vertical_drag_handle_size"
@@ -71,6 +71,6 @@
android:layout_width="match_parent"
android:layout_height="match_parent" />
</com.android.colorfulos.dragndrop.DragLayer>
</com.aoleyun.os.dragndrop.DragLayer>
</com.android.colorfulos.LauncherRootView>
</com.aoleyun.os.LauncherRootView>

View File

@@ -13,13 +13,13 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.InsettableFrameLayout
<com.aoleyun.os.InsettableFrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:launcher="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.android.colorfulos.CellLayout
<com.aoleyun.os.CellLayout
android:id="@+id/workspace"
android:layout_width="match_parent"
android:layout_height="match_parent"
@@ -28,7 +28,7 @@
launcher:containerType="workspace"
launcher:pageIndicator="@+id/page_indicator"/>
<com.android.colorfulos.Hotseat
<com.aoleyun.os.Hotseat
android:id="@+id/hotseat"
android:layout_width="match_parent"
android:layout_height="match_parent"
@@ -36,7 +36,7 @@
android:theme="@style/HomeScreenElementTheme"
launcher:containerType="hotseat" />
<com.android.colorfulos.InsettableFrameLayout
<com.aoleyun.os.InsettableFrameLayout
android:id="@+id/apps_view"
android:layout_width="match_parent"
android:layout_height="match_parent" >
@@ -45,6 +45,6 @@
android:id="@id/search_container_all_apps"
layout="@layout/search_container_all_apps"/>
</com.android.colorfulos.InsettableFrameLayout>
</com.aoleyun.os.InsettableFrameLayout>
</com.android.colorfulos.InsettableFrameLayout>
</com.aoleyun.os.InsettableFrameLayout>

View File

@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.views.OptionsPopupView
<com.aoleyun.os.views.OptionsPopupView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/deep_shortcuts_container"
android:layout_width="wrap_content"

View File

@@ -47,7 +47,7 @@
</FrameLayout>
<!-- Main view -->
<com.android.colorfulos.notification.NotificationMainView
<com.aoleyun.os.notification.NotificationMainView
android:id="@+id/main_view"
android:layout_width="match_parent"
android:layout_height="@dimen/notification_main_height"
@@ -94,7 +94,7 @@
android:layout_marginBottom="7dp"
android:layout_marginEnd="@dimen/notification_padding_end" />
</com.android.colorfulos.notification.NotificationMainView>
</com.aoleyun.os.notification.NotificationMainView>
<!-- Divider -->
<View
@@ -105,7 +105,7 @@
android:background="?attr/popupColorTertiary" />
<!-- Footer -->
<com.android.colorfulos.notification.NotificationFooterLayout
<com.aoleyun.os.notification.NotificationFooterLayout
android:id="@+id/footer"
android:layout_width="match_parent"
android:layout_height="@dimen/notification_footer_height"
@@ -130,5 +130,5 @@
android:layout_marginStart="@dimen/horizontal_ellipsis_offset"
android:background="@drawable/horizontal_ellipsis" />
</com.android.colorfulos.notification.NotificationFooterLayout>
</com.aoleyun.os.notification.NotificationFooterLayout>
</merge>

View File

@@ -14,7 +14,7 @@
limitations under the License.
-->
<com.android.colorfulos.popup.PopupContainerWithArrow
<com.aoleyun.os.popup.PopupContainerWithArrow
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/deep_shortcuts_container"
android:layout_width="wrap_content"

View File

@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.views.ScrimView
<com.aoleyun.os.views.ScrimView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"

View File

@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.allapps.search.AppsSearchContainerLayout
<com.aoleyun.os.allapps.search.AppsSearchContainerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@id/search_container_all_apps"
android:layout_width="match_parent"

View File

@@ -14,7 +14,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.qsb.QsbContainerView
<com.aoleyun.os.qsb.QsbContainerView
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
@@ -23,8 +23,8 @@
android:padding="0dp" >
<fragment
android:name="com.android.colorfulos.qsb.QsbContainerView$QsbFragment"
android:name="com.aoleyun.os.qsb.QsbContainerView$QsbFragment"
android:layout_width="match_parent"
android:tag="qsb_view"
android:layout_height="0dp"/>
</com.android.colorfulos.qsb.QsbContainerView>
</com.aoleyun.os.qsb.QsbContainerView>

View File

@@ -14,14 +14,14 @@
limitations under the License.
-->
<com.android.colorfulos.shortcuts.DeepShortcutView
<com.aoleyun.os.shortcuts.DeepShortcutView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:launcher="http://schemas.android.com/apk/res-auto"
android:layout_width="@dimen/bg_popup_item_width"
android:layout_height="@dimen/bg_popup_item_height"
android:theme="@style/PopupItem" >
<com.android.colorfulos.BubbleTextView
<com.aoleyun.os.BubbleTextView
style="@style/BaseIcon"
android:id="@+id/bubble_text"
android:background="?android:attr/selectableItemBackground"
@@ -51,4 +51,4 @@
android:visibility="gone"
android:background="?attr/popupColorTertiary" />
</com.android.colorfulos.shortcuts.DeepShortcutView>
</com.aoleyun.os.shortcuts.DeepShortcutView>

View File

@@ -14,7 +14,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.folder.Folder xmlns:android="http://schemas.android.com/apk/res/android"
<com.aoleyun.os.folder.Folder xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:launcher="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -22,7 +22,7 @@
android:elevation="5dp"
android:orientation="vertical" >
<com.android.colorfulos.folder.FolderPagedView
<com.aoleyun.os.folder.FolderPagedView
android:id="@+id/folder_content"
android:clipToPadding="false"
android:layout_width="match_parent"
@@ -41,7 +41,7 @@
android:paddingLeft="12dp"
android:paddingRight="12dp" >
<com.android.colorfulos.ExtendedEditText
<com.aoleyun.os.ExtendedEditText
android:id="@+id/folder_name"
android:layout_width="0dp"
android:layout_height="wrap_content"
@@ -61,7 +61,7 @@
android:textColorHint="#ffffff"
android:textSize="@dimen/folder_label_text_size" />
<com.android.colorfulos.pageindicators.PageIndicatorDots
<com.aoleyun.os.pageindicators.PageIndicatorDots
android:id="@+id/folder_page_indicator"
android:layout_gravity="center_vertical"
android:layout_width="wrap_content"
@@ -71,4 +71,4 @@
</LinearLayout>
</com.android.colorfulos.folder.Folder>
</com.aoleyun.os.folder.Folder>

View File

@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.widget.WidgetCell
<com.aoleyun.os.widget.WidgetCell
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -25,4 +25,4 @@
<include layout="@layout/widget_cell_content" />
</com.android.colorfulos.widget.WidgetCell>
</com.aoleyun.os.widget.WidgetCell>

View File

@@ -55,7 +55,7 @@
<!-- The image of the widget. This view does not support padding. Any placement adjustment
should be done using margins. -->
<com.android.colorfulos.widget.WidgetImageView
<com.aoleyun.os.widget.WidgetImageView
android:id="@+id/widget_preview"
android:layout_width="match_parent"
android:layout_height="0dp"

View File

@@ -14,7 +14,7 @@
limitations under the License.
-->
<com.android.colorfulos.widget.WidgetsBottomSheet
<com.aoleyun.os.widget.WidgetsBottomSheet
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
@@ -51,4 +51,4 @@
android:layout_marginTop="45dp"
android:layout_marginBottom="40dp"/>
</com.android.colorfulos.widget.WidgetsBottomSheet>
</com.aoleyun.os.widget.WidgetsBottomSheet>

View File

@@ -13,21 +13,21 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.widget.WidgetsFullSheet
<com.aoleyun.os.widget.WidgetsFullSheet
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:theme="?attr/widgetsTheme" >
<com.android.colorfulos.views.TopRoundedCornerView
<com.aoleyun.os.views.TopRoundedCornerView
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?android:attr/colorPrimary"
android:elevation="4dp">
<com.android.colorfulos.widget.WidgetsRecyclerView
<com.aoleyun.os.widget.WidgetsRecyclerView
android:id="@+id/widgets_list_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
@@ -41,12 +41,12 @@
android:layout_alignParentTop="true"
android:layout_marginEnd="@dimen/fastscroll_popup_margin" />
<com.android.colorfulos.views.RecyclerViewFastScroller
<com.aoleyun.os.views.RecyclerViewFastScroller
android:id="@+id/fast_scroller"
android:layout_width="@dimen/fastscroll_width"
android:layout_height="match_parent"
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"
android:layout_marginEnd="@dimen/fastscroll_end_margin" />
</com.android.colorfulos.views.TopRoundedCornerView>
</com.android.colorfulos.widget.WidgetsFullSheet>
</com.aoleyun.os.views.TopRoundedCornerView>
</com.aoleyun.os.widget.WidgetsFullSheet>

View File

@@ -25,7 +25,7 @@
<!-- Section info -->
<com.android.colorfulos.BubbleTextView
<com.aoleyun.os.BubbleTextView
android:id="@+id/section"
android:layout_width="match_parent"
android:layout_height="@dimen/widget_section_height"

View File

@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.views.BottomUserEducationView
<com.aoleyun.os.views.BottomUserEducationView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -66,4 +66,4 @@
</LinearLayout>
</com.android.colorfulos.views.BottomUserEducationView>
</com.aoleyun.os.views.BottomUserEducationView>

View File

@@ -13,7 +13,7 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
<com.android.colorfulos.views.WorkFooterContainer
<com.aoleyun.os.views.WorkFooterContainer
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -34,7 +34,7 @@
android:scaleType="fitXY"
android:src="@drawable/all_apps_divider"/>
<com.android.colorfulos.allapps.WorkModeSwitch
<com.aoleyun.os.allapps.WorkModeSwitch
android:id="@+id/work_mode_toggle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -76,4 +76,4 @@
android:textColor="?android:attr/textColorHint"
android:textSize="13sp"/>
</com.android.colorfulos.views.WorkFooterContainer>
</com.aoleyun.os.views.WorkFooterContainer>

View File

@@ -14,7 +14,7 @@
limitations under the License.
-->
<com.android.colorfulos.CellLayout
<com.aoleyun.os.CellLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:launcher="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"

View File

@@ -42,5 +42,8 @@
<color name="hour_hand_color">#494949</color>
<color name="IndicatorInColor">#33FFFFFF</color>
<color name="check_update_color">#4880ff</color>
<color name="toast_color">#CD000000</color>
</resources>

View File

@@ -19,7 +19,7 @@
<string name="delete_package_intent" translatable="false">#Intent;action=android.intent.action.DELETE;launchFlags=0x10800000;end</string>
<!-- String representing the fragment class for settings activity.-->
<string name="settings_fragment_name" translatable="false">com.android.colorfulos.settings.SettingsActivity$LauncherSettingsFragment</string>
<string name="settings_fragment_name" translatable="false">com.aoleyun.os.settings.SettingsActivity$LauncherSettingsFragment</string>
<!-- DragController -->
<item type="id" name="drag_event_parity" />

View File

@@ -23,7 +23,7 @@
<!-- Application name -->
<string name="app_name">Launcher3</string>
<string name="app_uiui">ColorfulOS</string>
<string name="app_uiui">桌面</string>
<!-- Default folder name -->
<string name="folder_name"></string>

View File

@@ -226,4 +226,17 @@
<item name="android:colorControlHighlight">#DFE1E5</item>
<item name="android:colorForeground">@color/all_apps_bg_hand_fill_dark</item>
</style>
<style name="CustomDialog" parent="Theme.AppCompat.Dialog.Alert">
<!--背景颜色及和透明程度-->
<item name="android:windowBackground">@android:color/transparent</item>
<!--是否去除标题 -->
<item name="android:windowNoTitle">true</item>
<!--是否去除边框-->
<item name="android:windowFrame">@null</item>
<!--是否浮现在activity之上-->
<!-- <item name="android:windowIsFloating">true</item>-->
<!--是否模糊-->
<item name="android:backgroundDimEnabled">true</item>
</style>
</resources>

View File

@@ -2,7 +2,7 @@
<full-backup-content xmlns:android="http://schemas.android.com/apk/res/android">
<include domain="database" path="launcher.db" />
<include domain="sharedpref" path="com.android.colorfulos.prefs.xml" />
<include domain="sharedpref" path="com.aoleyun.os.prefs.xml" />
<include domain="file" path="downgrade_schema.json" />
</full-backup-content>

View File

@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2009 The Android Open Source Project
<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2009 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.
@@ -19,63 +18,71 @@
<!-- Hotseat (We use the screen as the position of the item in the hotseat) -->
<!-- Dialer, Messaging, [Maps/Music], Browser, Camera -->
<favorite
launcher:className="com.info.jgy.activity.main.MainActivity"
launcher:packageName="com.info.jgy"
launcher:container="-101"
launcher:className="com.aoleyun.sn.activity.SplashActivity"
launcher:packageName="com.aoleyun.sn"
launcher:screen="0"
launcher:x="0"
launcher:y="0" />
<favorite
launcher:className="com.store.jgy.activity.MainActivity"
launcher:packageName="com.store.jgy"
launcher:screen="0"
launcher:container="-101"
launcher:className="com.aoleyun.appstore.activity.SplashActivity"
launcher:packageName="com.aoleyun.appstore"
launcher:screen="1"
launcher:x="1"
launcher:y="0" />
<!-- <resolve-->
<!-- launcher:container="-101"-->
<!-- launcher:screen="0"-->
<!-- launcher:x="0"-->
<!-- launcher:y="0" >-->
<!-- <favorite launcher:uri="#Intent;action=android.intent.action.DIAL;end" />-->
<!-- <favorite launcher:uri="tel:123" />-->
<!-- <favorite launcher:uri="#Intent;action=android.intent.action.CALL_BUTTON;end" />-->
<!-- </resolve>-->
<!-- <resolve-->
<!-- launcher:container="-101"-->
<!-- launcher:screen="0"-->
<!-- launcher:x="0"-->
<!-- launcher:y="0" >-->
<!-- <favorite launcher:uri="#Intent;action=android.intent.action.DIAL;end" />-->
<!-- <favorite launcher:uri="tel:123" />-->
<!-- <favorite launcher:uri="#Intent;action=android.intent.action.CALL_BUTTON;end" />-->
<!-- </resolve>-->
<!-- <resolve-->
<!-- launcher:container="-101"-->
<!-- launcher:screen="1"-->
<!-- launcher:x="1"-->
<!-- launcher:y="0" >-->
<!-- <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MESSAGING;end" />-->
<!-- <favorite launcher:uri="sms:" />-->
<!-- <favorite launcher:uri="smsto:" />-->
<!-- <favorite launcher:uri="mms:" />-->
<!-- <favorite launcher:uri="mmsto:" />-->
<!-- </resolve>-->
<!-- <resolve-->
<!-- launcher:container="-101"-->
<!-- launcher:screen="1"-->
<!-- launcher:x="1"-->
<!-- launcher:y="0" >-->
<!-- <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MESSAGING;end" />-->
<!-- <favorite launcher:uri="sms:" />-->
<!-- <favorite launcher:uri="smsto:" />-->
<!-- <favorite launcher:uri="mms:" />-->
<!-- <favorite launcher:uri="mmsto:" />-->
<!-- </resolve>-->
<resolve
<!-- <resolve-->
<!-- launcher:container="-101"-->
<!-- launcher:screen="2"-->
<!-- launcher:x="2"-->
<!-- launcher:y="0" >-->
<!-- <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MAPS;end" />-->
<!-- <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MUSIC;end" />-->
<!-- </resolve>-->
<favorite
launcher:container="-101"
launcher:className="com.uiui.browser.activity.MainActivity"
launcher:packageName="com.uiui.browser"
launcher:screen="2"
launcher:x="2"
launcher:y="0" >
<favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MAPS;end" />
<favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MUSIC;end" />
</resolve>
launcher:y="0" />
<resolve
<favorite
launcher:container="-101"
launcher:className="com.android.settings.Settings"
launcher:packageName="com.android.settings"
launcher:screen="3"
launcher:x="3"
launcher:y="0" >
<favorite
launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_BROWSER;end" />
<favorite launcher:uri="http://www.example.com/" />
</resolve>
launcher:y="0" />
<resolve
launcher:container="-101"
launcher:screen="4"
launcher:x="4"
launcher:y="0" >
launcher:y="0">
<favorite launcher:uri="#Intent;action=android.media.action.STILL_IMAGE_CAMERA;end" />
<favorite launcher:uri="#Intent;action=android.intent.action.CAMERA_BUTTON;end" />
</resolve>
@@ -84,46 +91,46 @@
launcher:container="-101"
launcher:screen="5"
launcher:x="5"
launcher:y="0" >
launcher:y="0">
<favorite launcher:uri="#Intent;action=android.intent.action.MAIN;component=com.android.deskclock/.DeskClock;end" />
</resolve>
<!-- Bottom row -->
<!-- <resolve-->
<!-- launcher:screen="0"-->
<!-- launcher:x="0"-->
<!-- launcher:y="-1" >-->
<!-- <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_EMAIL;end" />-->
<!-- <favorite launcher:uri="mailto:" />-->
<!-- <resolve-->
<!-- launcher:screen="0"-->
<!-- launcher:x="0"-->
<!-- launcher:y="-1" >-->
<!-- <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_EMAIL;end" />-->
<!-- <favorite launcher:uri="mailto:" />-->
<!-- </resolve>-->
<!-- </resolve>-->
<!-- <resolve-->
<!-- launcher:screen="0"-->
<!-- launcher:x="1"-->
<!-- launcher:y="-1" >-->
<!-- <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_GALLERY;end" />-->
<!-- <favorite launcher:uri="#Intent;type=images/*;end" />-->
<!-- <resolve-->
<!-- launcher:screen="0"-->
<!-- launcher:x="1"-->
<!-- launcher:y="-1" >-->
<!-- <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_GALLERY;end" />-->
<!-- <favorite launcher:uri="#Intent;type=images/*;end" />-->
<!-- </resolve>-->
<!-- </resolve>-->
<!-- <resolve-->
<!-- launcher:screen="0"-->
<!-- launcher:x="4"-->
<!-- launcher:y="-1" >-->
<!-- <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MARKET;end" />-->
<!-- <favorite launcher:uri="market://details?id=com.android.launcher" />-->
<!-- </resolve>-->
<!-- <favorite-->
<!-- launcher:className="com.info.sn.activity.MainActivity"-->
<!-- launcher:packageName="com.info.sn"-->
<!-- launcher:screen="0"-->
<!-- launcher:x="0"-->
<!-- launcher:y="0" />-->
<!-- <favorite-->
<!-- launcher:className="com.jiaoguanyi.sysc.activity.MainActivity"-->
<!-- launcher:packageName="com.jiaoguanyi.sysc"-->
<!-- launcher:screen="0"-->
<!-- launcher:x="1"-->
<!-- launcher:y="0" />-->
<!-- <resolve-->
<!-- launcher:screen="0"-->
<!-- launcher:x="4"-->
<!-- launcher:y="-1" >-->
<!-- <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_MARKET;end" />-->
<!-- <favorite launcher:uri="market://details?id=com.android.launcher" />-->
<!-- </resolve>-->
<!-- <favorite-->
<!-- launcher:className="com.info.sn.activity.MainActivity"-->
<!-- launcher:packageName="com.info.sn"-->
<!-- launcher:screen="0"-->
<!-- launcher:x="0"-->
<!-- launcher:y="0" />-->
<!-- <favorite-->
<!-- launcher:className="com.jiaoguanyi.sysc.activity.MainActivity"-->
<!-- launcher:packageName="com.jiaoguanyi.sysc"-->
<!-- launcher:screen="0"-->
<!-- launcher:x="1"-->
<!-- launcher:y="0" />-->
</favorites>

View File

@@ -17,7 +17,7 @@
<androidx.preference.PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<com.android.colorfulos.settings.NotificationDotsPreference
<com.aoleyun.os.settings.NotificationDotsPreference
android:key="pref_icon_badging"
android:title="@string/notification_dots_title"
android:persistent="false"
@@ -28,7 +28,7 @@
android:name=":settings:fragment_args_key"
android:value="notification_badging" />
</intent>
</com.android.colorfulos.settings.NotificationDotsPreference>
</com.aoleyun.os.settings.NotificationDotsPreference>
<SwitchPreference
android:key="pref_add_icon_to_home"
@@ -54,6 +54,6 @@
android:key="pref_developer_options"
android:persistent="false"
android:title="Developer Options"
android:fragment="com.android.colorfulos.settings.DeveloperOptionsFragment"/>
android:fragment="com.aoleyun.os.settings.DeveloperOptionsFragment"/>
</androidx.preference.PreferenceScreen>