2013-06-05 52 views
1

我正在尋找我的筆記應用程序可以捕獲的意圖過濾器,例如Google現在想要保存筆記。我知道Google Keep和GTask可以捕獲這些內容,但是它是什麼?Android意圖過濾器筆記

回答

1

有它:

<intent-filter> 
<action android:name="com.google.android.gm.action.AUTO_SE ND" /> 
<category android:name="android.intent.category.DEFAULT" /> 
<data android:mimeType="*/*" /> 
</intent-filter> 

和代碼

String str = getIntent().getStringExtra("android.intent.extra.T EXT");