スポンサーリンク

2015-10-18

Building Android Apps with Animation in Android Studio

Create Project


This app implements the animation that looks like the ball is rolling. First, create a new project. 
  • Start the Android Studio and click [Start a new Android Studio project]
スポンサーリンク

2015-10-11

How to create a Hello World app in Android Studio

What is a "Hello World!"


I have not investigated properly, but it is probably the most famous app in the world. It is just a simple program to display the string "Hello World!" on the screen.

Create a "Hello World!" App

  • Start Android Studio, click the [Start a new Android Studio Project]

2015-10-10

Android アプリの多言語化

作成した Android アプリが端末の言語設定に従って、表示する言語を切り替えられるようになると海外ユーザーにも利用してもらうことができるようになります。言語を切り替えられるようにするには、リソースフォルダ以下に各言語用のフォルダを用意し、そこにリソースファイルを作成します。

日本語と英語の切り替え


端末の言語設定が日本語の場合は日本語を表示し、日本語でない場合は英語を表示するアプリを作成してみます。
  • 新規にプロジェクトを作成したら [res] フォルダを右クリックし [新規] → [Android resource file] をクリック
    スポンサーリンク