2

自分のアプリケーションをクイック コンタクト バッジに表示したいと思います。私は SyncAdapter を使用しました (この素晴らしいチュートリアルで説明されているように)。

しかし、このバッジをすべての連絡先に表示してアプリを開くだけにしたいので、既存の連絡先ごとに独自のアカウントと連絡先を作成し、このアカウントを更新し続けるのは非常に面倒な方法です。

それを行う別の方法はありますか?

QuickContactバッジ

4

1 に答える 1

2

No, it doesn't.

The key is using the right mime type. To make my app visible in the quick contact badge for all contacts I used the following settings in my manifest file:

        <activity
        android:name=".activities.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>

        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <data android:mimeType="vnd.android.cursor.item/name" />
        </intent-filter>
    </activity>

and that's it - no sync provider or any additional services or activities.

I would be grateful if anyone knows how to make the application badge available only to contacts with phone number, instead for all contacts.

于 2012-06-04T09:59:08.590 に答える