2016-04-29から1日間の記事一覧

【Android】string.xmlで先頭と最後のスペースが無視されてしまう場合の対応

このように指定するとスペースが無視されてしまう <resources> <string name="hogeText"> hoge </string> </resources> 文字列を"ダブルクオート"で囲うことでスペースが適応される <resources> <string name="hogeText">" hoge "</string> </resources>

【Android】TextViewをコードからBOLDにする方法

xmlから指定するとこんな感じ <TextView android:id="@+id/hoge_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textStyle="bold" android:text="hogehoge" /> これをコードからやりたい TextView hogeText = (TextView) findViewById(R.id.hoge_text); hogeText.setTypeface(Typeface.DEFAULT_BOLD); これ…</textview>