2013-09-26 68 views
1

這是當我在我的Android設備上的長按主頁按鈕時發生的情況。 正如你所看到的,除了谷歌現在,還有兩個其他應用程序...如何添加我的應用程序以長按主頁按鈕?

我需要添加我自己的應用程序到這個菜單,但我無法找到任何地方如何去編碼它。

解決方案我在StackOverflow上找到的,如this one在說,這是不可能的,我必須紮根等。但是,我的手機沒有紮根,這兩個其他應用程序能夠做到這一點。怎麼樣?

我將在啤酒和金支付:)

Screenshot

enter image description here

回答

0

我的應用程序將不會出現在最近的應用程序列表或者直到我加了標籤的主要活動。

<activity 
     android:name=".MainActivity" 
     android:label="@string/app_name_short" > <!-- this attribute can't be empty --> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 
      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
</activity> 
相關問題