久しぶりの更新です。 最近Androidのアプリ制作に打ち込んでいたため、ブログ更新に手が回りませんでした。 では、Androidアプリ制作で利用した小ネタを書き留めておきたいと思います。 ImageButtonパーツ ImageButtonパーツは、Buttonの表示にイメージを利用できる便利なパーツです。 (Bitmapリソースの管理がよくないらしいですが、、、) レイアウトXMLから利用するコード例はこんな感じになります。 <ImageButton android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:scaleType="centerInside" android:background="@null" android:src=
