This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ImageButton | |
android:id="@+id/imageView01" | |
android:layout_width="wrap_content" | |
android:layout_height="match_parent" | |
android:layout_margin="3dp" | |
android:layout_weight="1" | |
android:background="@drawable/btn_main01" | |
android:elevation="3dp" /> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
android:elevation="3dp" | |
ex. | |
<ImageButton | |
android:id="@+id/imageView01" | |
android:layout_width="wrap_content" | |
android:layout_height="match_parent" | |
android:background="@drawable/btn_main01" | |
android:layout_margin="3dp" | |
android:layout_weight="1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<resources> | |
<!-- Base application theme. --> | |
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar" > | |
<!-- システムバーの色 --> | |
<item name="colorPrimaryDark">#1B5E20</item> | |
<!-- アクションバーの色 --> | |
<item name="colorPrimary">#388E3C</item> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
プロジェクトの作成 | |
helloディレクトリ以下にアプリの識別子としてcom.example.helloを持つ「HelloWorld」という名前のアプリのプロジェクトを作成 | |
cordova create sample com.example.hello HelloWorld -d | |
cordova create hello(DIRfolder) com.example.hello HelloWorld(appname) -d | |
cd hello |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
プロジェクトのcordovaアップデート | |
旧バージョンで作成したプロジェクトを確認 | |
cordova platform check | |
プロジェクトを新バージョンでアップデート | |
cordova platform update android | |
cordova platform update ios | |
アップデート後の確認 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cordovaのアップデート | |
cordovaのバージョンを確認する | |
cordova -v | |
node.jsのバージョンを確認する | |
node -v | |
npmでcordovaをアップデートする | |
sudo npm update cordova -g |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cordovaのインストール | |
node.js→npm(バージョン管理)→cordova | |
node.jsのインストール(npmも含まれる) | |
http://nodejs.org/ | |
node.jsのバージョンを確認する | |
node -v |