溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

android中怎么使用Launcher3設(shè)置默認(rèn)桌面應(yīng)用

發(fā)布時間:2021-06-12 18:58:12 來源:億速云 閱讀:204 作者:Leah 欄目:移動開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)android中怎么使用Launcher3設(shè)置默認(rèn)桌面應(yīng)用,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

默認(rèn)有4種樣式

default_workspace_3x3.xml
default_workspace_4x4.xml
default_workspace_5x5.xml
default_workspace_5x6.xml

我們看看default_workspace_3x3.xml

<?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>

幾個屬性說明

<resolve
  launcher:container="-101"//-101應(yīng)該代表是hotseat,也就是說此應(yīng)用將處于hotseat里
  launcher:screen="0"//應(yīng)用所處屏幕
  launcher:x="0"//應(yīng)用圖標(biāo)所處x位置
  launcher:y="0" >//應(yīng)用圖標(biāo)所處y位置 
  <favorite //標(biāo)明這是快捷方式
  launcher:className="com.android.dialer.DialtactsActivity"//點擊圖標(biāo)啟動的類
  launcher:packageName="com.android.dialer" //應(yīng)用包名 />
</resolve>

其他說明
x,y,screen

android中怎么使用Launcher3設(shè)置默認(rèn)桌面應(yīng)用

關(guān)于android中怎么使用Launcher3設(shè)置默認(rèn)桌面應(yīng)用就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI