2017-03-25 2 views
0

왼쪽에서 오른쪽으로 스크롤 할 수있는 이미지가 포함 된 가로보기가 있습니다. 이미지는 스크롤되지만 이미지 주위에 패딩이 포함되어 있으며 전체 화면을 채우고 싶습니다. 어떻게이 일을 성취 할 수 있습니까?Android Studio : HorizontalView

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto"  xmlns:tools="http://schemas.android.com/tools" 
android:id="@+id/activity_rear_gunner" 
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" 
android:focusable="true" 
tools:context="com.example.mr_br.ibcc_bomber_command.rear_gunner"> 

<HorizontalScrollView 
    android:id="@+id/horizontalScrollView1" 

    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:fillViewport="true" 
    android:layout_alignParentTop="true" 
> 


<ImageView 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"  app:srcCompat="@drawable/background_scroll_2" 
    android:id="@+id/imageView2" android:layout_centerVertical="true" 

/> 

</HorizontalScrollView> 
</RelativeLayout> 

이의 원인은 무엇입니까 :

enter image description here

이미지는 모든 주위 내 XML 코드를 회색 공간이?

답변

1

ImageView에서 android : scaleType = "centerCrop"을 설정하여 이미지가 화면 전체에 맞도록 설정할 수 있습니다.

+0

감사합니다. 정확하게 달성하기를 바랬습니다. –

+0

즐거움은 모두 내 것입니다. –