Launcher90 新安裝應(yīng)用title 提示---小圓點(diǎn)

# Launcher90 新安裝應(yīng)用title 提示---小圓點(diǎn)

###? ? 前言:

? 縱觀市面上的華為绅项、小米产上、vivo手機(jī) 在桌面或者文件夾中有新安裝應(yīng)用時(shí)會(huì)在title左邊顯示一個(gè)小圓點(diǎn)(顏色主流為綠色)從而提示用戶此應(yīng)用為新安裝的app,可能有以下原因吧: 有一定的導(dǎo)流作用 促使用戶去打開此新安裝的應(yīng)用凶朗,從UI的角度 頁(yè)面較為美觀吧远荠。


? 先看下效果圖:

### 方案和問題:

在sugar版本上可以看到實(shí)現(xiàn)方案為在icon的右上角繪制一個(gè)小圓點(diǎn) 表示新安裝應(yīng)用砸抛,在Icon上面繪制圓點(diǎn)好處為厅翔,iconsize 相同乖坠,畫的小圓點(diǎn)類似角標(biāo)可以準(zhǔn)確確定位置 基本適用于所有應(yīng)用。不會(huì)有位置偏移變化刀闷。

現(xiàn)在改為在新安裝的應(yīng)用title前面添加小圓點(diǎn) 提示熊泵,由于每個(gè)應(yīng)用title長(zhǎng)短不一,需要?jiǎng)討B(tài)計(jì)算title長(zhǎng)度 使小圓點(diǎn)等距離的美觀顯示在桌面上甸昏⊥绶郑看了小米的顯示效果為 小圓點(diǎn)距離title的第一個(gè)字距離都相同,這樣才美觀施蜜。那么在draw 這個(gè)小圓點(diǎn)時(shí) 就需要?jiǎng)討B(tài)計(jì)算title首字母的坐標(biāo)了卒蘸,這樣才能根據(jù)不同的title動(dòng)態(tài)等距離的顯示小圓點(diǎn),美觀的展示給用戶翻默。

先看下所有APP 調(diào)試效果圖缸沃。

會(huì)根據(jù)每個(gè)應(yīng)用的title前面顯示一個(gè)小圓點(diǎn),距離需要等寬修械。

### 具體實(shí)現(xiàn)方案:

在新安裝APP的title顯示小圓點(diǎn)在BubbleTextView.java 類中實(shí)現(xiàn)趾牧,需要在桌面添加創(chuàng)建此icon shortcut時(shí) 增加判斷是否是新安裝應(yīng)用。

首先看下shortcut 實(shí)現(xiàn)肯污,

代碼位置:Z:\work\Launcher90\src\com\android\launcher3\BubbleTextView.java

由于桌面文件夾和deep shortcut hotset都是繼承BubbleTextView.java 所以在創(chuàng)建是需增加判斷過濾翘单。

