Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

マルチデバイス対応の基礎の章をレビューしました #37

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions articles/multidevice-01.re
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Androidを搭載している端末の種類はものすごい勢いで増加し
* 画面サイズ
* 通話機能やセンサーなどの有無

もし、このような違い、機種依存があることを考えずにAndroidアプリを開発した場合、すばらしいユーザー体験をできるのが一部の端末ユーザーのみとなります
もし、このような違いや機種依存があることを考えずにAndroidアプリを開発した場合、すばらしいユーザー体験をできるのは一部の端末ユーザーのみとなります
検証が足りていない端末を使っているユーザーからは低評価を受け、ユーザー体験の低下に繋がることでしょう。

本章では、作成したAndroidアプリをより多くの機種に、ユーザー体験を低下させずに提供するための方法を解説します。
Expand Down Expand Up @@ -233,7 +233,7 @@ private Notification createNotification(Bitmap bigIcon) {

== エミュレーターでのテスト

作成しているAndroidアプリが正しく多機種対応できているかを、アプリを動作させて確認しましょう。OSバージョンやピクセル密度の異なる端末を用意するのは費用、手間の面で現実的ではありませんAndroid SDK付属のエミュレーターを使用しましょう。
作成しているAndroidアプリが正しく多機種対応できているかを、アプリを動作させて確認しましょう。OSバージョンやピクセル密度の異なる端末を用意するのは費用、手間の面で現実的ではありませんAndroid SDK付属のエミュレーターを使用しましょう。

* エミュレーターのシステムイメージをインストールする

Expand Down