高通Android 12 Launcher应用名称太长显示完整

复制代码
 1、packages/apps/Launcher3/res/values/dimens.xml

<dimen name="page_indicator_dot_size">8dp</dimen>

<dimen name="folder_cell_x_padding">9dp</dimen>

  • <dimen name="folder_cell_y_padding">6dp</dimen>
  • <dimen name="folder_cell_y_padding">20dp</dimen>

<!-- label text size = workspace text size multiplied by this scale -->

<dimen name="folder_label_text_scale">1.14</dimen>

<dimen name="folder_label_height">48dp</dimen>

复制代码
2、packages/apps/Launcher3/res/values/styles.xml

<!-- Base theme for BubbleTextView and sub classes -->

<style name="BaseIcon" parent="BaseIconUnBounded">

  • <item name="android:lines">1</item>
  • <!--<item name="android:lines">1</item>-->

  • <item name="android:maxLines">3</item>

  • <item name="android:ellipsize">end</item>

</style>

效果如下

转载请注明出处高通Android 12 Launcher应用显示完整名称-CSDN博客,谢谢!

相关推荐
阿巴斯甜9 小时前
Android 报错:Zip file '/Users/lyy/develop/repoAndroidLapp/l-app-android-ble/app/bu
android
Kapaseker10 小时前
实战 Compose 中的 IntrinsicSize
android·kotlin
xq952711 小时前
Andorid Google 登录接入文档
android
黄林晴12 小时前
告别 Modifier 地狱,Compose 样式系统要变天了
android·android jetpack
冬奇Lab1 天前
Android触摸事件分发、手势识别与输入优化实战
android·源码阅读
城东米粉儿1 天前
Android MediaPlayer 笔记
android
Jony_1 天前
Android 启动优化方案
android
阿巴斯甜1 天前
Android studio 报错:Cause: error=86, Bad CPU type in executable
android
张小潇1 天前
AOSP15 Input专题InputReader源码分析
android
_小马快跑_1 天前
Kotlin | 协程调度器选择:何时用CoroutineScope配置,何时用launch指定?
android