protected void drawRemindIcon(Canvas canvas) {

? ? ? ? if (getTag() != null && getTag() instanceof ShortcutInfo) {

? ? ? ? ? ? ShortcutInfo info = (ShortcutInfo) getTag();

? ? ? ? ? ? DeviceProfile grid = mActivity.getDeviceProfile();

? ? ? ? ? ? int paddingTop = mIconSize;

? ? ? ? ? ? int paddingleft = mOffsetRemindLeft;

? ? ? ? ? ? int position = 0;

? ? ? ? ? ? Layout layout = getLayout();

? ? ? ? ? ? Rect bound = new Rect();

? ? ? ? ? ? int line = layout.getLineForOffset(position);

? ? ? ? ? ? layout.getLineBounds(line, bound);

? ? ? ? ? ? int yAxisTop = bound.top;//字符頂部y坐標(biāo)

? ? ? ? ? ? int yAxisBottom = bound.bottom;//字符底部y坐標(biāo)

? ? ? ? ? ? float xAxisLeft = layout.getPrimaryHorizontal(position);//字符左邊x坐標(biāo)

? ? ? ? ? ? float xAxisRight = layout.getSecondaryHorizontal(position);//字符右邊x坐標(biāo)

? ? ? ? ? ? if (mDisplay == DISPLAY_WORKSPACE) {

? ? ? ? ? ? ? ? paddingleft = (int) xAxisLeft;

? ? ? ? ? ? ? ? paddingTop = mIconSize + (yAxisBottom - yAxisTop) / 2 + 2 * grid.iconDrawablePaddingPx;

? ? ? ? ? ? } else if (mDisplay == DISPLAY_FOLDER) {

? ? ? ? ? ? ? ? paddingleft = (int) xAxisLeft - mOffsetRemindLeft;

? ? ? ? ? ? ? ? paddingTop = mIconSize + (yAxisBottom - yAxisTop) / 4 + grid.iconDrawablePaddingPx/2;

? ? ? ? ? ? } else if (mDisplay == DISPLAY_SHORTCUT) {

? ? ? ? ? ? ? ? isShowRemind = false;

? ? ? ? ? ? } else if (mDisplay == DISPLAY_WIDGET) {

? ? ? ? ? ? ? ? isShowRemind = false;

? ? ? ? ? ? }

? ? ? ? ? ? LogUtil.d(TAG, "yAxisTop:" + yAxisTop + "yAxisBottom" + yAxisBottom + "xAxisLeft:" + xAxisLeft + "xAxisRight" + xAxisRight + "grid.iconDrawablePaddingPx" + grid.iconDrawablePaddingPx);

? ? ? ? ? ? if (info.remind && isShowRemind && shouldTextBeVisible()) {

? ? ? ? ? ? ? ? canvas.save();

? ? ? ? ? ? ? ? canvas.drawBitmap(LauncherAppState.getInstance(mContext).getBitmapAndDrawableCache().getRemindIcon(), paddingleft, paddingTop, null);

? ? ? ? ? ? ? ? canvas.restore();

? ? ? ? ? ? }

? ? ? ? }

? ? }



? ? 此段會(huì)增加判斷只在桌面快捷方式 文件夾內(nèi)部顯示小圓點(diǎn) ,文件夾前面的需要后面特殊處理蹦渣。


? ? 主要用到 Layout layout = getLayout();

? ? ? ? ? ? Rect bound = new Rect();

? ? ? ? ? ? int line = layout.getLineForOffset(position);

? ? ? ? ? ? layout.getLineBounds(line, bound);

? ? ? ? ? ? int yAxisTop = bound.top;//字符頂部y坐標(biāo)

? ? ? ? ? ? int yAxisBottom = bound.bottom;//字符底部y坐標(biāo)

? ? ? ? ? ? float xAxisLeft = layout.getPrimaryHorizontal(position);//字符左邊x坐標(biāo)

? ? ? ? ? ? float xAxisRight = layout.getSecondaryHorizontal(position);//字符右邊x坐標(biāo)

可以動(dòng)態(tài)計(jì)算title最前面字符的左邊哄芜,有了它就可以canvas.drawBitmap 了。

快捷方式實(shí)現(xiàn)了柬唯。

接下來看下文件夾的實(shí)現(xiàn)方式认臊,文件夾需要特殊處理,要根據(jù)folder 內(nèi)部是否有新安裝應(yīng)用锄奢,如果folder內(nèi)部有新安裝應(yīng)用失晴,在打開文件夾是顯示在應(yīng)用前面冤议,當(dāng)關(guān)閉文件夾時(shí)會(huì)顯示子文件夾title的前面(由于文件夾name 是可以自己定義的需要?jiǎng)討B(tài)計(jì)算顯示在前面);


? ? 先看下調(diào)試效果师坎。




? ? 源碼位置:

? ? Z:\work\Launcher90\src\com\android\launcher3\folder\FolderIcon.java


? ? 在dispatchDraw(Canvas canvas)方法中循環(huán)遍歷下folder內(nèi)部是否有新安裝應(yīng)用。


? ? ? int count = mInfo.contents.size();

? ? ? ? boolean needremind = false;

