Android之建立程式捷徑

來源:互聯網
上載者:User

建立捷徑是需要在案頭中長按,然後選擇shortcut,然後在選擇需要建立捷徑的程式。以下是步驟:

1. 首先,需要在AndroidManifest中添加<action android:name="android.intent.action.CREATE_SHORTCUT" /> 

1A.  判斷是否要添加捷徑:if (getIntent().getAction().equals(Intent.ACTION_CREATE_SHORTCUT))

2. 建立一個Intent對象

3. 使用這個對象(第2步的Intent對象)建立捷徑的名字,第一個參數固定,第二個參數自訂:putExtra(Intent.EXTRA_SHORTCUT_NAME, "發送郵件"); 

4. 構建捷徑中專門的表徵圖,最終在案頭上顯示的表徵圖,第一個參數是context,第二個參數是圖片資源檔:Parcelable icon = Intent.ShortcutIconResource.fromContext(this,R.drawable.mail_edit); 

5. 使用Intent對象(第2步的Intent對象)添加捷徑表徵圖:putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,icon); 

6. 構建捷徑執行的Intent,也就是當點擊該捷徑後執行的操作。這裡的樣本為開啟郵件:
Intent mailto = new  Intent(Intent.ACTION_SENDTO, Uri.parse( "mailto:xxx@xxx.com" ));  

7. 使用Intent對象(第2步的Intent對象)添加捷徑Intent:putExtra(Intent.EXTRA_SHORTCUT_INTENT, mailto); 

8. 使用setResult方法返回,第一個參數可以為RESULT_OK或者是RESULT_CANCELED,第二個參數就是第2步的Intent對象:setResult(RESULT_OK,Intent對象);  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.