launcher3 的默認桌面應用是在 res/xml裏
默認有4種樣式
default_workspace_3x3.xml
default_workspace_4x4.xml
default_workspace_5x5.xml
default_workspace_5x6.xmljava
咱們看看default_workspace_3x3.xmlandroid
<?xml version="1.0" encoding="utf-8"?> <favorites xmlns:launcher="http://schemas.android.com/apk/res-auto/com.android.launcher3"> <!-- Hotseat (We use the screen as the position of the item in the hotseat) --> <!-- Messaging, [All Apps], Dialer --> <resolve launcher:container="-101" launcher:screen="0" launcher:x="0" 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> <!-- All Apps --> <resolve launcher:container="-101" launcher:screen="2" launcher:x="2" 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> <!-- 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> <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 launcher:screen="0" launcher:x="2" 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> <!-- Second last row --> <resolve launcher:screen="0" launcher:x="0" launcher:y="-2" > <favorite launcher:uri="#Intent;action=android.intent.action.MAIN;category=android.intent.category.APP_BROWSER;end" /> <favorite launcher:uri="http://www.example.com/" /> </resolve> <resolve launcher:screen="0" launcher:x="2" launcher:y="-2" > <favorite launcher:uri="#Intent;action=android.media.action.STILL_IMAGE_CAMERA;end" /> <favorite launcher:uri="#Intent;action=android.intent.action.CAMERA_BUTTON;end" /> </resolve> </favorites>
幾個屬性說明spa
<resolve launcher:container="-101"//-101應該表明是hotseat,也就是說此應用將處於hotseat裏 launcher:screen="0"//應用所處屏幕 launcher:x="0"//應用圖標所處x位置 launcher:y="0" >//應用圖標所處y位置 <favorite //標明這是快捷方式 launcher:className="com.android.dialer.DialtactsActivity"//點擊圖標啓動的類 launcher:packageName="com.android.dialer" //應用包名 /> </resolve>
其餘說明
x,y,screen
code