このドキュメントはこちら: http://developer.android.com/guide/topics/ui/notifiers/notifications.html#CustomExpandedView
言います:
... Android 2.3 以降の通知にシステムの既定の色を適用するには、次のスタイルを使用しますres/values-v9/styles.xml
。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="NotificationText" parent="android:TextAppearance.StatusBar.EventContent" />
<style name="NotificationTitle" parent="android:TextAppearance.StatusBar.EventContent.Title" />
</resources>
開発にはAndroid 1.6を使用しています。
しかし、上記を実行すると、次のエラーが発生します。
error: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.StatusBar.EventContent'.
何か案が?
ありがとう