コメントに返信
2009年2月11日
Android 1.1 SDK リリース
Android SDKがバージョンアップして、1.1になりました。以下のように変更は大きくないので、1.0のコードはそのまま動くはず。
1.1のコードはG1のRC33で動くが、ADP1のファームは待ち状態。JF-ADP1.1では動くでしょうが、明日テストしてみる。
新機能
- Maps: Adds details and reviews when a user does a search on Maps and clicks on a business to view its details.
- Dialer: In-call screen timeout default is now longer when using the speakerphone.
- Dialer: Adds a "Show dialpad" / "Hide dialpad" item to the in-call menu, to make it easier to discover the DTMF dialpad.
- Adds support for saving attachments from MMS
- Adds support for marquee in layouts.
APIの変更
- Adds annotations for test systems, no actual (non-test) API changes.
- Adds a method to allow a process to easily determine its UID.
- Adds support for marquee in layouts.
- Adds new methods for determining padding in views. Useful if you are writing your own subclasses of View.
- Adds new permissions that allow an application to broadcast an SMS or WAP Push message.
- API cleanup: removes protected constructor from SDK-bound system images.
今回の最も大きなトピックは、アプリがサポートしているAPIのバージョンを指定することが出来るようになったことですかね。マニュフェストファイルに、
...
<uses-sdk minSdkVersion="2" />
...
</manifest>
のように記述します。
- Android /
