イメージビューを膨らませるビューページャーがあります。私は android:scaleType="fitXY" を使用しましたが、画像の周りにまだ黒が残っているのはなぜですか?背景のように引き伸ばすにはどうすればよいですか? ありがとう。
ビューページャーのレイアウト:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Introduction_Activity"
>
<android.support.v4.view.ViewPager
android:id="@+id/imgs_viewpager"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</RelativeLayout>
画像ビューのレイアウト:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<ImageView
android:id="@+id/img_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="@string/desc_intro"
android:scaleType="fitXY"
android:adjustViewBounds="true"
/>
</LinearLayout>