Merge branch 'main' into feature/72-drawer-search
This commit is contained in:
commit
149e51f53e
|
@ -63,9 +63,9 @@ android {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.github.SimpleMobileTools:Simple-Commons:42733f39a4'
|
||||
implementation 'com.github.SimpleMobileTools:Simple-Commons:a9c3b63377'
|
||||
|
||||
kapt "androidx.room:room-compiler:2.5.1"
|
||||
implementation "androidx.room:room-runtime:2.5.1"
|
||||
annotationProcessor "androidx.room:room-compiler:2.5.1"
|
||||
kapt "androidx.room:room-compiler:2.5.2"
|
||||
implementation "androidx.room:room-runtime:2.5.2"
|
||||
annotationProcessor "androidx.room:room-compiler:2.5.2"
|
||||
}
|
||||
|
|
|
@ -46,7 +46,11 @@ class HiddenIconsActivity : SimpleActivity(), RefreshRecyclerViewListener {
|
|||
})
|
||||
).toMutableList() as ArrayList<HiddenIcon>
|
||||
|
||||
manage_hidden_icons_placeholder.beVisibleIf(hiddenIcons.isEmpty())
|
||||
val hiddenIconsEmpty = hiddenIcons.isEmpty()
|
||||
runOnUiThread {
|
||||
manage_hidden_icons_placeholder.beVisibleIf(hiddenIconsEmpty)
|
||||
}
|
||||
|
||||
if (hiddenIcons.isNotEmpty()) {
|
||||
val intent = Intent(Intent.ACTION_MAIN, null)
|
||||
intent.addCategory(Intent.CATEGORY_LAUNCHER)
|
||||
|
|
|
@ -69,7 +69,7 @@
|
|||
style="@style/SettingsHolderTextViewOneLinerStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/ripple_top_corners">
|
||||
android:background="@drawable/ripple_background">
|
||||
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
android:id="@+id/settings_purchase_thank_you"
|
||||
|
@ -85,7 +85,7 @@
|
|||
style="@style/SettingsHolderCheckboxStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/ripple_bottom_corners">
|
||||
android:background="@drawable/ripple_background">
|
||||
|
||||
<com.simplemobiletools.commons.views.MyAppCompatCheckbox
|
||||
android:id="@+id/settings_use_english"
|
||||
|
@ -125,7 +125,7 @@
|
|||
style="@style/SettingsHolderTextViewOneLinerStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/ripple_bottom_corners">
|
||||
android:background="@drawable/ripple_background">
|
||||
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
android:id="@+id/settings_manage_hidden_icons"
|
||||
|
@ -152,7 +152,7 @@
|
|||
style="@style/SettingsHolderTextViewOneLinerStyle"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/ripple_bottom_corners">
|
||||
android:background="@drawable/ripple_background">
|
||||
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
android:id="@+id/settings_drawer_column_count_label"
|
||||
|
|
|
@ -11,5 +11,5 @@
|
|||
<string name="manage_hidden_icons">Gestiona les icones ocultes</string>
|
||||
<string name="hidden_icons">Icones ocultes</string>
|
||||
<string name="hidden_icons_placeholder">Algunes aplicacions no es poden desinstal·lar a causa de les restriccions del sistema, però almenys podeu ocultar les seves icones per evitar que es vegin.</string>
|
||||
<string name="app_drawer_settings">App drawer</string>
|
||||
</resources>
|
||||
<string name="app_drawer_settings">Calaix d\'aplicacions</string>
|
||||
</resources>
|
|
@ -11,5 +11,5 @@
|
|||
<string name="manage_hidden_icons">Ausgeblendete Symbole verwalten</string>
|
||||
<string name="hidden_icons">Ausgeblendete Symbole</string>
|
||||
<string name="hidden_icons_placeholder">Einige Apps können aufgrund von Systemeinschränkungen nicht deinstalliert werden, aber du kannst zumindest ihre Symbole ausblenden, um sie nicht zu sehen.</string>
|
||||
<string name="app_drawer_settings">App drawer</string>
|
||||
</resources>
|
||||
<string name="app_drawer_settings">App-Schublade</string>
|
||||
</resources>
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">簡易啟動器</string>
|
||||
<string name="app_launcher_name">啟動器</string>
|
||||
<string name="launcher_settings">啟動器設定</string>
|
||||
<string name="app_info">應用程式資訊</string>
|
||||
<string name="touch_hold_widget">長按小工具並將其拖曳至你的主畫面</string>
|
||||
<string name="uninstall">解除安裝</string>
|
||||
<string name="hide_icon">隱藏圖示</string>
|
||||
<string name="add_hidden_icons">新增隱藏圖示</string>
|
||||
<string name="manage_hidden_icons">管理隱藏圖示</string>
|
||||
<string name="hidden_icons">隱藏圖示</string>
|
||||
<string name="hidden_icons_placeholder">由於系統限制,有些應用程式無法被移除,但您至少可以將它們的圖示隱藏起來,避免看到它們。</string>
|
||||
<string name="app_drawer_settings">應用程式抽屜</string>
|
||||
<!--
|
||||
Haven't found some strings? There's more at
|
||||
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
|
||||
-->
|
||||
</resources>
|
|
@ -0,0 +1,31 @@
|
|||
快速啟動您最愛的應用程式。這款應用程式讓您有可能依照自己的喜好來客製化您的主畫面,以得到最佳的用戶體驗。
|
||||
|
||||
您可以將色彩以不同風格來進行客製化。這款啟動器亦配備有黑暗主題,讓您在使用裝置時能感受到更為平滑的觸感。
|
||||
|
||||
輕鬆地移除任何不想要的應用程式,如此一來您就不必再不斷地忽視它。
|
||||
|
||||
它完全支援可以進行縮放及客製化的小工具,所以請盡情使用您最喜歡的小工具。
|
||||
|
||||
它標配有材料設計及黑暗主題,並提供了極佳的用戶體驗以便於使用。相較於其他應用程式,它不需要網路連線,能提供您更多的隱私、安全以及穩定性。使用這款啟動器,您不需要將裝置連結到任何網路。只需安裝它並使用它即可。
|
||||
|
||||
不含廣告或不必要的權限。它是完全開源的,提供可客製化的色彩和黑暗主題,使您的主畫面看起來更為動人。
|
||||
|
||||
特色:
|
||||
|
||||
黑暗主題讓您的裝置觸感更為平滑。
|
||||
簡單的導覽方式讓您能夠選擇最適合自己的啟動器。
|
||||
精美的色彩主題。
|
||||
無煩人的廣告。
|
||||
享受使用!
|
||||
|
||||
查看 Simple Tools 的完整套件:
|
||||
https://www.simplemobiletools.com
|
||||
|
||||
Facebook:
|
||||
https://www.facebook.com/simplemobiletools
|
||||
|
||||
Reddit:
|
||||
https://www.reddit.com/r/SimpleMobileTools
|
||||
|
||||
Telegram:
|
||||
https://t.me/SimpleMobileTools
|
|
@ -0,0 +1 @@
|
|||
一個實用且可自訂的啟動器,讓您輕鬆啟動喜愛的應用程式
|
|
@ -0,0 +1 @@
|
|||
簡易啟動器
|
Loading…
Reference in New Issue