エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
ImageButton の画像を Matrix で回転させようとしたときのメモ。 XML の場合は、android:scaleType を m... ImageButton の画像を Matrix で回転させようとしたときのメモ。 XML の場合は、android:scaleType を matrix にする。コードに直接書く場合は、setScaleType(ImageView.ScaleType.MATRIX) が必要。 button = (ImageButton)findViewById(R.id.ImageButton01); button.setImageResource(android.R.drawable.ic_media_play); // コードに直接書く場合 // button.setScaleType(ImageView.ScaleType.MATRIX); Matrix mtx = new Matrix(); mtx.setRotate(180.0F, button.getWidth()/2, button.get