富士山とほぼ同じ標高のサンタ・マリア火山から見たサンティアギート火山。
Ixcanulとはマヤ・キチェ語で火山の意味。
富士山とほぼ同じ標高のサンタ・マリア火山から見たサンティアギート火山。
Ixcanulとはマヤ・キチェ語で火山の意味。
.xmlで以下の1行を加える。
1 |
android:maxLines="1" |
以上。
まずはカスタム・フォントを利用することに特化したクラスを作成。
FontChange.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
import android.content.res.AssetManager; import android.graphics.Typeface; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; public class FontChange { private Typeface typeface; public FontChange(AssetManager assets, String assetsFontFileName) { typeface = Typeface.createFromAsset(assets, assetsFontFileName); } public void replaceFonts(ViewGroup viewTree) { View child; for(int i = 0; i < viewTree.getChildCount(); ++i) { child = viewTree.getChildAt(i); if(child instanceof ViewGroup) { // recursive call replaceFonts((ViewGroup)child); } else if(child instanceof TextView) { // base case ((TextView) child).setTypeface(typeface); } } } } |
カスタム・フォントへはAssetsフォルダからアクセス:
フォントを変更したいアクティビティ内(onCreate)で以下を追加:
1 2 |
FontChange font = new FontChange(getAssets(), "JiyunoTsubasa.ttf"); font.replaceFonts((ViewGroup)this.findViewById(android.R.id.content)); |
これでアクティビティ全体にカスタム・フォントが適用される。
アンドロイドのアプリを更新する際にはバージョン情報を更新する必要がある。これはアプリ・レベルのbuild.gradleで。
1 2 3 4 5 6 7 8 9 |
android { ... minSdkVersion 21 targetSdkVersion 25 versionCode 3 versionName "1.2" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } |
ここのversionCodeとversionNameの値を変える。変えないでももちろんコンパイルは出来るが、.apkをアップロードした後、エラーが出る。アップロードする際に変更していることが必須なのはVersionCodeの方。