Gmail Android 版應用程式包含 內容供應器 第三方開發人員可以使用 ,且會在資訊變更時隨時保持最新狀態。例如,應用程式 或小工具可能會顯示特定帳戶的收件匣的未讀取數量。
使用此內容供應器前,請先呼叫
GmailContract.canReadLabels(Context)
敬上
方法,判斷使用者的 Gmail 應用程式是否支援這些支援網路
舉個簡單的例子,您可以定義情境
並指示 AI 如何回應服務中心查詢
找出要查詢的有效 Gmail 帳戶
應用程式必須先找出有效的 Gmail 帳戶的電子郵件地址,才能進行查詢
標籤資訊使用
GET_ACCOUNTS
敬上
權限,
AccountManager
會傳回這項資訊:
// Get the account list, and pick the first one
final String ACCOUNT_TYPE_GOOGLE = "com.google";
final String[] FEATURES_MAIL = {
"service_mail"
};
AccountManager.get(this).getAccountsByTypeAndFeatures(ACCOUNT_TYPE_GOOGLE, FEATURES_MAIL,
new AccountManagerCallback() {
@Override
public void run(AccountManagerFuture future) {
Account[] accounts = null;
try {
accounts = future.getResult();
if (accounts != null && accounts.length > 0) {
String selectedAccount = accounts[0].name;
queryLabels(selectedAccount);
}
} catch (OperationCanceledException oce) {
// TODO: handle exception
} catch (IOException ioe) {
// TODO: handle exception
} catch (AuthenticatorException ae) {
// TODO: handle exception
}
}
}, null /* handler */);
查詢內容供應器
只要選取電子郵件地址,您就可以
ContentProvider
敬上
要查詢的 URI。我們提供了簡單的類別
GmailContract.java
敬上
來建構 URI 並定義傳回的資料欄。
應用程式可以直接查詢這個 URI。或者,您也可以改用
CursorLoader
敬上
- 取得包含帳戶中所有標籤資訊的遊標:
Cursor labelsCursor = getContentResolver().query(GmailContract.Labels.getLabelsUri(selectedAccount), null, null, null, null);
使用這個遊標中的資料後,您就可以將 URI 值保留在
GmailContract.Labels.URI
資料欄,用於查詢及監控特定應用程式的變更
單一標籤
預先定義標籤的 NAME
值可能因語言代碼而有所不同,因此
使用 GmailContract.Labels.NAME
。現在,您可以
使用
GmailContract.Labels.CANONICAL_NAME
欄:
// loop through the cursor and find the Inbox
if (labelsCursor != null) {
final String inboxCanonicalName = GmailContract.Labels.LabelCanonicalName.CANONICAL_NAME_INBOX;
final int canonicalNameIndex = labelsCursor.getColumnIndexOrThrow(GmailContract.Labels.CANONICAL_NAME);
while (labelsCursor.moveToNext()) {
if (inboxCanonicalName.equals(labelsCursor.getString(canonicalNameIndex))) {
// this row corresponds to the Inbox
}
}
}
如需進一步協助,請參閱 內容供應器基礎知識
查看範例
如要查看這個內容供應器的實際應用範例, 下載範例應用程式。