それで。Google+アプリで投稿をクリックすると、ビュー全体が青色になります。私もそれをやりたいのですが、ImageViewを使っています。
次のコードスニペットがあり、実際の画像を背景として設定し、セレクターをメインリソースとして設定しています。これは見た目は良いですが、背景画像のscaleTypeを尊重していません。
<ImageView
android:id="@+id/painting_image"
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="@drawable/img"
android:src="@drawable/selector"
android:scaleType="centerCrop" />
ちなみに、@drawable/selector
は、次の透明な色を表示する単なるセレクターですstate_pressed
。
<item android:state_pressed="true">
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#44521400" />
</shape></item>
scaleTypeを尊重しながら、これを機能させるにはどうすればよいですか?