? ? ? ? for (int i=0; i<count; i++) {

? ? ? ? ? ? ShortcutInfo info = mInfo.contents.get(i);

? ? ? ? ? ? if (CustomConfigManager.getInstance().supportFolderIconUnread) {

? ? ? ? ? ? ? ? if (info.unreadNum > 0) {

? ? ? ? ? ? ? ? ? ? needremind = false;

? ? ? ? ? ? ? ? ? ? break;

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }

? ? ? ? ? ? if (info.remind) {

? ? ? ? ? ? ? ? needremind = true;

? ? ? ? ? ? ? ? if (CustomConfigManager.getInstance().supportFolderIconUnread) {

? ? ? ? ? ? ? ? ? ? continue;

? ? ? ? ? ? ? ? }else {

? ? ? ? ? ? ? ? ? ? break;

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? if (needremind) {

? ? ? ? ? ? drawFolderRemind(canvas);

? ? ? ? }



? ? ? ? private void drawFolderRemind(Canvas canvas) {

? ? ? ? canvas.save();

? ? ? ? int textureWidth = this.getWidth();

? ? ? ? int paddingTop = this.getPaddingTop();

? ? ? ? int paddingleft = mOffsetRemindLeft;

? ? ? ? DeviceProfile grid = mLauncher.getDeviceProfile();

? ? ? ? DisplayMetrics dm = mLauncher.getResources().getDisplayMetrics();

? ? ? ? int position = 0;

? ? ? ? if (mFolderName == null) {

? ? ? ? ? ? return;

? ? ? ? }

? ? ? ? Layout layout = mFolderName.getLayout();

? ? ? ? Rect bound = new Rect();

? ? ? ? int line = layout.getLineForOffset(position);

? ? ? ? layout.getLineBounds(line, bound);

? ? ? ? int yAxisTop = bound.top;//字符頂部y坐標(biāo)

? ? ? ? int xAxisCenter = bound.centerX();//字符頂部y坐標(biāo)

? ? ? ? int yAxisBottom = bound.bottom;//字符底部y坐標(biāo)

? ? ? ? float xAxisLeft = layout.getPrimaryHorizontal(position);//字符左邊x坐標(biāo)

? ? ? ? float xAxisRight = layout.getSecondaryHorizontal(position);//字符右邊x坐標(biāo)

? ? ? ? paddingTop = grid.iconSizePx + (yAxisBottom - yAxisTop) / 2 + 2 * grid.iconDrawablePaddingPx;

? ? ? ? paddingleft = textureWidth/2 - (xAxisCenter - (int) xAxisLeft)-mOffsetRemindLeft;


? ? ? ? canvas.drawBitmap(LauncherAppState.getInstance(mLauncher).getBitmapAndDrawableCache().getRemindIcon(), paddingleft, paddingTop, null);

? ? ? ? canvas.restore();

? ? }



? ? 和shortcut 創(chuàng)建流程基本類似 需要計(jì)算文件夾name左邊堪滨,在調(diào)試過程中 發(fā)現(xiàn) 文件夾的name首字母坐標(biāo)不是left值 需要this.getWidth()/2 減去 name中心坐標(biāo)和首字母坐標(biāo)胯陋,會(huì)隨首字母坐標(biāo)變left變小.


? ? 到此顯示布局邏輯基本實(shí)現(xiàn)了接下來需要控制判斷哪些是新安裝的應(yīng)用才顯示。



### 如何判斷新安裝應(yīng)用:

源碼位置:

Z:\work\Launcher90\src\com\android\launcher3\Workspace.java

Z:\work\Launcher90\src\com\ape\launcher3\MyosLauncher.java

本次實(shí)現(xiàn)方案沒有保存在數(shù)據(jù)庫(kù)中袱箱,在監(jiān)聽新安裝應(yīng)用時(shí) 保存此應(yīng)用的包名到sp,

然后再luncher onresume 或者

public void finishBindingItems() 分別刷新下遏乔。

? public void refreshRemindIcon() {


? ? ? ? LogUtil.d(TAG, "refreshRemindIcon()");

? ? ? ? Set<String> set = DownloadRemind.getAllReminValue(MyosLauncher.this);

? ? ? ? final HashMap<String, Integer> remindMap = new HashMap<>();

? ? ? ? LogUtil.d(TAG, "remindMap");

? ? ? ? for (String s : set) {

? ? ? ? ? ? int state = DownloadRemind.isRemindApp(MyosLauncher.this, s) ? 0 : 1;

? ? ? ? ? ? LogUtil.d(TAG, "refreshRemindIcon : packageName = " + s + ", state = " + state);

? ? ? ? ? ? remindMap.put(s, state);

? ? ? ? }

? ? ? ? mHandler.post(new Runnable() {

? ? ? ? ? ? public void run() {

? ? ? ? ? ? ? ? if (mWorkspace != null) {

? ? ? ? ? ? ? ? ? ? mWorkspace.updateShortcutsAndFoldersRemind(remindMap);

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }

? ? ? ? });

? ? }

刷新遍歷 ShortcutInfo 、FolderInfo发笔、Hotseat是否包含在sp中的包名remind info 信息盟萨。

public void updateShortcutsAndFoldersRemind(HashMap<String, Integer> remindMap) {

? ? ? ? final ArrayList<ShortcutAndWidgetContainer> childrenLayouts = getAllShortcutAndWidgetContainers();

? ? ? ? int childCount = 0;

? ? ? ? View view = null;

? ? ? ? Object tag = null;

? ? ? ? for (ShortcutAndWidgetContainer layout : childrenLayouts) {

? ? ? ? ? ? childCount = layout.getChildCount();

? ? ? ? ? ? for (int j = 0; j < childCount; j++) {

? ? ? ? ? ? ? ? view = layout.getChildAt(j);

? ? ? ? ? ? ? ? tag = view.getTag();

? ? ? ? ? ? ? ? if (tag instanceof ShortcutInfo) {

? ? ? ? ? ? ? ? ? ? final ShortcutInfo info = (ShortcutInfo) tag;

? ? ? ? ? ? ? ? ? ? final Intent intent = info.intent;

? ? ? ? ? ? ? ? ? ? final ComponentName componentName = intent.getComponent();

? ? ? ? ? ? ? ? ? ? if (componentName != null && componentName.getPackageName() != null

? ? ? ? ? ? ? ? ? ? ? ? ? ? && remindMap.containsKey(componentName.getPackageName())) {

? ? ? ? ? ? ? ? ? ? ? ? ////this is remind app

? ? ? ? ? ? ? ? ? ? ? ? if (remindMap.get(componentName.getPackageName()) == 0) {

? ? ? ? ? ? ? ? ? ? ? ? ? ? info.remind = true;

? ? ? ? ? ? ? ? ? ? ? ? } else {

? ? ? ? ? ? ? ? ? ? ? ? ? ? info.remind = false;

? ? ? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? ? ? ((BubbleTextView)view).invalidate();

? ? ? ? ? ? ? ? ? ? //((BubbleTextView) view).mFavorite.invalidate();

? ? ? ? ? ? ? ? } else if (tag instanceof FolderInfo) {

? ? ? ? ? ? ? ? ? ? ((FolderIcon) view).updateFolderRemind(remindMap);

? ? ? ? ? ? ? ? ? ? ((FolderIcon) view).invalidate();

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }

? ? ? ? }

? ? ? ? mLauncher.getHotseat().updateRemindApps(remindMap);

? ? }




### title圓點(diǎn)如何消失:

? 目前處理 判別應(yīng)用是否進(jìn)入新應(yīng)用,為從桌面點(diǎn)擊 startactivity 即認(rèn)為不是新應(yīng)用了需要移除標(biāo)志位了讨。


? public boolean startActivitySafely(View v, Intent intent, ItemInfo item) {


? ? ? ? boolean success = super.startActivitySafely(v, intent, item);

? ? ? ? if (success && v instanceof BubbleTextView) {

? ? ? ? ? ? // This is set to the view that launched the activity that navigated the user away

? ? ? ? ? ? // from launcher. Since there is no callback for when the activity has finished

? ? ? ? ? ? // launching, enable the press state and keep this reference to reset the press

? ? ? ? ? ? // state when we return to launcher.

? ? ? ? ? ? BubbleTextView btv = (BubbleTextView) v;

? ? ? ? ? ? btv.setStayPressed(true);

? ? ? ? ? ? setOnResumeCallback(btv);

? ? ? ? ? ? if (DownloadRemind.isRemindApp(this, intent.getComponent().getPackageName())) {

? ? ? ? ? ? ? ? DownloadRemind.setDownloadAppsRemind(this, intent.getComponent().getPackageName(), false);

? ? ? ? ? ? }

? ? ? ? ? ? LogUtil.d(TAG, "startActivitySafely success:" + success + "PackageName:" + intent.getComponent().getPackageName());

? ? ? ? }

? ? ? ? return success;

? ? }


? 設(shè)置對(duì)應(yīng)的包名 value 為false;



? 以上為新安裝應(yīng)用的title 小圓點(diǎn)draw位置捻激、顯示、和消失基本邏輯 方案前计。方法很多如有好的更優(yōu)的方法 歡迎指正胞谭。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市男杈,隨后出現(xiàn)的幾起案子丈屹,更是在濱河造成了極大的恐慌,老刑警劉巖伶棒,帶你破解...
    沈念sama閱讀 212,718評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件旺垒,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡肤无,警方通過查閱死者的電腦和手機(jī)先蒋,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來舅锄,“玉大人鞭达,你說我怎么就攤上這事』史蓿” “怎么了畴蹭?”我有些...
    開封第一講書人閱讀 158,207評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)鳍烁。 經(jīng)常有香客問我叨襟,道長(zhǎng),這世上最難降的妖魔是什么幔荒? 我笑而不...
    開封第一講書人閱讀 56,755評(píng)論 1 284
  • 正文 為了忘掉前任糊闽,我火速辦了婚禮梳玫,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘右犹。我一直安慰自己提澎,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,862評(píng)論 6 386
  • 文/花漫 我一把揭開白布念链。 她就那樣靜靜地躺著盼忌,像睡著了一般。 火紅的嫁衣襯著肌膚如雪掂墓。 梳的紋絲不亂的頭發(fā)上谦纱,一...
    開封第一講書人閱讀 50,050評(píng)論 1 291
  • 那天,我揣著相機(jī)與錄音君编,去河邊找鬼跨嘉。 笑死,一個(gè)胖子當(dāng)著我的面吹牛吃嘿,可吹牛的內(nèi)容都是我干的祠乃。 我是一名探鬼主播,決...
    沈念sama閱讀 39,136評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼唠椭,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼跳纳!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起贪嫂,我...
    開封第一講書人閱讀 37,882評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤寺庄,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后力崇,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體斗塘,經(jīng)...
    沈念sama閱讀 44,330評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,651評(píng)論 2 327
  • 正文 我和宋清朗相戀三年亮靴,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了馍盟。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,789評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡茧吊,死狀恐怖贞岭,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情搓侄,我是刑警寧澤瞄桨,帶...
    沈念sama閱讀 34,477評(píng)論 4 333
  • 正文 年R本政府宣布,位于F島的核電站讶踪,受9級(jí)特大地震影響芯侥,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,135評(píng)論 3 317
  • 文/蒙蒙 一柱查、第九天 我趴在偏房一處隱蔽的房頂上張望廓俭。 院中可真熱鬧,春花似錦唉工、人聲如沸研乒。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)告嘲。三九已至,卻和暖如春奖地,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背赋焕。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評(píng)論 1 267
  • 我被黑心中介騙來泰國(guó)打工参歹, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人隆判。 一個(gè)月前我還...
    沈念sama閱讀 46,598評(píng)論 2 362
  • 正文 我出身青樓犬庇,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親侨嘀。 傳聞我的和親對(duì)象是個(gè)殘疾皇子臭挽,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,697評(píng)論 2 351

推薦閱讀更多精彩內(nèi)容